From: Wolfgang Bangerth Date: Sun, 17 May 1998 20:19:07 +0000 (+0000) Subject: Add Makefile for this directory. X-Git-Tag: v8.0.0~22960 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c5a2d72758be9fac0608291ee5e29fd7b5f2232;p=dealii.git Add Makefile for this directory. git-svn-id: https://svn.dealii.org/trunk@294 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/Attic/doc/Makefile b/deal.II/lac/Attic/doc/Makefile new file mode 100644 index 0000000000..d30a3c053d --- /dev/null +++ b/deal.II/lac/Attic/doc/Makefile @@ -0,0 +1,27 @@ +# $Id$ + + +KDOCFLAGS = -I../kdoc ../../../deal.II/doc/kdoc/kdoc -a -p +kdoc.inc = $(wildcard ../include/lac/*.h) + + + +doc-html: kdoc cvslog + + +# make kdoc doc; make sure that the *.kdoc files exist by +# using the dependancies and the following rules. +kdoc: $(kdoc.inc) + cd doc.kdoc ; perl $(KDOCFLAGS) -ulac -dlac \ + lac $(kdoc.inc:..%=../..%) + +cvslog: + @cd .. ; ../deal.II/doc/cvslog/cvs2html -o doc/cvslog/lac -a -k + +clean: + rm -f doc.kdoc/lac/* \ + cvslog/* \ + *~ + + +.PHONY: doc-html kdoc cvslog clean