Explorar el Código

removed strip, added -s to LDFLAGS

Anselm R. Garbe hace 18 años
padre
commit
b896b58d6d
Se han modificado 2 ficheros con 1 adiciones y 2 borrados
  1. 0 1
      Makefile
  2. 1 1
      config.mk

+ 0 - 1
Makefile

@@ -27,7 +27,6 @@ config.h:
 dwm: ${OBJ}
 	@echo CC -o $@
 	@${CC} -o $@ ${OBJ} ${LDFLAGS}
-	@strip $@
 
 clean:
 	@echo cleaning

+ 1 - 1
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}