dmenu/config.mk

32 lines
678 B
Makefile
Raw Normal View History

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