Makefile 362 B

1234567891011121314151617181920212223242526
  1. default: all
  2. all: test
  3. check:
  4. splint \
  5. -Iinclude -Iext/xxHash \
  6. -preproc \
  7. test.c
  8. build:
  9. gcc -g -Wall \
  10. -std=c99 \
  11. -Iinclude -Iext/xxHash \
  12. -luuid \
  13. ext/xxHash/xxhash.c src/*.c \
  14. -o bin/lsup_rdf.so
  15. test:
  16. gcc -g -Wall \
  17. -std=c99 \
  18. -DDEBUG \
  19. -Iinclude -Iext/xxHash -Itest \
  20. -luuid \
  21. ext/xxHash/xxhash.c src/*.c test.c \
  22. -o bin/test