Reversed direction of keys for switch between monitors to match the physical arrangem...
[dwm] / config.mk
CommitLineData
5715edf5
AT
1# dwm version
2VERSION = 6.4
3
4# Customize below to fit your system
5
6# paths
7PREFIX = /usr/local
8MANPREFIX = ${PREFIX}/share/man
9
c72d552f
AT
10X11INC = /usr/local/include
11X11LIB = /usr/local/lib
5715edf5
AT
12
13# Xinerama, comment if you don't want it
14XINERAMALIBS = -lXinerama
15XINERAMAFLAGS = -DXINERAMA
16
17# freetype
18FREETYPELIBS = -lfontconfig -lXft
c72d552f 19#FREETYPEINC = /usr/include/freetype2
5715edf5 20# OpenBSD (uncomment)
c72d552f 21FREETYPEINC = ${X11INC}/freetype2
5715edf5
AT
22#MANPREFIX = ${PREFIX}/man
23
24# includes and libs
25INCS = -I${X11INC} -I${FREETYPEINC}
26LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
27
28# flags
29CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
30#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
31CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS}
32LDFLAGS = ${LIBS}
33
34# Solaris
35#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
36#LDFLAGS = ${LIBS}
37
38# compiler and linker
39CC = cc