dwm/config.mk

38 lines
978 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
2006-07-10 16:38:18 +02:00
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
2006-07-10 16:38:18 +02:00
# includes and libs
INCS = -I${X11INC} -I${FREETYPEINC}
2021-06-16 22:27:04 +02:00
LIBS = -L${X11LIB} -lX11 -lXext ${XINERAMALIBS} ${FREETYPELIBS}
2006-07-10 16:38:18 +02:00
2006-08-01 12:32:33 +02:00
# flags
2021-01-16 11:49:59 +01:00
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -D_FORTIFY_SOURCE=2
CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Ofast -march=native -mtune=native -fstack-protector -fno-plt ${INCS} ${CPPFLAGS}
LDFLAGS = ${LIBS} -Wl,-O3,-z,now,-z,relro -s
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
CC = clang