4 # Customize below to fit your system
8 MANPREFIX
= ${PREFIX}/share
/man
10 X11INC
= /usr
/X11R6
/include
11 X11LIB
= /usr
/X11R6
/lib
14 INCS
= -I.
-I
/usr
/include -I
${X11INC} \
15 $(shell pkg-config
--cflags fontconfig
) \
16 $(shell pkg-config
--cflags freetype2
)
17 LIBS
= -L
/usr
/lib
-lc
-L
${X11LIB} -lX11
-lutil
-lXext
-lXft \
18 $(shell pkg-config
--libs fontconfig
) \
19 $(shell pkg-config
--libs freetype2
)
22 CPPFLAGS
= -DVERSION
=\"${VERSION}\" -D_BSD_SOURCE
-D_XOPEN_SOURCE
=600
23 CFLAGS
+= -g
-std
=c99
-pedantic
-Wall
-Wvariadic-macros
-Os
${INCS} ${CPPFLAGS}