about summary refs log tree commit diff
path: root/config.mk
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2010-08-02 14:22:54 +0100
committerConnor Lane Smith <cls@lubutu.com>2010-08-02 14:22:54 +0100
commita7aee433ccfd2590e0785a7b93a89d8d0593a234 (patch)
tree5a6fcb7a210c164c22194674a7b01c7e8cfe2458 /config.mk
parentupdated manpage, added paste, cleaned up, new libdraw (diff)
downloaddmenu-a7aee433ccfd2590e0785a7b93a89d8d0593a234.tar.gz
dmenu-a7aee433ccfd2590e0785a7b93a89d8d0593a234.tar.bz2
dmenu-a7aee433ccfd2590e0785a7b93a89d8d0593a234.zip
fixed bugs, no more config.h, updated manpage, new libdraw
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk17
1 files changed, 7 insertions, 10 deletions
diff --git a/config.mk b/config.mk
index c8bbdcd..d9f5a27 100644
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
 # dmenu version
-VERSION = 4.1.1
+VERSION = 4.2
 
 # Customize below to fit your system
 
@@ -7,25 +7,22 @@ VERSION = 4.1.1
 PREFIX = /usr/local
 MANPREFIX = ${PREFIX}/share/man
 
+# Xlib
 X11INC = /usr/X11R6/include
 X11LIB = /usr/X11R6/lib
 
 # Xinerama, comment if you don't want it
-XINERAMALIBS = -L${X11LIB} -lXinerama
+XINERAMALIBS  = -lXinerama
 XINERAMAFLAGS = -DXINERAMA
 
 # includes and libs
-INCS = -I. -I/usr/include -I${X11INC}
-LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -ldraw ${XINERAMALIBS}
+INCS = -I${X11INC}
+LIBS = -L${X11LIB} -ldraw -lX11 ${XINERAMALIBS}
 
 # flags
 CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
-CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
-LDFLAGS = -s ${LIBS}
-
-# Solaris
-#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
-#LDFLAGS = ${LIBS}
+CFLAGS   = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
+LDFLAGS  = -s ${LIBS}
 
 # compiler and linker
 CC = cc