JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
removed the CONFIG variable from config.mk, renamed config.h into config.default...
[dwm.git] / config.mk
1 # dwm version
2 VERSION = 0.6
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 # includes and libs
14 INCS = -I/usr/lib -I${X11INC}
15 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
16
17 # flags
18 CFLAGS = -O3 ${INCS} -DVERSION=\"${VERSION}\"
19 LDFLAGS = ${LIBS}
20 #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
21 #LDFLAGS = -g ${LIBS}
22
23 # compiler
24 CC = cc