dwm/config.mk

39 lines
932 B
Makefile
Raw Permalink Normal View History

2006-08-02 09:13:32 +00:00
# dwm version
2019-02-02 12:50:42 +00:00
VERSION = 6.2
2006-08-02 09:13:32 +00:00
# Customize below to fit your system
2006-07-10 14:38:18 +00:00
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
2012-01-04 12:30:12 +00:00
# Xinerama, comment if you don't want it
XINERAMALIBS = -lXinerama
2009-07-01 18:15:20 +00:00
XINERAMAFLAGS = -DXINERAMA
# freetype
FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
2006-07-10 14:38:18 +00:00
# includes and libs
INCS = -I${X11INC} -I${FREETYPEINC}
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
2006-07-10 14:38:18 +00:00
2006-08-01 10:32:33 +00:00
# flags
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
2012-01-04 12:30:12 +00:00
#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS}
LDFLAGS = ${LIBS}
2006-07-12 23:55:54 +00:00
2006-12-18 13:39:34 +00:00
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
2006-08-14 06:43:19 +00:00
# compiler and linker
2006-07-10 14:38:18 +00:00
CC = cc