about summary refs log tree commit diff stats
path: root/config.mk
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-05-19 15:05:46 +0100
committerAnselm R Garbe <garbeam@gmail.com>2008-05-19 15:05:46 +0100
commitf22d047d4139ef889e95aabd0103e11357193e5a (patch)
tree2dbb4fd896339ff199b06095eaf524bf3dba9b1d /config.mk
parent4a5c8d84dbf410b8b9aa4dc81954568f10ca104f (diff)
downloaddwm-f22d047d4139ef889e95aabd0103e11357193e5a.tar.gz
make it easier for the user, if Xinerama support is given, always use the screen 0 as window area/bar area, everything else can be used for floating clients
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk11
1 files changed, 8 insertions, 3 deletions
diff --git a/config.mk b/config.mk
index b18ad33..e9c956e 100644
--- a/config.mk
+++ b/config.mk
@@ -10,14 +10,19 @@ MANPREFIX = ${PREFIX}/share/man
 X11INC = /usr/X11R6/include
 X11LIB = /usr/X11R6/lib
 
+# Xinerama, uncomment if you don't want it
+XINERAMALIBS = -L${X11LIB} -lXinerama
+XINERAMAFLAGS = -DXINERAMA
+
 # includes and libs
 INCS = -I. -I/usr/include -I${X11INC}
-LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
+LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS}
 
 # flags
-CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
+CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
+CFLAGS = -Os ${INCS} ${CPPFLAGS}
 LDFLAGS = -s ${LIBS}
-#CFLAGS = -g -std=c99 -pedantic -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
+#CFLAGS = -g -std=c99 -pedantic -Wall -O2 ${INCS} ${CPPFLAGS}
 #LDFLAGS = -g ${LIBS}
 
 # Solaris
a> 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185