JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
applied Marc Andre Tanners showhide patch, the removal of ntiled
[dwm.git] / config.mk
1 # dwm version
2 VERSION = 5.5
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, un-comment if you want it
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 = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
24 LDFLAGS = -s ${LIBS}
25
26 # Solaris
27 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
28 #LDFLAGS = ${LIBS}
29
30 # compiler and linker
31 CC = cc