summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-07-29 19:17:24 +0100
committerAnselm R Garbe <garbeam@gmail.com>2008-07-29 19:17:24 +0100
commita6a3471dd9c693837b3038be0a2ccc839c94570b (patch)
tree936e3b7231affb0139405429e7a0172a9bd1f658 /Makefile
parent75dd7792456d9eb4a4c3142b81fbda5ca39a3a51 (diff)
downloadslock-a6a3471dd9c693837b3038be0a2ccc839c94570b.tar.gz
fix0.9
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 05e88b4..2036f04 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,9 +21,8 @@ options:
${OBJ}: config.mk
slock: ${OBJ}
- @echo LD $@
- @${LD} -o $@ ${OBJ} ${LDFLAGS}
- @strip $@
+ @echo CC -o $@
+ @${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
@echo cleaning