author | arg@10ksloc.org |
Mon, 07 Aug 2006 10:32:36 +0200 | |
changeset 210 | 4f96eae34049 |
parent 199 | 955b4f217c2d |
child 255 | 340281a6dfdb |
permissions | -rw-r--r-- |
160 | 1 |
# dwm version |
210 | 2 |
VERSION = 0.8 |
160 | 3 |
|
4 |
# Customize below to fit your system |
|
5 |
||
0 | 6 |
# paths |
7 |
PREFIX = /usr/local |
|
8 |
MANPREFIX = ${PREFIX}/share/man |
|
9 |
||
10 |
X11INC = /usr/X11R6/include |
|
11 |
X11LIB = /usr/X11R6/lib |
|
12 |
||
13 |
# includes and libs |
|
143 | 14 |
INCS = -I/usr/lib -I${X11INC} |
15 |
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 |
|
0 | 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 |
199
955b4f217c2d
using -Os again, zoom is ignored in floating mode or on floating clients
arg@10ksloc.org
parents:
193
diff
changeset
|
18 |
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" |
193
7c0527dd63cd
no need for -g anymore, regexp matching works now
arg@10ksloc.org
parents:
191
diff
changeset
|
19 |
LDFLAGS = ${LIBS} |
7c0527dd63cd
no need for -g anymore, regexp matching works now
arg@10ksloc.org
parents:
191
diff
changeset
|
20 |
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" |
7c0527dd63cd
no need for -g anymore, regexp matching works now
arg@10ksloc.org
parents:
191
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 |