]> git.ozlabs.org Git - ccan/blobdiff - tools/Makefile
grab_file: close memory leak in test.
[ccan] / tools / Makefile
index a9ed7fd61ed5e1b9c51de8b7eca555b8caf0387c..63d474fbcc00255343b12e198014f0d3549a8cf7 100644 (file)
@@ -1,10 +1,21 @@
-tools/run_tests: tools/run_tests.o ccan/tap/tap.o ccan/talloc/talloc.o 
+ALL_TOOLS = tools/configurator/configurator tools/ccan_depends tools/doc_extract tools/namespacize tools/ccanlint/ccanlint
 
-tools/doc_extract: tools/doc_extract.c ccan/talloc/talloc.o
+DEP_OBJS = tools/depends.o tools/compile.o tools/tools.o ccan/str_talloc/str_talloc.o ccan/str/str.o ccan/str/debug.o ccan/grab_file/grab_file.o ccan/talloc/talloc.o ccan/noerr/noerr.o ccan/read_write_all/read_write_all.o
 
-tools/namespacize: tools/namespacize.c ccan/talloc/talloc.o
+.PHONY: tools
+tools: $(ALL_TOOLS)
+
+tools/ccan_depends: tools/ccan_depends.o $(DEP_OBJS)
+
+tools/doc_extract: tools/doc_extract.o tools/doc_extract-core.o $(DEP_OBJS)
+
+tools/namespacize: tools/namespacize.o $(DEP_OBJS)
+
+tools/namespacize.o tools/depends.o: tools/tools.h
+
+tools/configurator/configurator: tools/configurator/configurator.c
 
 tools-clean: ccanlint-clean
-       rm -f run_tests doc_extract namespacize
+       $(RM) $(ALL_TOOLS)
 
 include tools/ccanlint/Makefile