Skip to content
Snippets Groups Projects
Commit f6c8f2f8 authored by Markus Blatt's avatar Markus Blatt
Browse files

Moved doxygen documentation to directory dune/doc/doxygen.

[[Imported from SVN: r1911]]
parent 740ef593
No related branches found
No related tags found
No related merge requests found
.deps
doxygen-tag
doxygen.log
html
latex
Makefile
Makefile.in
semantic.cache
\ No newline at end of file
# $Id$
# distribute these files:
EXTRA_DIST = Buildsystem CodingStyles Doxyfile Doxydep \
doxy-footer.html doxy-header.html dune-doxy.css mainpage
EXTRA_DIST = BuildSystem CodingStyles
all: doxygen-tag
WEBDIR = /var/www/dune/doxygen
WEBFILES = html/*.html html/*.css html/*.png doxygen.log
# what files does the doxygen-generated stuff depend on (find-syntax)
DEPENDON = -name \*.cc -o -name \*.hh -o -name \*.css -o -name \*.html -o -name \*.png
# check dependency ourself to be robust
doxygen-tag: FORCE
set -e; \
if test ! -e doxygen-tag || test x"`find $(top_srcdir) \( $(DEPENDON) \) -a -cnewer doxygen-tag -print`" != x ; then \
echo Running doxygen. This may take a while... ; \
$(DOXYGEN) > doxygen.log 2>&1 <&- ; \
touch doxygen-tag ; \
fi
# nice trick from the GNU make infopage to force a rule to run
FORCE:
web-install: doxygen-tag
if [ ! -d $(WEBDIR) ]; then \
install -d -g web -m 775 $(WEBDIR); \
fi
install -g web -m 664 $(WEBFILES) $(WEBDIR)
clean-local:
rm -rf html latex doxygen-tag *~
SUBDIRS = doxygen
.deps
doxygen-tag
doxygen.log
html
latex
Makefile
Makefile.in
semantic.cache
\ No newline at end of file
File moved
......@@ -362,13 +362,13 @@ WARN_LOGFILE =
# with spaces.
INPUT = mainpage \
../grid \
../fem \
../common \
../quadrature \
../solver \
../istl \
../io
../../grid \
../../fem \
../../common \
../../quadrature \
../../solver \
../../istl \
../../io
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
......
# $Id$
# distribute these files:
EXTRA_DIST = Doxyfile Doxydep \
doxy-footer.html doxy-header.html dune-doxy.css mainpage
all: doxygen-tag
WEBDIR = /var/www/dune/doxygen
WEBFILES = html/*.html html/*.css html/*.png doxygen.log
# what files does the doxygen-generated stuff depend on (find-syntax)
DEPENDON = -name \*.cc -o -name \*.hh -o -name \*.css -o -name \*.html -o -name \*.png
# check dependency ourself to be robust
doxygen-tag: FORCE
set -e; \
if test ! -e doxygen-tag || test x"`find $(top_srcdir) \( $(DEPENDON) \) -a -cnewer doxygen-tag -print`" != x ; then \
echo Running doxygen. This may take a while... ; \
$(DOXYGEN) > doxygen.log 2>&1 <&- ; \
touch doxygen-tag ; \
fi
# nice trick from the GNU make infopage to force a rule to run
FORCE:
web-install: doxygen-tag
if [ ! -d $(WEBDIR) ]; then \
install -d -g web -m 775 $(WEBDIR); \
fi
install -g web -m 664 $(WEBFILES) $(WEBDIR)
clean-local:
rm -rf html latex doxygen-tag *~
File moved
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment