From: Wolfgang Bangerth Date: Thu, 14 May 1998 10:57:25 +0000 (+0000) Subject: Add global makefile to this directory. X-Git-Tag: v8.0.0~22970 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d5b4ea592971cc255b0df13dbd64dee586c3781;p=dealii.git Add global makefile to this directory. git-svn-id: https://svn.dealii.org/trunk@284 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/Makefile b/deal.II/lac/Makefile new file mode 100644 index 0000000000..ec6b7da773 --- /dev/null +++ b/deal.II/lac/Makefile @@ -0,0 +1,24 @@ +# $Id$ + + +all: lac doc + +clean: lib-clean doc-clean + + +lac: + cd source ; make + +doc: + cd doc ; make + + +lib-clean: + cd lib ; rm lib* + +doc-clean: + cd doc ; make clean + + +.PHONY: all deal.II doc +.PHONY: clean lib-clean doc-clean