From: Wolfgang Bangerth Date: Mon, 25 May 1998 18:36:57 +0000 (+0000) Subject: Makefile update. X-Git-Tag: v8.0.0~22893 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f4551e1874939e2ee612f8ce26a18fc835362fe;p=dealii.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