author | Anselm R. Garbe <garbeam@gmail.com> |
Sat, 15 Sep 2007 22:25:27 +0200 | |
changeset 990 | 70f6fcd100b7 |
parent 979 | 1f295ac327ef |
child 1010 | adfa9f41eedd |
permissions | -rw-r--r-- |
160 | 1 |
# dwm version |
979
1f295ac327ef
introduced new define RESIZEHINTS, which allows to enable/disable size hint handling in tiled resizals
Anselm R. Garbe <garbeam@gmail.com>
parents:
976
diff
changeset
|
2 |
VERSION = 4.5 |
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 |
|
303
1120bd29a275
applied another config.mk patch made by sander
Anselm R.Garbe <arg@10ksloc.org>
parents:
300
diff
changeset
|
14 |
INCS = -I. -I/usr/include -I${X11INC} |
143 | 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}\" |
882
9c7fba655d72
removed strip, added -s to LDFLAGS
Anselm R. Garbe <arg@suckless.org>
parents:
881
diff
changeset
|
19 |
LDFLAGS = -s ${LIBS} |
972
c39d60829f67
reverted release CFLAGs
Anselm R. Garbe <garbeam@gmail.com>
parents:
971
diff
changeset
|
20 |
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" |
c39d60829f67
reverted release CFLAGs
Anselm R. Garbe <garbeam@gmail.com>
parents:
971
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 |
|
636 | 23 |
# Solaris |
24 |
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" |
|
25 |
#LDFLAGS = ${LIBS} |
|
26 |
#CFLAGS += -xtarget=ultra |
|
27 |
||
268
a47b3b0d7bf4
applied Sanders LD and resize patches
Anselm R.Garbe <arg@10ksloc.org>
parents:
255
diff
changeset
|
28 |
# compiler and linker |
148
5267e1204367
uppercasing all define'd values (uppercase-prefixed should only be enum field qualifiers)
arg@10ksloc.org
parents:
146
diff
changeset
|
29 |
CC = cc |