Makefile 501 B

12345678910111213141516171819202122232425262728293031323334
  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=gnu99 \
  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=gnu99 \
  18. -DDEBUG \
  19. -Iinclude -Iext/xxHash -Itest \
  20. -luuid \
  21. ext/xxHash/xxhash.c src/*.c test.c \
  22. -o bin/test
  23. profile:
  24. gcc -g -Wall \
  25. -std=gnu99 \
  26. -Iinclude -Iext/xxHash \
  27. -luuid \
  28. ext/xxHash/xxhash.c src/*.c test.c \
  29. -o bin/profile