about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-14 08:42:23 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-14 08:42:23 +0200
commitb7f891145503257759c44f5737eabe3010eae2af (patch)
tree66002522ef31bf6ce17549c1c7ee03573012bb2a /Makefile
parentapplied my new color scheme (diff)
downloaddmenu-b7f891145503257759c44f5737eabe3010eae2af.tar.gz
dmenu-b7f891145503257759c44f5737eabe3010eae2af.tar.bz2
dmenu-b7f891145503257759c44f5737eabe3010eae2af.zip
applied Sanders LD patch
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d170037..8c3d904 100644
--- a/Makefile
+++ b/Makefile
@@ -14,6 +14,7 @@ options:
 	@echo "CFLAGS   = ${CFLAGS}"
 	@echo "LDFLAGS  = ${LDFLAGS}"
 	@echo "CC       = ${CC}"
+	@echo "LD       = ${LD}"
 
 .c.o:
 	@echo CC $<
@@ -27,7 +28,7 @@ config.h:
 
 dmenu: ${OBJ}
 	@echo LD $@
-	@${CC} -o $@ ${OBJ} ${LDFLAGS}
+	@${LD} -o $@ ${OBJ} ${LDFLAGS}
 	@strip $@
 
 clean: