about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-05-15 13:44:04 +0200
committerAnselm R. Garbe <arg@suckless.org>2007-05-15 13:44:04 +0200
commitb896b58d6dbdfc98c0099bd7276e4989527160c6 (patch)
treedbf64312137f0b60db0dce7e985cdc882597f5d7
parentfef6c5c66bfe971f00622706689d048c6e473ca7 (diff)
downloaddwm-b896b58d6dbdfc98c0099bd7276e4989527160c6.tar.gz
removed strip, added -s to LDFLAGS
-rw-r--r--Makefile1
-rw-r--r--config.mk2
2 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 50732a1..6219d56 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,6 @@ config.h:
 dwm: ${OBJ}
 	@echo CC -o $@
 	@${CC} -o $@ ${OBJ} ${LDFLAGS}
-	@strip $@
 
 clean:
 	@echo cleaning
diff --git a/config.mk b/config.mk
index 1431e22..aa90094 100644
--- a/config.mk
+++ b/config.mk
@@ -16,7 +16,7 @@ LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
 
 # flags
 CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
-LDFLAGS = ${LIBS}
+LDFLAGS = -s ${LIBS}
 #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
 #LDFLAGS = -g ${LIBS}
 
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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259