about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-14 08:43:19 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-14 08:43:19 +0200
commit95766d6241a401b3665ac1ad528b90c55e7b6810 (patch)
tree09789c6cf44cbb37dba40bbe4ba3c771d9b904ef /Makefile
parent4cb78a170c6daa488a90dffb60224fcf2b76fbf0 (diff)
downloaddwm-95766d6241a401b3665ac1ad528b90c55e7b6810.tar.gz
applied Sanders LD and resize patches
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9ef219a..a0bfc0c 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:
 
 dwm: ${OBJ}
 	@echo LD $@
-	@${CC} -o $@ ${OBJ} ${LDFLAGS}
+	@${LD} -o $@ ${OBJ} ${LDFLAGS}
 	@strip $@
 
 clean: