1 ## TODO: Doxyfile should be generated from Doxyfile.in by configure. This way
2 ## the value of PROJECT_NAME, PROJRCT_NUMBER, PERL_PATH, etc. could be
3 ## substituted in configure-time.
5 htmldir = $(datadir)/doc/@PACKAGE@-@VERSION@/html
6 ## htmldir = $(pkgdatadir)/doc
8 EXTRA_DIST = Doxyfile html coding_style.dox groups.dox mainpage.dox maps.dox
10 ## all-local: html/index.html
12 ## TODO: 'html/index.html' should depend on the files listed in Doxyfile's
14 html/index.html: Doxyfile
18 ## This is needed to make 'make dist' work even if the 'html' subdirectory
25 install-data-local: html/index.html
27 $(mkinstalldirs) $(DESTDIR)$(htmldir)
28 @dir='$(<D)'; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx ; do \
29 f="`echo $$p | sed -e 's|^.*/||'`"; \
30 echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \
31 $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f; \
34 uninstall-local: html/index.html
36 @dir='$(<D)'; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx ; do \
37 f="`echo $$p | sed -e 's|^.*/||'`"; \
38 echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \
39 rm -f $(DESTDIR)$(htmldir)/$$f; \