X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/e21d93b7bd5d34f31bc09a576b7d449df5b68c07..e3bb595d77c6bbd4b73f665f4afba79a1fcd2dbd:/config.mk?ds=sidebyside

diff --git a/config.mk b/config.mk
index 92e244e..2159481 100644
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
 # dwm version
-VERSION = 0.7
+VERSION = 0.9
 
 # Customize below to fit your system
 
@@ -15,10 +15,11 @@ INCS = -I/usr/lib -I${X11INC}
 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
 
 # flags
-#CFLAGS = -O3 ${INCS} -DVERSION=\"${VERSION}\"
-#LDFLAGS = ${LIBS}
-CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
-LDFLAGS = -g ${LIBS}
+CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
+LDFLAGS = ${LIBS}
+#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
+#LDFLAGS = -g ${LIBS}
 
-# compiler
+# compiler and linker
 CC = cc
+LD = ${CC}