Mercurial > dwm-meillo
annotate config.mk @ 146:f328ce9c558c
centralized/externalized configuration to config.h
author | arg@10ksloc.org |
---|---|
date | Tue, 01 Aug 2006 13:59:13 +0200 |
parents | 36cabfe408cd |
children | 5267e1204367 |
rev | line source |
---|---|
0 | 1 # Customize to fit your system |
2 | |
3 # paths | |
4 PREFIX = /usr/local | |
5 MANPREFIX = ${PREFIX}/share/man | |
6 | |
7 X11INC = /usr/X11R6/include | |
8 X11LIB = /usr/X11R6/lib | |
9 | |
10 # includes and libs | |
143 | 11 INCS = -I/usr/lib -I${X11INC} |
12 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 | |
0 | 13 |
143 | 14 # flags |
146
f328ce9c558c
centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
143
diff
changeset
|
15 CFLAGS = -O3 ${INCS} -DVERSION=\"${VERSION}\" -DCONFIG=\"${CONFIG}\" |
131
65efe27cbf3d
preparing 0.6 which will be available in the evening after sanders patch approx.
arg@10ksloc.org
parents:
127
diff
changeset
|
16 LDFLAGS = ${LIBS} |
146
f328ce9c558c
centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
143
diff
changeset
|
17 #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" -DCONFIG=\"${CONFIGH}\" |
131
65efe27cbf3d
preparing 0.6 which will be available in the evening after sanders patch approx.
arg@10ksloc.org
parents:
127
diff
changeset
|
18 #LDFLAGS = -g ${LIBS} |
33
e90449e03167
new stuff (some warning elimination)
Anselm R. Garbe <garbeam@wmii.de>
parents:
30
diff
changeset
|
19 |
143 | 20 # compiler |
21 CC = cc | |
0 | 22 |
143 | 23 # dwm version |
24 VERSION = 0.6 | |
146
f328ce9c558c
centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
143
diff
changeset
|
25 |
f328ce9c558c
centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
143
diff
changeset
|
26 # default config.h |
f328ce9c558c
centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
143
diff
changeset
|
27 CONFIG = config.h |