Makefile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. TEST_CFILES := $(wildcard tools/ccanlint/tests/*.c)
  2. TEST_OBJS := $(TEST_CFILES:.c=.o)
  3. CORE_OBJS := \
  4. ccan/asort/asort.o \
  5. ccan/dgraph/dgraph.o \
  6. ccan/foreach/foreach.o \
  7. ccan/grab_file/grab_file.o \
  8. ccan/hash/hash.o \
  9. ccan/htable/htable.o \
  10. ccan/lbalance/lbalance.o \
  11. ccan/noerr/noerr.o \
  12. ccan/opt/helpers.o \
  13. ccan/opt/opt.o \
  14. ccan/opt/parse.o \
  15. ccan/opt/usage.o \
  16. ccan/read_write_all/read_write_all.o \
  17. ccan/str/str.o ccan/str/debug.o \
  18. ccan/str_talloc/str_talloc.o \
  19. ccan/strmap/strmap.o \
  20. ccan/talloc/talloc.o \
  21. ccan/talloc_link/talloc_link.o \
  22. ccan/time/time.o \
  23. tools/ccanlint/async.o \
  24. tools/ccanlint/ccanlint.o \
  25. tools/ccanlint/file_analysis.o \
  26. tools/ccanlint/licenses.o \
  27. tools/compile.o \
  28. tools/depends.o \
  29. tools/doc_extract-core.o \
  30. tools/tools.o
  31. OBJS := $(CORE_OBJS) $(TEST_OBJS)
  32. # FIXME: write a trivial C program to do this
  33. tools/ccanlint/generated-testlist: $(TEST_CFILES)
  34. cat $^ | grep ^REGISTER_TEST > $@
  35. $(TEST_OBJS): tools/ccanlint/generated-testlist
  36. # Otherwise, ccanlint.c et al. may fail to build
  37. $(CORE_OBJS): tools/ccanlint/generated-testlist config.h
  38. tools/ccanlint/ccanlint: $(OBJS)
  39. ccanlint-clean:
  40. $(RM) tools/ccanlint/generated-testlist
  41. $(RM) tools/ccanlint/ccanlint