12345678910111213141516171819202122232425262728293031323334353637 |
- .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=gnu99 \
- -Iinclude -Iext/xxHash -Iext/openldap/libraries/liblmdb \
- -luuid \
- ext/xxHash/xxhash.c src/*.c \
- -o bin/lsup_rdf.so
- test:
- gcc -g -Wall \
- -std=gnu99 \
- -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 \
- <<<<<<< HEAD
- -std=gnu99 \
- -Iinclude -Iext/xxHash -Iext/openldap/libraries/liblmdb \
- -luuid \
- ext/xxHash/xxhash.c src/*.c profile.c \
- -o bin/profile
|