config.mk - dwm - dynamic window manager | |
git clone git://git.suckless.org/dwm | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
config.mk (954B) | |
--- | |
1 # dwm version | |
2 VERSION = 6.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, comment if you don't want it | |
14 XINERAMALIBS = -lXinerama | |
15 XINERAMAFLAGS = -DXINERAMA | |
16 | |
17 # freetype | |
18 FREETYPELIBS = -lfontconfig -lXft | |
19 FREETYPEINC = /usr/include/freetype2 | |
20 # OpenBSD (uncomment) | |
21 #FREETYPEINC = ${X11INC}/freetype2 | |
22 #MANPREFIX = ${PREFIX}/man | |
23 | |
24 # includes and libs | |
25 INCS = -I${X11INC} -I${FREETYPEINC} | |
26 LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} | |
27 | |
28 # flags | |
29 CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSIO… | |
30 #CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} | |
31 CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${I… | |
32 LDFLAGS = ${LIBS} | |
33 | |
34 # Solaris | |
35 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" | |
36 #LDFLAGS = ${LIBS} | |
37 | |
38 # compiler and linker | |
39 CC = cc |