removed LD as well, this is misleading

This commit is contained in:
Anselm R. Garbe 2007-02-14 10:05:41 +01:00
parent f9f6f8a19c
commit ef99e720ff
2 changed files with 3 additions and 5 deletions

View File

@ -13,7 +13,6 @@ options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
@echo "LD = ${LD}"
.c.o:
@echo CC $<
@ -22,8 +21,8 @@ options:
${OBJ}: config.mk
sic: ${OBJ}
@echo LD $@
@${LD} -o $@ ${OBJ} ${LDFLAGS}
@echo CC -o $@
@${CC} -o $@ ${OBJ} ${LDFLAGS}
@strip $@
clean:

View File

@ -1,5 +1,5 @@
# sic version
VERSION = 0.9
VERSION = 1.0
# Customize below to fit your system
@ -19,4 +19,3 @@ LDFLAGS = ${LIBS}
# compiler and linker
CC = cc
LD = ${CC}