Embed dmenu in tabbed own window
[tabbed/julien_tabbed.git] / config.mk
blob3a71529e863c0187f981c177449b0a18da7781d5
1 # tabbed version
2 VERSION = 0.6
4 # Customize below to fit your system
6 # paths
7 PREFIX = /usr/local
8 MANPREFIX = ${PREFIX}/share/man
10 # includes and libs
11 INCS = -I. -I/usr/include -I/usr/include/freetype2
12 LIBS = -L/usr/lib -lc -lX11 -lfontconfig -lXft
14 # flags
15 CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
16 CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
17 LDFLAGS = -s ${LIBS}
19 # Solaris
20 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
21 #LDFLAGS = ${LIBS}
23 # compiler and linker
24 CC = cc