diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-05-15 13:44:04 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-05-15 13:44:04 +0200 |
commit | b896b58d6dbdfc98c0099bd7276e4989527160c6 (patch) | |
tree | dbf64312137f0b60db0dce7e985cdc882597f5d7 | |
parent | fef6c5c66bfe971f00622706689d048c6e473ca7 (diff) | |
download | dwm-b896b58d6dbdfc98c0099bd7276e4989527160c6.tar.gz |
removed strip, added -s to LDFLAGS
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | config.mk | 2 |
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} |