aewl

view config.mk @ 759:45f23169563e

renamed dwm to aewl updated copyright notices updated man page
author meillo@marmaro.de
date Fri, 30 May 2008 22:18:18 +0200
parents 427608ef0687
children 794a83e74023
line source
1 # aewl version
2 VERSION = 0.1
4 # Customize below to fit your system
6 # paths
7 PREFIX = /usr/local
8 MANPREFIX = ${PREFIX}/share/man
10 X11INC = /usr/X11R6/include
11 X11LIB = /usr/X11R6/lib
13 # includes and libs
14 INCS = -I. -I/usr/include -I${X11INC}
15 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
17 # flags
18 DEBUG = -Wall -Wpointer-arith -Wstrict-prototypes -O2 -W -pedantic
19 CFLAGS = ${INCS} -DVERSION=\"${VERSION}\" ${DEBUG}
20 LDFLAGS = ${LIBS}
21 #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
22 #LDFLAGS = -g ${LIBS}
24 # Solaris
25 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
26 #LDFLAGS = ${LIBS}
27 #CFLAGS += -xtarget=ultra
29 # compiler and linker
30 CC = cc