aboutsummaryrefslogtreecommitdiffstats
path: root/config.mk
diff options
context:
space:
mode:
authorEduardo Pedroni <e.pedroni91@gmail.com>2015-03-27 11:44:26 -0300
committerEduardo Pedroni <e.pedroni91@gmail.com>2015-03-27 11:44:26 -0300
commit9a307e8b3a47544dbc4e8e17bf492838288ec0ab (patch)
treeb02298e527e320d9cbd6d4c9a7843193d511ace9 /config.mk
Initial commit
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk33
1 files changed, 33 insertions, 0 deletions
diff --git a/config.mk b/config.mk
new file mode 100644
index 0000000..484554a
--- /dev/null
+++ b/config.mk
@@ -0,0 +1,33 @@
+# dwm version
+VERSION = 6.0
+
+# Customize below to fit your system
+
+# paths
+PREFIX = /usr/local
+MANPREFIX = ${PREFIX}/share/man
+
+X11INC = /usr/X11R6/include
+X11LIB = /usr/X11R6/lib
+
+# Xinerama
+XINERAMALIBS = -L${X11LIB} -lXinerama
+XINERAMAFLAGS = -DXINERAMA
+
+# includes and libs
+INCS = -I. -I/usr/include -I${X11INC}
+LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS}
+
+# flags
+CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
+#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
+CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
+#LDFLAGS = -g ${LIBS}
+LDFLAGS = -s ${LIBS}
+
+# Solaris
+#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
+#LDFLAGS = ${LIBS}
+
+# compiler and linker
+CC = cc