From: wolf Date: Wed, 2 Feb 2000 11:42:56 +0000 (+0000) Subject: Add /fe to the lists. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bd86d5b1591943111a642dbe6abfe02aa3e9c79;p=dealii-svn.git Add /fe to the lists. git-svn-id: https://svn.dealii.org/trunk@2321 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile b/tests/Makefile index c04bfc291d..6983ee73a1 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -4,9 +4,11 @@ all: cd base ; $(MAKE) cd lac ; $(MAKE) + cd fe ; $(MAKE) cd deal.II ; $(MAKE) -clean: clean-base clean-lac clean-deal.II + +clean: clean-base clean-lac clean-deal.II clean-fe clean-base: cd base ; $(MAKE) clean @@ -14,8 +16,11 @@ clean-base: clean-lac: cd lac ; $(MAKE) clean +clean-fe: + cd fe ; $(MAKE) clean + clean-deal.II: cd deal.II ; $(MAKE) clean -.PHONY: all clean clean-base clean-lac clean-deal.II +.PHONY: all clean clean-base clean-lac clean-fe clean-deal.II