dwm/config.mk

40 lines
984 B
Makefile
Raw Permalink Normal View History

2006-08-02 11:13:32 +02:00
# dwm version
2019-02-02 13:50:42 +01:00
VERSION = 6.2
2006-08-02 11:13:32 +02:00
# Customize below to fit your system
2006-07-10 16:38:18 +02:00
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
2012-01-04 13:30:12 +01:00
# Xinerama, comment if you don't want it
XINERAMALIBS = -lXinerama
2009-07-01 20:15:20 +02:00
XINERAMAFLAGS = -DXINERAMA
# freetype
FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
2021-02-27 10:17:50 +01:00
#KVMLIB = -lkvm
2006-07-10 16:38:18 +02:00
# includes and libs
INCS = -I${X11INC} -I${FREETYPEINC}
2021-02-27 10:17:50 +01:00
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lX11-xcb -lxcb -lxcb-res ${KVMLIB}
2006-07-10 16:38:18 +02:00
2006-08-01 12:32:33 +02:00
# flags
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
2012-01-04 13:30:12 +01: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-13 01:55:54 +02:00
2006-12-18 14:39:34 +01:00
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
2006-08-14 08:43:19 +02:00
# compiler and linker
2006-07-10 16:38:18 +02:00
CC = cc