From: deal Date: Fri, 26 Feb 1999 18:53:51 +0000 (+0000) Subject: Add transport docs to automatically generated docs. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a6311f7c3f602ad6f46f6793921de4425449a2a;p=dealii-svn.git Add transport docs to automatically generated docs. git-svn-id: https://svn.dealii.org/trunk@921 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/auto/Makefile b/deal.II/doc/auto/Makefile index 9f66b7ddba..67aa7820e3 100644 --- a/deal.II/doc/auto/Makefile +++ b/deal.II/doc/auto/Makefile @@ -1,7 +1,7 @@ # $Id$ KDOCFLAGS = -I../scripts/kdoc ../scripts/kdoc/kdoc -a -p -KDOCINCLUDE = -lbase -llac -lbasic -lgrid -ldof -lnumerics +KDOCINCLUDE = -lbase -llac -lbasic -lgrid -ldof -lnumerics -ltransport kdoc.base = $(wildcard ../../base/include/base/*.h) kdoc.lac = $(wildcard ../../lac/include/lac/*.h) @@ -12,11 +12,20 @@ kdoc.dof = $(wildcard ../../deal.II/include/grid/dof*.h) \ $(wildcard ../../deal.II/include/fe/*.h) kdoc.num = $(wildcard ../../deal.II/include/numerics/*.h) -kdoc.all = $(kdoc.base) $(kdoc.lac) $(kdoc.basic) $(kdoc.grid) $(kdoc.dof) $(kdoc.num) +#user projects +kdoc.transport = $(wildcard ../../projects/transport/trans_dg/*.h) + + + + +kdoc.all = $(kdoc.base) $(kdoc.lac) $(kdoc.basic) $(kdoc.grid) $(kdoc.dof) $(kdoc.num) \ + $(kdoc.ntrans) all-include-files = $(wildcard ../../deal.II/include/*/*.h \ ../../lac/include/lac/*.h \ - ../../base/include/base/*.h) + ../../base/include/base/*.h \ + ../../projects/transport/trans_dg/*.h \ + ) @@ -44,6 +53,8 @@ kdoc-rerun: dof $(kdoc.dof:../..%=../../..%) @cd kdoc ; perl $(KDOCFLAGS) $(KDOCINCLUDE) -dnumerics \ numerics $(kdoc.num:../..%=../../..%) + @cd kdoc ; perl $(KDOCFLAGS) $(KDOCINCLUDE) -dtransport \ + transport $(kdoc.transport:../..%=../../..%) # output the names of the files which were not processed since they should # be added to one of the above lists. @echo ------------------------------------------------------------- @@ -75,8 +86,12 @@ kdoc/numerics.kdoc: $(kdoc.num) @cd kdoc ; perl $(KDOCFLAGS) -dnumerics \ numerics $(kdoc.num:../..%=../../..%) +kdoc/transport.kdoc: $(kdoc.transport) + @cd kdoc ; perl $(KDOCFLAGS) -dtransport \ + transport $(kdoc.transport:../..%=../../..%) + -kdoc/names.html: kdoc/base.kdoc kdoc/lac.kdoc kdoc/basic.kdoc kdoc/grid.kdoc kdoc/dof.kdoc kdoc/numerics.kdoc +kdoc/names.html: kdoc/base.kdoc kdoc/lac.kdoc kdoc/basic.kdoc kdoc/grid.kdoc kdoc/dof.kdoc kdoc/numerics.kdoc kdoc/transport.kdoc @cd kdoc ; perl ../scripts/index.pl *.kdoc > names.html