12345678910111213141516171819202122232425262728293031 |
- default: all
- all: test
- check:
- splint \
- -Iinclude -Iinclude/structures -Iinclude/model/rdf -Iext/binn/src \
- -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 \
- -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 \
- -o bin/test
|