fixed bugs, no more config.h, updated manpage, new libdraw

This commit is contained in:
Connor Lane Smith
2010-08-02 14:22:54 +01:00
parent a3606ecb0e
commit a7aee433cc
7 changed files with 162 additions and 220 deletions

View File

@ -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