aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-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}