]> git.ozlabs.org Git - ccan/blobdiff - tools/Makefile
Remove duplicate const qualifier
[ccan] / tools / Makefile
index c60f06968b045ad271cc5d6689b88eef2454b265..6e4833a3b8a23d0eef9912ff00e93192f58bd992 100644 (file)
@@ -1,16 +1,28 @@
-ALL_TOOLS = tools/configurator/configurator tools/ccan_depends tools/doc_extract tools/namespacize tools/ccanlint/ccanlint
+ALL_TOOLS = tools/configurator/configurator tools/ccan_depends tools/doc_extract tools/namespacize tools/ccanlint/ccanlint tools/modfiles
 LDLIBS = -lrt
 DEP_OBJS = ccan/err/err.o \
        ccan/foreach/foreach.o \
-       ccan/grab_file/grab_file.o \
+       ccan/hash/hash.o \
+       ccan/htable/htable.o \
+       ccan/list/list.o \
        ccan/noerr/noerr.o \
+       ccan/opt/opt.o \
+       ccan/opt/helpers.o \
+       ccan/opt/parse.o \
+       ccan/opt/usage.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
@@ -30,7 +42,9 @@ tools/namespacize.o tools/depends.o: tools/tools.h
 
 tools/configurator/configurator: tools/configurator/configurator.c
 
+tools/modfiles: tools/modfiles.o tools/manifest.o $(DEP_OBJS)
+
 tools-clean: ccanlint-clean
-       $(RM) $(ALL_TOOLS)
+       rm -f $(ALL_TOOLS)
 
 include tools/ccanlint/Makefile