Mercurial > aewl
annotate config.mk @ 787:eecb13b34511 default tip
Put floating windows on random starting positions
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Fri, 18 Oct 2024 23:42:20 +0200 |
parents | 49a283c22ef4 |
children |
rev | line source |
---|---|
759 | 1 # aewl version |
775 | 2 VERSION = 0.2 |
160 | 3 |
4 # Customize below to fit your system | |
5 | |
0 | 6 # paths |
7 PREFIX = /usr/local | |
8 MANPREFIX = ${PREFIX}/share/man | |
9 | |
783
49a283c22ef4
Adjusted paths for Crux and disabled debug compile flags.
markus schnalke <meillo@marmaro.de>
parents:
775
diff
changeset
|
10 X11INC = /usr/include/X11 |
49a283c22ef4
Adjusted paths for Crux and disabled debug compile flags.
markus schnalke <meillo@marmaro.de>
parents:
775
diff
changeset
|
11 X11LIB = /usr/lib |
0 | 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 |
783
49a283c22ef4
Adjusted paths for Crux and disabled debug compile flags.
markus schnalke <meillo@marmaro.de>
parents:
775
diff
changeset
|
18 #DEBUG = -Wall -Wpointer-arith -Wstrict-prototypes -O2 -W |
759 | 19 CFLAGS = ${INCS} -DVERSION=\"${VERSION}\" ${DEBUG} |
193
7c0527dd63cd
no need for -g anymore, regexp matching works now
arg@10ksloc.org
parents:
191
diff
changeset
|
20 LDFLAGS = ${LIBS} |
735 | 21 #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" |
22 #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
|
23 |
636 | 24 # Solaris |
25 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" | |
26 #LDFLAGS = ${LIBS} | |
27 #CFLAGS += -xtarget=ultra | |
28 | |
268
a47b3b0d7bf4
applied Sanders LD and resize patches
Anselm R.Garbe <arg@10ksloc.org>
parents:
255
diff
changeset
|
29 # 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
|
30 CC = cc |