aboutsummaryrefslogtreecommitdiff
path: root/doc/Makefile.am
blob: 67f5b7e3e79947675e1f25b765f0492bea7e704b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Doxygen processing
#
if BUILD_DOXYGEN

EXTRA_DIST = html

all-local : Doxyfile
	@DOXYGEN@ $<

clean-local:
	-$(RM) -r html/

install-data-local:
	$(MKDIR_P) $(DESTDIR)$(htmldir)
	cp -r $(srcdir)/html $(DESTDIR)$(htmldir)

uninstall-local:
	-$(RM) -r $(DESTDIR)$(htmldir)

endif