2002-08-02 Theodore A. Roth * doc/api/Makefile.am: Remove use of directories as targets. * doc/api/Makefile.am: Remove us of `${MAKE} -C` to improve portability. * doc/api/doxygen.config.in: Changed html and latex output dirs to avr-libc-api and latex_src respectively. Index: doc/api/Makefile.am =================================================================== RCS file: /cvsroot/avr-libc/avr-libc/doc/api/Makefile.am,v retrieving revision 1.5 diff -u -r1.5 Makefile.am --- doc/api/Makefile.am 2 Aug 2002 17:46:15 -0000 1.5 +++ doc/api/Makefile.am 2 Aug 2002 17:55:16 -0000 @@ -64,7 +64,7 @@ rm -rf $(DOC_INST_DIR) clean-local: - rm -rf html latex man + rm -rf avr-libc-api latex_src man # Rule for generating PDF output pdf: $(TARGET_DOX_PDF) @@ -83,12 +83,12 @@ doxygen doxygen.config dox-pdf: latex - ${MAKE} -C latex pdf - cp latex/refman.pdf avr-libc-api.pdf + cd latex_src && ${MAKE} pdf + cp latex_src/refman.pdf avr-libc-api.pdf dox-ps: latex - ${MAKE} -C latex ps - cp latex/refman.ps avr-libc-api.ps + cd latex_src && ${MAKE} ps + cp latex_src/refman.ps avr-libc-api.ps install-dox-html: html $(mkinstalldirs) $(DOC_INST_DIR)/html @@ -100,12 +100,12 @@ install-dox-pdf: dox-pdf $(mkinstalldirs) $(DOC_INST_DIR) - $(INSTALL_DATA) latex/refman.pdf $(DOC_INST_DIR)/avr-libc-api.pdf + $(INSTALL_DATA) latex_src/refman.pdf $(DOC_INST_DIR)/avr-libc-api.pdf install-dox-ps: dox-ps $(mkinstalldirs) $(DOC_INST_DIR) - $(INSTALL_DATA) latex/refman.ps $(DOC_INST_DIR)/avr-libc-api.ps + $(INSTALL_DATA) latex_src/refman.ps $(DOC_INST_DIR)/avr-libc-api.ps -.PHONY: ps pdf dox dox-pdf install-pdf install-html install-ps install-dox-html \ - install-dox-ps install-dox-pdf +.PHONY: html latex ps pdf dox dox-pdf install-pdf install-html install-ps \ + install-dox-html install-dox-ps install-dox-pdf Index: doc/api/doxygen.config.in =================================================================== RCS file: /cvsroot/avr-libc/avr-libc/doc/api/doxygen.config.in,v retrieving revision 1.2 diff -u -r1.2 doxygen.config.in --- doc/api/doxygen.config.in 26 Jul 2002 05:49:44 -0000 1.2 +++ doc/api/doxygen.config.in 2 Aug 2002 17:55:16 -0000 @@ -459,7 +459,7 @@ # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. -HTML_OUTPUT = html +HTML_OUTPUT = avr-libc-api # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank @@ -556,7 +556,7 @@ # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. -LATEX_OUTPUT = latex +LATEX_OUTPUT = latex_src # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be invoked. If left blank `latex' will be used as the default command name.