Changeset 1400:d12508c2a007 in lemon-0.x
- Timestamp:
- 05/02/05 07:49:33 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1861
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r1380 r1400 20 20 CXXFLAGS="$CXXFLAGS -Wall -W" 21 21 fi 22 23 AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no]) 22 24 23 25 dnl This is tested only with gcc-3.4 and icc-8.0 -
doc/Doxyfile.in
r1370 r1400 1031 1031 # is run, you must also specify the path to the tagfile here. 1032 1032 1033 TAGFILES = 1033 TAGFILES = "libstdc++.tag = http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" 1034 1034 1035 1035 # When a file name is specified after GENERATE_TAGFILE, doxygen will create 1036 1036 # a tag file that is based on the input files it reads. 1037 1037 1038 GENERATE_TAGFILE = 1038 GENERATE_TAGFILE = html/lemon.tag 1039 1039 1040 1040 # If the ALLEXTERNALS tag is set to YES all external classes will be listed … … 1048 1048 # be listed. 1049 1049 1050 EXTERNAL_GROUPS = YES1050 EXTERNAL_GROUPS = NO 1051 1051 1052 1052 # The PERL_PATH should be the absolute path and name of the perl script -
doc/Makefile.am
r1310 r1400 17 17 ## INPUT variable. 18 18 html/index.html: 19 -rm -rf html 20 doxygen Doxyfile 19 if test ${doxygen_found} = yes; then doxygen Doxyfile; fi 21 20 22 21 ## This is needed to make 'make dist' work even if the 'html' subdirectory … … 30 29 @$(NORMAL_INSTALL) 31 30 $(mkinstalldirs) $(DESTDIR)$(htmldir) 32 @dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx ; do \31 @dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \ 33 32 f="`echo $$p | sed -e 's|^.*/||'`"; \ 34 33 echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \ … … 38 37 uninstall-local: html/index.html 39 38 @$(NORMAL_UNINSTALL) 40 @dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx ; do \39 @dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \ 41 40 f="`echo $$p | sed -e 's|^.*/||'`"; \ 42 41 echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \
Note: See TracChangeset
for help on using the changeset viewer.