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:
45' href='#n145'>145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215