X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/da0b2a2f31d5a849464215a86a968ec3a1af2f73..c789941bba6039026447f0472d15f49062d65308:/config.mk

diff --git a/config.mk b/config.mk
index d4b16f7..de2fb00 100644
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
 # dwm version
-VERSION = 1.5
+VERSION = 4.2
 
 # Customize below to fit your system
 
@@ -16,10 +16,14 @@ 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}
 
+# Solaris
+#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
+#LDFLAGS = ${LIBS}
+#CFLAGS += -xtarget=ultra
+
 # compiler and linker
 CC = cc
-LD = ${CC}