|
@@ -4,28 +4,21 @@ all: test
|
|
|
|
|
|
check:
|
|
|
splint \
|
|
|
- -Iinclude -Iinclude/structures -Iinclude/model/rdf -Iext/binn/src \
|
|
|
- -Iext/xxHash \
|
|
|
+ -Iinclude -Iext/xxHash \
|
|
|
-preproc \
|
|
|
test.c
|
|
|
|
|
|
build:
|
|
|
gcc -g -Wall \
|
|
|
-std=c99 \
|
|
|
- -DDEBUG \
|
|
|
- -Iinclude -Iinclude/structures -Iinclude/model/rdf \
|
|
|
- -Iext/xxHash \
|
|
|
- ext/xxHash/xxhash.c \
|
|
|
- src/*.c src/structures/*.c src/model/rdf/*.c \
|
|
|
+ -Iinclude -Iext/xxHash \
|
|
|
+ ext/xxHash/xxhash.c src/*.c \
|
|
|
-o bin/lsup_rdf.so
|
|
|
|
|
|
test:
|
|
|
gcc -g -Wall \
|
|
|
-std=c99 \
|
|
|
-DDEBUG \
|
|
|
- -Iinclude -Iinclude/structures -Iinclude/model/rdf \
|
|
|
- -Iext/xxHash \
|
|
|
- -Itest \
|
|
|
- ext/xxHash/xxhash.c \
|
|
|
- src/*.c src/structures/*.c src/model/rdf/*.c test.c \
|
|
|
+ -Iinclude -Iext/xxHash -Itest \
|
|
|
+ ext/xxHash/xxhash.c src/*.c test.c \
|
|
|
-o bin/test
|