config.mk - thinglaunch - A simple command and password promtper for X11. | |
git clone git://bitreich.org/thinglaunch | |
Log | |
Files | |
Refs | |
Tags | |
LICENSE | |
--- | |
config.mk (491B) | |
--- | |
1 # thinglaunch metadata | |
2 NAME = thinglaunch | |
3 VERSION = 2.4 | |
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}\" | |
20 CFLAGS = -g -std=gnu99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} | |
21 LDFLAGS = -g ${LIBS} | |
22 #LDFLAGS = -s ${LIBS} | |
23 | |
24 # compiler and linker | |
25 CC = cc | |
26 |