aboutsummaryrefslogtreecommitdiffstats
path: root/config.mk
diff options
context:
space:
mode:
authorgotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2007-06-02 15:59:57 +0000
committergotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2007-06-02 15:59:57 +0000
commit38bd2eb933f9398597f2fc4877746baa97982593 (patch)
tree85dd79a63861372ecb33e817e8c3781ec00540ae /config.mk
parent9e36a65761c5f238b440cbe627f086d88bd8365f (diff)
downloaddzen-38bd2eb933f9398597f2fc4877746baa97982593.tar.gz
dzen-38bd2eb933f9398597f2fc4877746baa97982593.zip
made config.mk nicer, thanks David Glasser
git-svn-id: http://dzen.googlecode.com/svn/trunk@48 f2baff5b-bf2c-0410-a398-912abdc3d8b2
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk17
1 files changed, 10 insertions, 7 deletions
diff --git a/config.mk b/config.mk
index 2092869..436ce4c 100644
--- a/config.mk
+++ b/config.mk
@@ -11,15 +11,18 @@ X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
INCS = -I. -I/usr/include -I${X11INC}
-# No Xinerama:
+# Uncomment this line to use Xinerama.
+# USE_XINERAMA=y
+
+# (ifdef/else/endif might not be portable; if it doesn't work for you,
+# contact the author and we'll work on a better solution.)
+ifdef USE_XINERAMA
+LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lXinerama
+CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" -DDZEN_XINERAMA
+else
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
-# With Xinerama:
-#LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lXinerama
-
-# No Xinerama:
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
-# With Xinerama:
-#CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" -DDZEN_XINERAMA
+endif
LDFLAGS = ${LIBS}