Makefile 888 B

12345678910111213141516171819202122232425262728293031323334
  1. ALL_TOOLS = tools/configurator/configurator tools/ccan_depends tools/doc_extract tools/namespacize tools/ccanlint/ccanlint
  2. LDLIBS = -lrt
  3. DEP_OBJS = ccan/grab_file/grab_file.o \
  4. ccan/noerr/noerr.o \
  5. ccan/read_write_all/read_write_all.o \
  6. ccan/str/debug.o \
  7. ccan/str/str.o \
  8. ccan/str_talloc/str_talloc.o \
  9. ccan/talloc/talloc.o \
  10. ccan/time/time.o \
  11. tools/read_config_header.o \
  12. tools/compile.o \
  13. tools/depends.o \
  14. tools/tools.o
  15. .PHONY: tools
  16. tools: $(ALL_TOOLS)
  17. tools/ccan_depends.o: config.h
  18. tools/ccan_depends: tools/ccan_depends.o $(DEP_OBJS)
  19. tools/doc_extract: tools/doc_extract.o tools/doc_extract-core.o $(DEP_OBJS)
  20. tools/namespacize: tools/namespacize.o $(DEP_OBJS)
  21. tools/namespacize.o tools/depends.o: tools/tools.h
  22. tools/configurator/configurator: tools/configurator/configurator.c
  23. tools-clean: ccanlint-clean
  24. $(RM) $(ALL_TOOLS)
  25. include tools/ccanlint/Makefile