JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fixing some minor issues, next week is dwm-5.9 release time
[dwm.git] / config.mk
1 # dwm version
2 VERSION = 5.9
3
4 # Customize below to fit your system
5
6 # paths
7 PREFIX = /usr/local
8 MANPREFIX = ${PREFIX}/share/man
9
10 X11INC = /usr/X11R6/include
11 X11LIB = /usr/X11R6/lib
12
13 # Xinerama
14 XINERAMALIBS = -L${X11LIB} -lXinerama
15 XINERAMAFLAGS = -DXINERAMA
16
17 # includes and libs
18 INCS = -I. -I/usr/include -I${X11INC}
19 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS}
20
21 # flags
22 CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
23 CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
24 #CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
25 LDFLAGS = -g ${LIBS}
26 #LDFLAGS = -s ${LIBS}
27
28 # Solaris
29 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
30 #LDFLAGS = ${LIBS}
31
32 # compiler and linker
33 CC = cc