summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-14 10:05:41 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-14 10:05:41 +0100
commitef99e720ffec7570261170b4858253249b91f6f9 (patch)
tree4a92c829c22659868b930cdf35d75abac805c0a3 /Makefile
parentf9f6f8a19c035803b04d857807895b91d44c9e84 (diff)
downloadcic-ef99e720ffec7570261170b4858253249b91f6f9.tar.gz
removed LD as well, this is misleading
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
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: