X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2FMakefile;h=ddd6545fc694b9d91e9d5a3ec9014aa1c49acb8d;hp=b8871be0845c4b58d7adc5e37c4db9d3d4302e3e;hb=adc90816df194167a588a943ae503a37fec3fb6a;hpb=3ea7b4d695237414015f33674d6ba01009e77fd1 diff --git a/tools/Makefile b/tools/Makefile index b8871be0..ddd6545f 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,14 +1,22 @@ ALL_TOOLS = tools/configurator/configurator tools/ccan_depends tools/doc_extract tools/namespacize tools/ccanlint/ccanlint - -DEP_OBJS = ccan/grab_file/grab_file.o \ +LDLIBS = -lrt +DEP_OBJS = ccan/err/err.o \ + ccan/foreach/foreach.o \ + ccan/list/list.o \ ccan/noerr/noerr.o \ + ccan/rbuf/rbuf.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/take/take.o \ + ccan/tal/tal.o \ + ccan/tal/grab_file/grab_file.o \ + ccan/tal/link/link.o \ + ccan/tal/path/path.o \ + ccan/tal/str/str.o \ ccan/time/time.o \ tools/read_config_header.o \ + tools/ccan_dir.o \ tools/compile.o \ tools/depends.o \ tools/tools.o @@ -16,6 +24,8 @@ DEP_OBJS = ccan/grab_file/grab_file.o \ .PHONY: tools tools: $(ALL_TOOLS) +tools/ccan_depends.o: config.h + tools/ccan_depends: tools/ccan_depends.o $(DEP_OBJS) tools/doc_extract: tools/doc_extract.o tools/doc_extract-core.o $(DEP_OBJS)