aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <JozanLeClerc@noemail.net>2020-11-20 17:49:30 +0000
committerJozanLeClerc <JozanLeClerc@noemail.net>2020-11-20 17:49:30 +0000
commit040a73a8e3763954320f36e1ac98e73ea0bb76f1 (patch)
tree64e0f463cd0e6ae3207a4406dc2ec9498965a0d6 /Makefile
parentErrors I do not understand (diff)
downloadbsdsetsid-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--Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index b74f92f..1c46784 100644
--- a/Makefile
+++ b/Makefile
@@ -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}