aewl

annotate config.mk @ 55:fcbf7213d96f

continued with man page
author Anselm R. Garbe <garbeam@wmii.de>
date Fri, 14 Jul 2006 08:34:38 +0200
parents 035617ee18d1
children 5d4653de9a1c
rev   line source
garbeam@0 1 # Customize to fit your system
garbeam@0 2
garbeam@0 3 # paths
garbeam@0 4 PREFIX = /usr/local
garbeam@0 5 CONFPREFIX = ${PREFIX}/etc
garbeam@0 6 MANPREFIX = ${PREFIX}/share/man
garbeam@0 7
garbeam@0 8 X11INC = /usr/X11R6/include
garbeam@0 9 X11LIB = /usr/X11R6/lib
garbeam@0 10
garbeam@0 11 VERSION = 0.0
garbeam@0 12
garbeam@0 13 # includes and libs
garbeam@51 14 LIBS = -L${PREFIX}/lib -L/usr/lib -lc -L${X11LIB} -lX11
garbeam@0 15
garbeam@0 16 # Linux/BSD
garbeam@55 17 CFLAGS = -Os -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
garbeam@0 18 -DVERSION=\"${VERSION}\"
garbeam@55 19 LDFLAGS = ${LIBS}
garbeam@55 20 #CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
garbeam@55 21 # -DVERSION=\"${VERSION}\"
garbeam@55 22 #LDFLAGS = -g ${LIBS}
garbeam@33 23
garbeam@0 24
garbeam@0 25 # Solaris
garbeam@0 26 #CFLAGS = -fast -xtarget=ultra ${INCLUDES} -DVERSION=\"${VERSION}\"
garbeam@0 27 #LIBS += -lnsl -lsocket
garbeam@0 28
garbeam@0 29 AR = ar cr
garbeam@0 30 CC = cc
garbeam@0 31 RANLIB = ranlib