author | arg@10ksloc.org |
Fri, 21 Jul 2006 10:18:12 +0200 | |
changeset 134 | eb8580a97d56 |
parent 131 | 65efe27cbf3d |
child 143 | 36cabfe408cd |
permissions | -rw-r--r-- |
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 |
||
134
eb8580a97d56
s/0.5/0.6/ - my steps are wider than the reality
arg@10ksloc.org
parents:
131
diff
changeset
|
10 |
VERSION = 0.5 |
0 | 11 |
|
12 |
# includes and libs |
|
51 | 13 |
LIBS = -L${PREFIX}/lib -L/usr/lib -lc -L${X11LIB} -lX11 |
0 | 14 |
|
15 |
# Linux/BSD |
|
131
65efe27cbf3d
preparing 0.6 which will be available in the evening after sanders patch approx.
arg@10ksloc.org
parents:
127
diff
changeset
|
16 |
CFLAGS = -O3 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \ |
65efe27cbf3d
preparing 0.6 which will be available in the evening after sanders patch approx.
arg@10ksloc.org
parents:
127
diff
changeset
|
17 |
-DVERSION=\"${VERSION}\" |
65efe27cbf3d
preparing 0.6 which will be available in the evening after sanders patch approx.
arg@10ksloc.org
parents:
127
diff
changeset
|
18 |
LDFLAGS = ${LIBS} |
65efe27cbf3d
preparing 0.6 which will be available in the evening after sanders patch approx.
arg@10ksloc.org
parents:
127
diff
changeset
|
19 |
#CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \ |
127
1480e19f6377
using double-linked list in order to get correct prev focus handling
arg@10ksloc.org
parents:
123
diff
changeset
|
20 |
# -DVERSION=\"${VERSION}\" |
131
65efe27cbf3d
preparing 0.6 which will be available in the evening after sanders patch approx.
arg@10ksloc.org
parents:
127
diff
changeset
|
21 |
#LDFLAGS = -g ${LIBS} |
33
e90449e03167
new stuff (some warning elimination)
Anselm R. Garbe <garbeam@wmii.de>
parents:
30
diff
changeset
|
22 |
|
0 | 23 |
|
24 |
# Solaris |
|
25 |
#CFLAGS = -fast -xtarget=ultra ${INCLUDES} -DVERSION=\"${VERSION}\" |
|
26 |
#LIBS += -lnsl -lsocket |
|
27 |
||
28 |
AR = ar cr |
|
29 |
CC = cc |
|
30 |
RANLIB = ranlib |