123456789101112131415161718192021222324252627282930313233343536 |
- .PHONY: build test profile
- default: all
- all: test
- check:
- splint \
- -Iinclude -Iext/xxHash -Iext/openldap/libraries/liblmdb \
- -preproc \
- test.c
- build:
- gcc -g -Wall \
- -std=c99 \
- -Iinclude -Iext/xxHash -Iext/openldap/libraries/liblmdb \
- -luuid \
- ext/xxHash/xxhash.c src/*.c \
- -o bin/lsup_rdf.so
- test:
- gcc -g -Wall \
- -std=c99 \
- -DDEBUG \
- -Iinclude -Iext/xxHash -Iext/openldap/libraries/liblmdb -Itest \
- -luuid \
- ext/xxHash/xxhash.c src/*.c test.c \
- -o bin/test
- profile:
- gcc -g -Wall \
- -std=c99 \
- -Iinclude -Iext/xxHash -Iext/openldap/libraries/liblmdb -Itest \
- -luuid \
- ext/xxHash/xxhash.c src/*.c test.c \
- -o bin/profile
|