From: wolf Date: Fri, 8 Nov 2002 15:38:20 +0000 (+0000) Subject: Add the bits subdir to the targets. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd780195b01c75d90aa6526207df178a1ba705c0;p=dealii-svn.git Add the bits subdir to the targets. git-svn-id: https://svn.dealii.org/trunk@6741 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile b/tests/Makefile index 7ef4672829..a0e420d04a 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -2,7 +2,7 @@ # Makefile,v 1.14 2002/09/19 13:53:47 wolf Exp # Common Makefile for all test directories -all: base lac fe deal.II big-tests +all: base lac fe deal.II bits base: cd base ; $(MAKE) @@ -13,11 +13,14 @@ lac: fe: cd fe ; $(MAKE) +bits: + cd bits ; $(MAKE) + deal.II: cd deal.II ; $(MAKE) report: - @for i in base lac fe deal.II ; do \ + @for i in base lac fe deal.II bits ; do \ echo =======Report: $$i ======= ; \ cd $$i ; $(MAKE) report ; cd .. ; \ done @@ -60,8 +63,8 @@ all-headers: @rm -rf tmp-all-headers -clean: clean-base clean-lac clean-deal.II clean-fe -veryclean: veryclean-base veryclean-lac veryclean-deal.II veryclean-fe +clean: clean-base clean-lac clean-deal.II clean-fe clean-bits +veryclean: veryclean-base veryclean-lac veryclean-deal.II veryclean-fe veryclean-bits clean-base: cd base ; $(MAKE) clean @@ -87,14 +90,15 @@ clean-deal.II: veryclean-deal.II: cd deal.II ; $(MAKE) veryclean -clean-big: - cd big-tests ; $(MAKE) clean +clean-bits: + cd bits ; $(MAKE) clean + +veryclean-bits: + cd bits ; $(MAKE) veryclean -veryclean-big: - cd big-tests ; $(MAKE) veryclean -.PHONY : all base lac fe deal.II big-tests \ - clean clean-base clean-lac clean-fe clean-deal.II clean-big \ - veryclean veryclean-base veryclean-lac veryclean-fe veryclean-deal.II veryclean-big +.PHONY : all base lac fe deal.II bits \ + clean clean-base clean-lac clean-fe clean-deal.II clean-bits \ + veryclean veryclean-base veryclean-lac veryclean-fe veryclean-deal.II veryclean-bits include Makefile.paths