From: wolf Date: Mon, 25 May 1998 18:36:57 +0000 (+0000) Subject: Makefile update. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c6ce8850e281fa18a8a796f9d595e0f75d04e3f;p=dealii-svn.git Makefile update. git-svn-id: https://svn.dealii.org/trunk@361 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/Makefile b/deal.II/lac/Makefile index ec6b7da773..dcfb589eee 100644 --- a/deal.II/lac/Makefile +++ b/deal.II/lac/Makefile @@ -3,8 +3,8 @@ all: lac doc -clean: lib-clean doc-clean - +clean: doc-clean source-clean + rm -f *~ include/*~ include/*/*~ lib/lib* lac: cd source ; make @@ -13,12 +13,12 @@ doc: cd doc ; make -lib-clean: - cd lib ; rm lib* - doc-clean: cd doc ; make clean +source-clean: + cd source ; make clean + .PHONY: all deal.II doc -.PHONY: clean lib-clean doc-clean +.PHONY: clean doc-clean source-clean