config.mk
changeset 0 a22a319f5129
child 1 3e9290bf7249
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/config.mk	Sat Mar 16 00:03:51 2013 +0400
@@ -0,0 +1,19 @@
+# dwm version
+VERSION = 0.01
+
+# Customize below to fit your system
+
+# includes and libs
+#INCS = -I. -I/usr/include -I${X11INC} `pkg-config --cflags xft pango pangoxft`
+#LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS} `pkg-config --libs xft pango pangoxft`
+LIBS = -L/usr/lib -lc -lrt -lm
+
+# flags
+CPPFLAGS = -DVERSION=\"${VERSION}\"
+CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
+#CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
+LDFLAGS = -g ${LIBS}
+#LDFLAGS = -s ${LIBS}
+
+# compiler and linker
+CC = cc