| author | arg@10ksloc.org |
| Fri, 04 Aug 2006 14:40:32 +0200 | |
| changeset 191 | 56fee1dc9d53 |
| parent 170 | 697715541a25 |
| child 193 | 7c0527dd63cd |
| permissions | -rw-r--r-- |
| 160 | 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 | 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 |
| 191 | 18 |
#CFLAGS = -O3 ${INCS} -DVERSION=\"${VERSION}\" |
19 |
#LDFLAGS = ${LIBS} |
|
20 |
CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" |
|
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 |