dmenu/config.mk

28 lines
548 B
Makefile
Raw Normal View History

2006-08-04 10:23:36 +02:00
# dmenu version
VERSION = 4.2
2006-08-04 09:35:27 +02:00
# Customize below to fit your system
# 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
2006-08-04 09:35:27 +02:00
# includes and libs
INCS = -I${X11INC}
2010-11-12 00:56:39 +01:00
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS}
2006-08-04 09:35:27 +02:00
# flags
CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
CFLAGS = -std=c99 -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