Introduction
Introduction Statistics Contact Development Disclaimer Help
fix - slock - simple X display locker utility
git clone git://git.suckless.org/slock
Log
Files
Refs
README
LICENSE
---
commit a6a3471dd9c693837b3038be0a2ccc839c94570b
parent 75dd7792456d9eb4a4c3142b81fbda5ca39a3a51
Author: Anselm R Garbe <[email protected]>
Date: Tue, 29 Jul 2008 19:17:24 +0100
fix
Diffstat:
M Makefile | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
---
diff --git 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
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.