config.mk - lsw - lists window titles of X clients to stdout | |
git clone git://git.suckless.org/lsw | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
config.mk (362B) | |
--- | |
1 # lsw version | |
2 VERSION = 0.3 | |
3 | |
4 # paths | |
5 PREFIX = /usr/local | |
6 MANPREFIX = ${PREFIX}/share/man | |
7 | |
8 X11INC = /usr/X11R6/include | |
9 X11LIB = /usr/X11R6/lib | |
10 | |
11 # includes and libs | |
12 INCS = -I${X11INC} | |
13 LIBS = -L${X11LIB} -lX11 | |
14 | |
15 # flags | |
16 CPPFLAGS = -DVERSION=\"${VERSION}\" | |
17 CFLAGS = -ansi -pedantic -Wall -Os ${INCS} ${CPPFLAGS} | |
18 LDFLAGS = -s ${LIBS} | |
19 | |
20 # compiler and linker | |
21 CC = cc |