X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=Makefile;h=222a9b22146c516476d9ae2ae816a00636c5ad25;hp=62f244ed98ee6367dc0fbd2ef296acd81672b107;hb=90f280e891243504cd2e8dbf1daf5c179abca4b1;hpb=c737f1fcc960571bb88c47f217991d4b0e48f663 diff --git a/Makefile b/Makefile index 62f244ed..222a9b22 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ JUNKBALLS=$(JUNKDIRS:%=$(WEBDIR)/%.tar.bz2) include Makefile-ccan check: $(ALL_DIRS:%=test-%) + echo $(ALL_DIRS) distclean: clean rm -f $(ALL_DEPENDS) @@ -78,7 +79,12 @@ $(WEBDIR)/tarballs/with-deps/%.tar.bz2: ccan/% ccan/%/test tools/ccan_depends $(ALL_DEPENDS): %/.depends: tools/ccan_depends tools/ccan_depends $* > $@ || ( rm -f $@; exit 1 ) -test-ccan/%: tools/run_tests ccan/%.o +test-ccan/%: tools/run_tests libccan.a(%.o) + @echo Testing $*... + @if tools/run_tests $(V) ccan/$* | grep ^'not ok'; then exit 1; else exit 0; fi + +# Some don't have object files. +test-ccan/%:: tools/run_tests @echo Testing $*... @if tools/run_tests $(V) ccan/$* | grep ^'not ok'; then exit 1; else exit 0; fi @@ -88,8 +94,9 @@ clean: tools-clean $(RM) `find . -name '*.o'` `find . -name '.depends'` `find . -name '*.a'` `find . -name _info` $(RM) inter-depends lib-depends test-depends +# Only list a dependency if there are object files to build. inter-depends: $(ALL_DEPENDS) - for f in $(ALL_DEPENDS); do echo test-ccan/`basename \`dirname $$f\``: `sed -n 's,ccan/\(.*\),ccan/\1.o,p' < $$f`; done > $@ + for f in $(ALL_DEPENDS); do echo test-ccan/$$(basename $$(dirname $$f) ): $$(for dir in $$(cat $$f); do [ "$$(echo $$dir/[a-z]*.c)" = "$$dir/[a-z]*.c" ] || echo libccan.a\("$$(basename $$dir)".o\); done); done > $@ test-depends: $(ALL_DEPENDS) for f in $(ALL_DEPENDS); do echo test-ccan/`basename \`dirname $$f\``: `sed -n 's,ccan/\(.*\),test-ccan/\1,p' < $$f`; done > $@