From: Andreas Schlick Date: Tue, 5 Feb 2013 19:05:35 +0000 (+0100) Subject: Makefile: Add hacks for the nested modules for make check. X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=dfe310e715cd4c33ada106007d8ae1242d9c7e94;p=ccan Makefile: Add hacks for the nested modules for make check. --- diff --git a/Makefile b/Makefile index 9c70f2ba..5c7760d8 100644 --- a/Makefile +++ b/Makefile @@ -56,9 +56,15 @@ summary-fastcheck-%: tools/ccanlint/ccanlint $(OBJFILES) tools/ccanlint/ccanlint -x tests_pass_valgrind -x tests_compile_coverage -s ccan/$* # FIXME: Horrible hacks because % doesn't match / +summary-check-antithread/%: tools/ccanlint/ccanlint $(OBJFILES) + tools/ccanlint/ccanlint -s ccan/antithread/$* + summary-fastcheck-antithread/%: tools/ccanlint/ccanlint $(OBJFILES) tools/ccanlint/ccanlint -x tests_pass_valgrind -x tests_compile_coverage -s ccan/antithread/$* +summary-check-tal/%: tools/ccanlint/ccanlint $(OBJFILES) + tools/ccanlint/ccanlint -s ccan/tal/$* + summary-fastcheck-tal/%: tools/ccanlint/ccanlint $(OBJFILES) tools/ccanlint/ccanlint -x tests_pass_valgrind -x tests_compile_coverage -s ccan/tal/$*