From 74ea3ddf1053c35f205b0a2b3d15678c357c4964 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Wed, 18 Nov 2020 14:47:40 +0000 Subject: This is the beginning FossilOrigin-Name: 6db238a60f5173c98996ae2a135f762a21fdce4f --- Makefile | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2d5df69 --- /dev/null +++ b/Makefile @@ -0,0 +1,54 @@ +# ======================== +# ===== =============== +# ====== ================ +# ====== ================ +# ====== ==== ==== == +# ====== === == = = +# ====== === = == = +# = === === = == ==== +# = === === = == = = +# == ===== ==== == +# ======================== +# +# bsdsetsid: Makefile +# 2020-11-13 13:22 +# Joe +# +# BSD Makefile + +default: all + +SRCS_DIR := src/ +PREFIX := /usr/local/ +DESTDIR := + +SRCS := ${SRCS_DIR}c_bsdsetsid.S +SRCS += ${SRCS_DIR}u_write.S + +OBJS = ${SRCS:.S=.o} + +ASM ?= yasm +ASMFLAGS := -felf64 +ASMFLAGS += -pgas + +LD := ld.lld +LDFLAGS := + +NAME := bsdsetsid + +RM := rm -f + +.SUFFIXES: .S .o + +.S.o: + ${ASM} ${ASMFLAGS} -o ${.TARGET} ${.IMPSRC} + +${NAME}: ${OBJS} + ${LD} -o ${.TARGET} ${.ALLSRC} + +all: ${NAME} + +clean: + ${RM} ${OBJS} ${NAME} + +.PHONY: all clean -- cgit v1.2.3