From: Wolfgang Bangerth Date: Thu, 25 Nov 1999 14:22:20 +0000 (+0000) Subject: Follow common convention. X-Git-Tag: v8.0.0~21410 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f150d28ec40ca9ad0c244617daf0b0f38c2b361;p=dealii.git Follow common convention. git-svn-id: https://svn.dealii.org/trunk@1950 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile b/tests/Makefile index c2bf129106..36090be56d 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -2,11 +2,11 @@ # Common Makefile for all test directories all: - cd base ; make - cd lac ; make - cd deal.II ; make + cd base ; $(MAKE) + cd lac ; $(MAKE) + cd deal.II ; $(MAKE) clean: - cd base ; make clean - cd lac ; make clean - cd deal.II ; make clean + cd base ; $(MAKE) clean + cd lac ; $(MAKE) clean + cd deal.II ; $(MAKE) clean