]> git.ozlabs.org Git - ccan/blobdiff - Makefile
tools: new "configurator" tool.
[ccan] / Makefile
index c1f5ea8f6d78a17d8c5dd4cb087e4b4092726fb0..ae01880b4af02596fafed39461dd47219e5fb937 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -88,7 +88,7 @@ summary-fastcheck-%: tools/ccanlint/ccanlint $(OBJFILES)
        tools/ccanlint/ccanlint -t $(FASTTIMEOUT) -s -d ccan/$*
 
 ccan/%/info: ccan/%/_info
-       $(CC) $(CFLAGS) -o $@ -x c $<
+       $(CC) $(CCAN_CFLAGS) -o $@ -x c $<
 
 libccan.a(%.o): ccan/%.o
        $(AR) r $@ $<
@@ -106,6 +106,9 @@ inter-depends: $(ALL_DEPENDS) Makefile
 test-depends: $(ALL_DEPENDS) Makefile
        for f in $(ALL_DEPENDS); do echo check-`basename \`dirname $$f\``: `sed -n 's,ccan/\(.*\),check-\1,p' < $$f`; done > $@
 
+config.h: tools/configurator/configurator Makefile Makefile-ccan
+       @tools/configurator/configurator $(CC) $(CCAN_CFLAGS) > config.h
+
 include tools/Makefile
 -include inter-depends
 -include test-depends