annotate config.mk @ 192:30b321919a93

fixed dmenu link (thx to deifl)
author arg@10ksloc.org
date Fri, 04 Aug 2006 15:47:50 +0200
parents 56fee1dc9d53
children 7c0527dd63cd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
160
c8db0a825775 applied Sanders patches (numlock2)
arg@10ksloc.org
parents: 148
diff changeset
1 # dwm version
170
697715541a25 fixed a type in README, and patched config.mk
arg@10ksloc.org
parents: 166
diff changeset
2 VERSION = 0.7
160
c8db0a825775 applied Sanders patches (numlock2)
arg@10ksloc.org
parents: 148
diff changeset
3
c8db0a825775 applied Sanders patches (numlock2)
arg@10ksloc.org
parents: 148
diff changeset
4 # Customize below to fit your system
c8db0a825775 applied Sanders patches (numlock2)
arg@10ksloc.org
parents: 148
diff changeset
5
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
6 # paths
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
7 PREFIX = /usr/local
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
8 MANPREFIX = ${PREFIX}/share/man
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
9
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
10 X11INC = /usr/X11R6/include
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
11 X11LIB = /usr/X11R6/lib
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
12
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
13 # includes and libs
143
36cabfe408cd applied Sanders patches
arg@10ksloc.org
parents: 134
diff changeset
14 INCS = -I/usr/lib -I${X11INC}
36cabfe408cd applied Sanders patches
arg@10ksloc.org
parents: 134
diff changeset
15 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
16
148
5267e1204367 uppercasing all define'd values (uppercase-prefixed should only be enum field qualifiers)
arg@10ksloc.org
parents: 146
diff changeset
17 # flags
191
56fee1dc9d53 switched to regexp matching for Rules
arg@10ksloc.org
parents: 170
diff changeset
18 #CFLAGS = -O3 ${INCS} -DVERSION=\"${VERSION}\"
56fee1dc9d53 switched to regexp matching for Rules
arg@10ksloc.org
parents: 170
diff changeset
19 #LDFLAGS = ${LIBS}
56fee1dc9d53 switched to regexp matching for Rules
arg@10ksloc.org
parents: 170
diff changeset
20 CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
56fee1dc9d53 switched to regexp matching for Rules
arg@10ksloc.org
parents: 170
diff changeset
21 LDFLAGS = -g ${LIBS}
148
5267e1204367 uppercasing all define'd values (uppercase-prefixed should only be enum field qualifiers)
arg@10ksloc.org
parents: 146
diff changeset
22
5267e1204367 uppercasing all define'd values (uppercase-prefixed should only be enum field qualifiers)
arg@10ksloc.org
parents: 146
diff changeset
23 # compiler
5267e1204367 uppercasing all define'd values (uppercase-prefixed should only be enum field qualifiers)
arg@10ksloc.org
parents: 146
diff changeset
24 CC = cc