1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#!/bin/sh
# alternative to compilation with automake/make: just run
# current version does not build reasoner: added later
[ -z "$CC" ] && CC="cc"
if [ -z "$(which $CC 2>/dev/null)" ]; then
echo "Error: No compiler found"
exit 1
fi
[ -f config.h ] || cp config-gcc.h config.h
if [ config-gcc.h -nt config.h ]; then
echo "Warning: config.h is older than config-gcc.h, consider updating it"
fi
${CC} -O2 -Wall -o Main/wgdb Main/wgdb.c Db/dbmem.c \
Db/dballoc.c Db/dbdata.c Db/dblock.c Db/dbindex.c Db/dbdump.c \
Db/dblog.c Db/dbhash.c Db/dbcompare.c Db/dbquery.c Db/dbutil.c Db/dbmpool.c \
Db/dbjson.c Db/dbschema.c json/yajl_all.c -lm
# debug and testing programs: uncomment as needed
#$CC -O2 -Wall -o Main/indextool Main/indextool.c Db/dbmem.c \
# Db/dballoc.c Db/dbdata.c Db/dblock.c Db/dbindex.c Db/dblog.c \
# Db/dbhash.c Db/dbcompare.c Db/dbquery.c Db/dbutil.c Db/dbmpool.c \
# Db/dbjson.c Db/dbschema.c json/yajl_all.c -lm
#$CC -O2 -Wall -o Main/selftest Main/selftest.c Db/dbmem.c \
# Db/dballoc.c Db/dbdata.c Db/dblock.c Db/dbindex.c Test/dbtest.c Db/dbdump.c \
# Db/dblog.c Db/dbhash.c Db/dbcompare.c Db/dbquery.c Db/dbutil.c Db/dbmpool.c \
# Db/dbjson.c Db/dbschema.c json/yajl_all.c -lm
|