aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-05-15 13:44:41 +0200
committerAnselm R. Garbe <arg@suckless.org>2007-05-15 13:44:41 +0200
commit5a3dfb1c40a58647cd55147cc93fec9811a0a6a1 (patch)
treea73ec432af255db2079559ad4cd06c6eb4f7b870
parent4042a11e5174633e9beeeec120937856e1d0f74f (diff)
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 6b273cb..35e30f5 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,6 @@ ${OBJ}: dmenu.h config.mk
23dmenu: ${OBJ} 23dmenu: ${OBJ}
24 @echo CC -o $@ 24 @echo CC -o $@
25 @${CC} -o $@ ${OBJ} ${LDFLAGS} 25 @${CC} -o $@ ${OBJ} ${LDFLAGS}
26 @strip $@
27 26
28clean: 27clean:
29 @echo cleaning 28 @echo cleaning
diff --git a/config.mk b/config.mk
index ce5daab..18565ea 100644
--- a/config.mk
+++ b/config.mk
@@ -16,7 +16,7 @@ LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
16 16
17# flags 17# flags
18CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" 18CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
19LDFLAGS = ${LIBS} 19LDFLAGS = -s ${LIBS}
20#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" 20#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
21#LDFLAGS = -g ${LIBS} 21#LDFLAGS = -g ${LIBS}
22 22