speedwm-personal/options.mk

20 lines
654 B
Makefile
Raw Normal View History

2022-10-05 13:00:54 +02:00
# speedwm options
# The default configuration is only compiled for your host.
# Change CFLAGS to override this.
###################################################################################
# speedwm version
2022-10-16 13:51:57 +02:00
VERSION = 0.9
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
# includes and libs
INCS = -I${X11INC} -I${FREETYPEINC} -I${YAJLINC}
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lXrender ${IMLIB2LIBS} -lX11-xcb -lxcb -lxcb-res -lXext ${YAJLLIBS}
# flags
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
2022-10-05 13:00:54 +02:00
# NOTE: host.mk and toggle.mk will both override this.