Changeset 1225
- Timestamp:
- Mar 12, 2008, 10:36:45 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r1223 r1225 44 44 AC_SUBST([YAT_PATCH_VERSION], [PATCH_VERSION]) 45 45 46 A M_CONFIG_HEADER([config.h])46 AC_CONFIG_HEADER([config.h]) 47 47 AM_INIT_AUTOMAKE() 48 48 … … 167 167 AC_CONFIG_FILES([Makefile 168 168 doc/Makefile 169 doc/doxygen.config 169 170 test/Makefile 170 171 test/data/Makefile -
trunk/doc/Makefile.am
r1211 r1225 37 37 pdf-local: latex-local 38 38 39 html-local: doxygen _html.config FORCE40 @doxygen doxygen_html.config;39 html-local: doxygen.config FORCE 40 (cat doxygen.config; $(ECHO) GENERATE_LATEX = NO) | doxygen -; 41 41 42 42 # this is not supported by automake - there is no target latex 43 latex-local: doxygen _latex.config FORCE44 @ doxygen doxygen_latex.config43 latex-local: doxygen.config FORCE 44 @(cat doxygen.config; $(ECHO) GENERATE_HTML = NO) | doxygen -; 45 45 46 47 doxygen.config: doxygen.config.in Makefile48 @$(ECHO) '# doxygen.config generated from doxygen.config.in.' > $@;49 @$(SED) -e 's/PROJECT_NUMBER.*= /&$(VERSION)/g' doxygen.config.in >> $@50 51 doxygen_html.config: doxygen.config Makefile52 @$(ECHO) '# doxygen_html.config generated from doxygen.config.in.' > $@;53 @$(SED) -e 's/GENERATE_LATEX.*= /&no/g' doxygen.config >> $@54 55 doxygen_latex.config: doxygen.config Makefile56 @$(ECHO) '# doxygen_latex.config generated from doxygen.config.in.' > $@;57 @$(SED) -e 's/GENERATE_HTML.*= /&no/g' doxygen.config >> $@58 46 59 47 endif -
trunk/doc/doxygen.config.in
r1211 r1225 1 # @configure_input@ 1 2 # $Id$ 2 3 … … 42 43 # by quotes) that should identify the project. 43 44 44 PROJECT_NAME = " yat"45 PROJECT_NAME = "@PACKAGE@" 45 46 46 47 # The PROJECT_NUMBER tag can be used to enter a project or revision number. … … 48 49 # if some version control system is used. 49 50 50 PROJECT_NUMBER = 51 PROJECT_NUMBER = @PACKAGE_VERSION@ 51 52 52 53 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) … … 130 131 # the base classes will not be shown. 131 132 132 INLINE_INHERITED_MEMB = NO133 INLINE_INHERITED_MEMB = YES 133 134 134 135 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full … … 245 246 # Doxygen uses this value to replace tabs by spaces in code fragments. 246 247 247 TAB_SIZE = 4248 TAB_SIZE = 2 248 249 249 250 # The GENERATE_TODOLIST tag can be used to enable (YES) or … … 309 310 # by doxygen. Possible values are YES and NO. If left blank NO is used. 310 311 311 QUIET = NO312 QUIET = YES 312 313 313 314 # The WARNINGS tag can be used to turn on/off the warning messages that are
Note: See TracChangeset
for help on using the changeset viewer.