diff options
author | JozanLeClerc <JozanLeClerc@noemail.net> | 2020-11-20 17:49:30 +0000 |
---|---|---|
committer | JozanLeClerc <JozanLeClerc@noemail.net> | 2020-11-20 17:49:30 +0000 |
commit | 040a73a8e3763954320f36e1ac98e73ea0bb76f1 (patch) | |
tree | 64e0f463cd0e6ae3207a4406dc2ec9498965a0d6 /Makefile | |
parent | Errors I do not understand (diff) | |
download | bsdsetsid-040a73a8e3763954320f36e1ac98e73ea0bb76f1.tar.gz bsdsetsid-040a73a8e3763954320f36e1ac98e73ea0bb76f1.tar.bz2 bsdsetsid-040a73a8e3763954320f36e1ac98e73ea0bb76f1.tar.xz bsdsetsid-040a73a8e3763954320f36e1ac98e73ea0bb76f1.tar.zst bsdsetsid-040a73a8e3763954320f36e1ac98e73ea0bb76f1.zip |
In progress
FossilOrigin-Name: 541eb5074479979fbad29b2df18964971000b067
Diffstat (limited to '')
-rw-r--r-- | Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -29,12 +29,6 @@ SRCS += ${SRCS_DIR}u_strlen.S OBJS = ${SRCS:.S=.o} -# AS = yasm -# ASFLAGS = -felf64 -# ASFLAGS += -pgas - -CC = cc - NAME := bsdsetsid RM := rm -f @@ -42,7 +36,7 @@ RM := rm -f .SUFFIXES: .S .o .S.o: - ${AS} ${ASFLAGS} -o ${.TARGET} ${.IMPSRC} + ${AS} -o ${.TARGET} ${.IMPSRC} ${NAME}: ${OBJS} ${CC} -o ${.TARGET} ${.ALLSRC} |