Changeset 2108:f2c532541730 in lemon-0.x for doc/Makefile.am
- Timestamp:
- 06/22/06 20:20:25 (17 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2802
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/Makefile.am
r2071 r2108 1 1 htmldir = $(datadir)/doc/$(PACKAGE)/html 2 2 3 EXTRA_DIST = \4 html \5 icons/geom/ftv2doc.png \6 icons/geom/ftv2folderclosed.png \7 icons/geom/ftv2folderopen.png \8 coding_style.dox \9 d evelopers_interface.dox \10 d irs.dox \11 getstart.dox \12 graph-adaptors.dox \13 graph_io.dox \14 graphs.dox \15 groups.dox \16 license.dox \17 mainpage.dox \18 maps.dox \19 named-param.dox \20 namespaces.dox \21 quicktour.dox \22 ugraphs.dox3 EXTRA_DIST += \ 4 doc/html \ 5 doc/icons/geom/ftv2doc.png \ 6 doc/icons/geom/ftv2folderclosed.png \ 7 doc/icons/geom/ftv2folderopen.png \ 8 doc/coding_style.dox \ 9 doc/developers_interface.dox \ 10 doc/dirs.dox \ 11 doc/getstart.dox \ 12 doc/graph-adaptors.dox \ 13 doc/graph_io.dox \ 14 doc/graphs.dox \ 15 doc/groups.dox \ 16 doc/license.dox \ 17 doc/mainpage.dox \ 18 doc/maps.dox \ 19 doc/named-param.dox \ 20 doc/namespaces.dox \ 21 doc/quicktour.dox \ 22 doc/ugraphs.dox 23 23 24 html/index.html:24 doc: 25 25 if test ${doxygen_found} = yes; then \ 26 cd doc; \ 26 27 doxygen Doxyfile; \ 27 cp $(srcdir)/icons/geom/ftv2* html; \ 28 cd ..; \ 29 cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \ 28 30 fi 29 31 30 html: html/index.html 32 doc-clean: 33 if test ${doxygen_found} = yes; then \ 34 rm -rf doc/html; \ 35 rm -f doc/doxygen.log; \ 36 cd doc; \ 37 doxygen Doxyfile; \ 38 cd ..; \ 39 cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \ 40 fi 31 41 32 42 clean-local: 33 -rm -rf html 43 -rm -rf doc/html 44 -rm -f doc/doxygen.log 34 45 35 install-data-local: html/index.html 46 doc/html: 47 $(MAKE) $(AM_MAKEFLAGS) doc-clean 48 49 install-data-local: doc/html 36 50 @$(NORMAL_INSTALL) 37 51 $(mkinstalldirs) $(DESTDIR)$(htmldir) 38 @dir=' html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \52 @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 \ 39 53 f="`echo $$p | sed -e 's|^.*/||'`"; \ 40 54 echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \ … … 42 56 done 43 57 44 uninstall-local: html/index.html58 uninstall-local: doc/html 45 59 @$(NORMAL_UNINSTALL) 46 @dir=' html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \60 @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 \ 47 61 f="`echo $$p | sed -e 's|^.*/||'`"; \ 48 62 echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \ 49 63 rm -f $(DESTDIR)$(htmldir)/$$f; \ 50 64 done 65 66 .PHONY: doc doc-clean
Note: See TracChangeset
for help on using the changeset viewer.