]> git.armaanb.net Git - dmenu.git/blob - config.mk
config.mk: improve feature test check
[dmenu.git] / config.mk
1 # dmenu version
2 VERSION = 4.6
3
4 # paths
5 PREFIX = /usr/local
6 MANPREFIX = ${PREFIX}/share/man
7
8 X11INC = /usr/X11R6/include
9 X11LIB = /usr/X11R6/lib
10
11 # Xinerama, comment if you don't want it
12 XINERAMALIBS  = -lXinerama
13 XINERAMAFLAGS = -DXINERAMA
14
15 # freetype
16 FREETYPELIBS = -lfontconfig -lXft
17 FREETYPEINC = /usr/include/freetype2
18 # OpenBSD (uncomment)
19 #FREETYPEINC = ${X11INC}/freetype2
20
21 # includes and libs
22 INCS = -I${X11INC} -I${FREETYPEINC}
23 LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
24
25 # flags
26 CPPFLAGS = -D_BSD_SOURCE -D_XOPEN_SOURCE=500 -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
27 CFLAGS   = -ansi -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
28 LDFLAGS  = -s ${LIBS}
29
30 # compiler and linker
31 CC = cc