Rev | Line | |
---|
[1671] | 1 | htmldir = $(datadir)/doc/$(PACKAGE)/html |
---|
[542] | 2 | |
---|
[2108] | 3 | EXTRA_DIST += \ |
---|
[2119] | 4 | doc/Makefile \ |
---|
[2118] | 5 | doc/Doxyfile.in \ |
---|
[2108] | 6 | doc/html \ |
---|
| 7 | doc/icons/geom/ftv2doc.png \ |
---|
| 8 | doc/icons/geom/ftv2folderclosed.png \ |
---|
| 9 | doc/icons/geom/ftv2folderopen.png \ |
---|
[2196] | 10 | doc/algorithms.dox \ |
---|
[2108] | 11 | doc/coding_style.dox \ |
---|
| 12 | doc/developers_interface.dox \ |
---|
| 13 | doc/dirs.dox \ |
---|
| 14 | doc/getstart.dox \ |
---|
| 15 | doc/graph-adaptors.dox \ |
---|
| 16 | doc/graph_io.dox \ |
---|
| 17 | doc/graphs.dox \ |
---|
| 18 | doc/groups.dox \ |
---|
[2216] | 19 | doc/lemon_file_format.dox \ |
---|
[2108] | 20 | doc/license.dox \ |
---|
| 21 | doc/mainpage.dox \ |
---|
| 22 | doc/maps.dox \ |
---|
[2196] | 23 | doc/maps1.dox \ |
---|
| 24 | doc/maps2.dox \ |
---|
[2108] | 25 | doc/named-param.dox \ |
---|
| 26 | doc/namespaces.dox \ |
---|
| 27 | doc/quicktour.dox \ |
---|
[2216] | 28 | doc/read_write_bg.dox \ |
---|
[2108] | 29 | doc/ugraphs.dox |
---|
[1177] | 30 | |
---|
[2108] | 31 | doc: |
---|
[1450] | 32 | if test ${doxygen_found} = yes; then \ |
---|
[2108] | 33 | cd doc; \ |
---|
[1450] | 34 | doxygen Doxyfile; \ |
---|
[2108] | 35 | cd ..; \ |
---|
| 36 | cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \ |
---|
[1450] | 37 | fi |
---|
[542] | 38 | |
---|
[2108] | 39 | doc-clean: |
---|
| 40 | if test ${doxygen_found} = yes; then \ |
---|
| 41 | rm -rf doc/html; \ |
---|
| 42 | rm -f doc/doxygen.log; \ |
---|
| 43 | cd doc; \ |
---|
| 44 | doxygen Doxyfile; \ |
---|
| 45 | cd ..; \ |
---|
| 46 | cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \ |
---|
| 47 | fi |
---|
[542] | 48 | |
---|
| 49 | clean-local: |
---|
[2108] | 50 | -rm -rf doc/html |
---|
| 51 | -rm -f doc/doxygen.log |
---|
[542] | 52 | |
---|
[2108] | 53 | doc/html: |
---|
| 54 | $(MAKE) $(AM_MAKEFLAGS) doc-clean |
---|
| 55 | |
---|
[2127] | 56 | if WANT_DOC |
---|
| 57 | |
---|
[2108] | 58 | install-data-local: doc/html |
---|
[542] | 59 | @$(NORMAL_INSTALL) |
---|
| 60 | $(mkinstalldirs) $(DESTDIR)$(htmldir) |
---|
[2108] | 61 | @dir='doc/html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \ |
---|
[542] | 62 | f="`echo $$p | sed -e 's|^.*/||'`"; \ |
---|
| 63 | echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \ |
---|
| 64 | $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f; \ |
---|
| 65 | done |
---|
| 66 | |
---|
[2108] | 67 | uninstall-local: doc/html |
---|
[542] | 68 | @$(NORMAL_UNINSTALL) |
---|
[2108] | 69 | @dir='doc/html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \ |
---|
[542] | 70 | f="`echo $$p | sed -e 's|^.*/||'`"; \ |
---|
| 71 | echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \ |
---|
| 72 | rm -f $(DESTDIR)$(htmldir)/$$f; \ |
---|
| 73 | done |
---|
[2108] | 74 | |
---|
[2127] | 75 | endif WANT_DOC |
---|
| 76 | |
---|
[2108] | 77 | .PHONY: doc doc-clean |
---|
Note: See
TracBrowser
for help on using the repository browser.