From ef99e720ffec7570261170b4858253249b91f6f9 Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Wed, 14 Feb 2007 10:05:41 +0100 Subject: removed LD as well, this is misleading --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e6a9f63..9ccaf6a 100644 --- a/Makefile +++ b/Makefile @@ -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: -- cgit v1.2.3