dmenu/config.mk

32 lines
678 B
Makefile
Raw Normal View History

2006-08-04 10:23:36 +02:00
# dmenu version
2010-05-29 13:56:33 +02:00
VERSION = 4.1.1
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 = -L${X11LIB} -lXinerama
XINERAMAFLAGS = -DXINERAMA
2006-08-04 09:35:27 +02:00
# includes and libs
2010-06-30 02:36:15 +02:00
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -ldraw ${XINERAMALIBS}
2006-08-04 09:35:27 +02:00
# flags
CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
2008-06-13 12:46:50 +02:00
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
2007-05-15 13:44:41 +02:00
LDFLAGS = -s ${LIBS}
2006-08-04 09:35:27 +02:00
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
2006-08-14 08:44:54 +02:00
# compiler and linker
2006-08-04 09:35:27 +02:00
CC = cc