From a7aee433ccfd2590e0785a7b93a89d8d0593a234 Mon Sep 17 00:00:00 2001 From: Connor Lane Smith Date: Mon, 2 Aug 2010 14:22:54 +0100 Subject: fixed bugs, no more config.h, updated manpage, new libdraw --- config.mk | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'config.mk') 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 -- cgit v1.2.3