1# doxyfile.cfg is distributed in addition to doxyfile.cfg.in since in
2# the MSVC environment ./configure is not used and a hardcoded doxyfile.cfg
3# must be provided.
4EXTRA_DIST = doxyfile.cfg doxyfile.cfg.in mxflib.dox license.txt
5
6CLEANFILES = html/*
7
8htmldir = $(datadir)/doc/mxflib/html
9
10html_DATA = html/index.html
11
12html/index.html: doxyfile.cfg license.txt
13	doxygen doxyfile.cfg
14
15license.txt:
16	cp $(top_srcdir)/COPYING license.txt
17
18install-data-hook:
19	cp -dpR html/* $(DESTDIR)$(htmldir)
20
21uninstall-local:
22	rm -rf $(DESTDIR)$(htmldir)
23