Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
renamed MASTER into MWFACT, master into mwfact, and incmaster into addtomwfact
[dwm.git]
/
config.mk
diff --git
a/config.mk
b/config.mk
index
04e2a82
..
6d8f1e8
100644
(file)
--- a/
config.mk
+++ b/
config.mk
@@
-1,8
+1,11
@@
# dwm version
# dwm version
-VERSION =
1.0
+VERSION =
4.4
# Customize below to fit your system
# Customize below to fit your system
+# layouts
+SRC = float.c tile.c
+
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
# 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}\"
# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
-LDFLAGS = ${LIBS}
-#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
-#LDFLAGS = -g ${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
# compiler and linker
CC = cc
-LD = ${CC}