dmenu/config.mk

28 lines
548 B
Makefile
Raw Normal View History

2006-08-04 08:23:36 +00:00
# dmenu version
VERSION = 4.2
2006-08-04 07:35:27 +00: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 07:35:27 +00:00
# includes and libs
INCS = -I${X11INC}
2010-11-11 23:56:39 +00:00
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS}
2006-08-04 07:35:27 +00:00
# flags
CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -s ${LIBS}
2006-08-14 06:44:54 +00:00
# compiler and linker
2006-08-04 07:35:27 +00:00
CC = cc