diff options
author | Connor Lane Smith <cls@lubutu.com> | 2010-08-02 14:22:54 +0100 |
---|---|---|
committer | Connor Lane Smith <cls@lubutu.com> | 2010-08-02 14:22:54 +0100 |
commit | a7aee433ccfd2590e0785a7b93a89d8d0593a234 (patch) | |
tree | 5a6fcb7a210c164c22194674a7b01c7e8cfe2458 /config.mk | |
parent | a3606ecb0eeaffa752fdf26565ebaaba29b83239 (diff) |
fixed bugs, no more config.h, updated manpage, new libdraw
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 17 |
1 files changed, 7 insertions, 10 deletions
@@ -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 |