X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2FMakefile;h=c942bdeeb501a933e98aa05374622ccf956b010e;hp=a9ed7fd61ed5e1b9c51de8b7eca555b8caf0387c;hb=0ad719f56d355a3e733b58d2accf2e7b270ac37e;hpb=650c775ff00cccd03fc84e7789a03c51d9839004 diff --git a/tools/Makefile b/tools/Makefile index a9ed7fd6..c942bdee 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,10 +1,31 @@ -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 = ccan/grab_file/grab_file.o \ + ccan/noerr/noerr.o \ + ccan/read_write_all/read_write_all.o \ + ccan/str/debug.o \ + ccan/str/str.o \ + ccan/str_talloc/str_talloc.o \ + ccan/talloc/talloc.o \ + ccan/time/time.o \ + tools/compile.o \ + tools/depends.o \ + tools/tools.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