diff options
| author | arg@wmii.de <unknown> | 2006-09-26 14:24:26 +0200 |
|---|---|---|
| committer | arg@wmii.de <unknown> | 2006-09-26 14:24:26 +0200 |
| commit | b3412f0a14d081f013d582f78e4d86a70ae82c27 (patch) | |
| tree | a7a76bb207637c2ee540aee8e6e3f2a6b4da5e43 /config.mk | |
| parent | 1230561e3d0ff9de0ff1556a8bddafcb38e5017e (diff) | |
| download | cic-b3412f0a14d081f013d582f78e4d86a70ae82c27.tar.gz | |
new stuff
Diffstat (limited to 'config.mk')
| -rw-r--r-- | config.mk | 21 |
1 files changed, 12 insertions, 9 deletions
@@ -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} |
