X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2FMakefile;h=4607d41ac9f42c318e70a1d173247ac632520892;hp=a9ed7fd61ed5e1b9c51de8b7eca555b8caf0387c;hb=bbd7380019f3ea4629d170af24b902bf734c83ea;hpb=650c775ff00cccd03fc84e7789a03c51d9839004;ds=sidebyside diff --git a/tools/Makefile b/tools/Makefile index a9ed7fd6..4607d41a 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,10 +1,19 @@ -tools/run_tests: tools/run_tests.o ccan/tap/tap.o ccan/talloc/talloc.o +ALL_TOOLS = 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/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-clean: ccanlint-clean - rm -f run_tests doc_extract namespacize + $(RM) $(ALL_TOOLS) include tools/ccanlint/Makefile