You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
607 B
29 lines
607 B
# dmenu version |
|
VERSION = 4.2.1 |
|
|
|
# dmenu_path cache (absolute or relative to $HOME) |
|
CACHE = .dmenu_cache |
|
|
|
|
|
# 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 |
|
|
|
# includes and libs |
|
INCS = -I${X11INC} |
|
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} |
|
|
|
# flags |
|
CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" -DCACHE=\"${CACHE}\" ${XINERAMAFLAGS} |
|
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} |
|
LDFLAGS = -s ${LIBS} |
|
|
|
# compiler and linker |
|
CC = cc
|
|
|