Initial Test
[dmenu_hack.git] / config.mk
blobdc676c18729a6bc6e04bba1caf5bbbb1712b4e14
1 # dmenu version
2 VERSION = 4.0
4 # Customize below to fit your system
6 # paths
7 PREFIX = /home/ask
8 MANPREFIX = ${PREFIX}/share/man
10 X11INC = /usr/X11R6/include
11 X11LIB = /usr/X11R6/lib
13 # Xinerama, comment if you don't want it
14 XINERAMALIBS = -L${X11LIB} -lXinerama
15 XINERAMAFLAGS = -DXINERAMA
17 # includes and libs
18 INCS = -I. -I/usr/include -I${X11INC}
19 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS}
21 # flags
22 CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
23 CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
24 LDFLAGS = -s ${LIBS}
26 # Solaris
27 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
28 #LDFLAGS = ${LIBS}
30 # compiler and linker
31 CC = gcc