X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/2cce4b95cdce5617318fc4fb5d21abe41110c27a..73e2aba341624fbfb4791d464bf0d0a16c50578c:/config.mk

diff --git a/config.mk b/config.mk
index 2e8594a..4b2ff6c 100644
--- a/config.mk
+++ b/config.mk
@@ -1,8 +1,11 @@
 # dwm version
-VERSION = 2.1
+VERSION = 4.5
 
 # Customize below to fit your system
 
+# additional layouts beside floating
+SRC = tile.c
+
 # paths
 PREFIX = /usr/local
 MANPREFIX = ${PREFIX}/share/man
@@ -16,10 +19,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}