dmenu/config.mk

32 lines
706 B
Makefile
Raw Normal View History

2006-08-04 10:23:36 +02:00
# dmenu version
VERSION = 4.6
2006-08-04 09:35:27 +02:00
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
# Xinerama, comment if you don't want it
XINERAMALIBS = -lXinerama
XINERAMAFLAGS = -DXINERAMA
# freetype
FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
2006-08-04 09:35:27 +02:00
# includes and libs
INCS = -I${X11INC} -I${FREETYPEINC}
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
2006-08-04 09:35:27 +02:00
# flags
2012-04-06 17:38:01 +02:00
CPPFLAGS = -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
2012-01-19 00:56:13 +01:00
CFLAGS = -ansi -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -s ${LIBS}
2006-08-14 08:44:54 +02:00
# compiler and linker
2006-08-04 09:35:27 +02:00
CC = cc