|
|
config.mk - thingmenu - A simple graphical menu launcher for X11. |
|
|
 |
git clone git://bitreich.org/thingmenu (git://bitreich.org) |
|
|
 |
Log |
|
|
 |
Files |
|
|
 |
Refs |
|
|
 |
Tags |
|
|
 |
LICENSE |
|
|
|
--- |
|
|
|
config.mk (520B) |
|
|
|
--- |
|
|
|
1 # thingmenu metadata |
|
|
|
2 NAME = thingmenu |
|
|
|
3 VERSION = 0.8 |
|
|
|
4 |
|
|
|
5 # Customize below to fit your system |
|
|
|
6 |
|
|
|
7 # paths |
|
|
|
8 PREFIX = /usr/local |
|
|
|
9 MANPREFIX = ${PREFIX}/share/man |
|
|
|
10 |
|
|
|
11 X11INC = /usr/X11R6/include |
|
|
|
12 X11LIB = /usr/X11R6/lib |
|
|
|
13 |
|
|
|
14 # includes and libs |
|
|
|
15 INCS = -I. -I/usr/include -I${X11INC} |
|
|
|
16 LIBS = -L/usr/lib -L${X11LIB} -lc -lX11 |
|
|
|
17 |
|
|
|
18 # flags |
|
|
|
19 CPPFLAGS = -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809L -D_GNU_SOURCE |
|
|
|
20 CFLAGS = -g -std=c99 -pedantic -Wall ${INCS} ${CPPFLAGS} |
|
|
|
21 LDFLAGS = -g ${LIBS} |
|
|
|
22 #LDFLAGS = -s ${LIBS} |
|
|
|
23 |
|
|
|
24 # compiler and linker |
|
|
|
25 CC = cc |
|
|
|
26 |
|