Skip to content
Snippets Groups Projects
Commit 5b828eb0 authored by Christian Engwer's avatar Christian Engwer
Browse files

install doxygen/html into doxygen/html and not into doxygen

[[Imported from SVN: r474]]
parent 755fdf7c
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,9 @@ all: $(WHAT)
# setting like in dune-web
BASEDIR=../..
CURDIR=doc/doxygen
EXTRAINSTALL = html/*.html html/*.css html/*.png html/*.gif doxygen.log
EXTRAINSTALL = doxygen.log
# EXTRAINSTALL in the html subdirectory
DOXYGENINSTALL = *.css *.png *.gif
# what files does the doxygen-generated stuff depend on (find-syntax)
DEPENDON = -name \*.cc -o -name \*.hh -o -name \*.png
......@@ -27,6 +29,17 @@ doxygen-tag: FORCE
touch doxygen-tag ; \
fi
# how to install the doxygen documentation
doxygen-install:
if test -d $(DUNEWEBDIR) && test -r $(DUNEWEBDIR)/Make.global ; then \
pushd html; \
$(MAKE) -f $(DUNEWEBDIR)/Make.global \
EXTRAINSTALL="$(DOXYGENINSTALL)" CURDIR="$(CURDIR)/html" install ; \
popd; \
fi
web-install: doxygen-install
# nice trick from the GNU make infopage to force a rule to run
FORCE:
......
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