diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 1 insertions, 25 deletions
@@ -34,29 +34,6 @@ ASFLAGS += -pgas CC = cc -LD := ld -LDFLAGS := -melf_x86_64 -LDFLAGS += --eh-frame-hdr -LDFLAGS += -dynamic-linker -LDFLAGS += /libexec/ld-elf.so.1 -LDFLAGS += --hash-style=both -LDFLAGS += --enable-new-dtags -LDPOST := /usr/lib/crt1.o -LDPOST += /usr/lib/crti.o -LDPOST += /usr/lib/crtbegin.o -LDPOST += -L/usr/lib -LDPOST += -lgcc -LDPOST += --as-needed -LDPOST += -lgcc_s -LDPOST += --no-as-needed -LDPOST += -lc -LDPOST += -lgcc -LDPOST += --as-needed -LDPOST += -lgcc_s -LDPOST += --no-as-needed -LDPOST += /usr/lib/crtend.o -LDPOST += /usr/lib/crtn.o - NAME := bsdsetsid RM := rm -f @@ -67,8 +44,7 @@ RM := rm -f ${AS} ${ASFLAGS} -o ${.TARGET} ${.IMPSRC} ${NAME}: ${OBJS} - ${LD} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC} ${LDPOST} - # ${CC} -v -o ${.TARGET} ${.ALLSRC} + ${CC} -o ${.TARGET} ${.ALLSRC} all: ${NAME} |