From b3412f0a14d081f013d582f78e4d86a70ae82c27 Mon Sep 17 00:00:00 2001 From: "arg@wmii.de" Date: Tue, 26 Sep 2006 14:24:26 +0200 Subject: new stuff --- config.mk | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) (limited to 'config.mk') diff --git a/config.mk b/config.mk index 4f5d6c8..ff81803 100644 --- a/config.mk +++ b/config.mk @@ -1,19 +1,22 @@ # sic version VERSION = 0.3 -# Customize to fit your system +# Customize below to fit your system # paths PREFIX = /usr/local MANPREFIX = ${PREFIX}/share/man # includes and libs -LIBS = -L${PREFIX}/lib -L/usr/lib -lc +INCS = -I. -I/usr/include +LIBS = -L/usr/lib -lc -# compiler -CFLAGS = -O3 -I${PREFIX}/include -I/usr/include \ - -DVERSION=\"${VERSION}\" -LDFLAGS = ${LIBS} -#CFLAGS = -g -Wall -O2 -I${PREFIX}/include -I/usr/include \ -# -DVERSION=\"${VERSION}\" -#LDFLAGS = -g ${LIBS} +# flags +CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" +LDFLAGS = ${LIBS} +#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" +#LDFLAGS = -g ${LIBS} + +# compiler and linker +CC = cc +LD = ${CC} -- cgit v1.2.3