2004-02-20 Hartmut Goebel <h.goeben@goebel-consult.de>

* docs/Doxyfile.in: modified variable replacement for possible
          change of build system
        * docs/Makefile.am: Likewise.


git-svn-id: https://svn.ibp.de/svn/capisuite/trunk/capisuite@234 4ebea2bb-67d4-0310-8558-a5799e421b66
This commit is contained in:
gernot 2004-02-20 12:48:14 +00:00
parent e408f52ccc
commit 9bd601160b
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2004-02-20 Hartmut Goebel <h.goeben@goebel-consult.de>
* docs/Doxyfile.in: modified variable replacement for possible
change of build system
* docs/Makefile.am: Likewise.
2004-02-20 Gernot Hillier <gernot@hillier.de>
* scripts/cs_helpers.pyin: fixed typo

View File

@ -23,14 +23,14 @@ PROJECT_NAME = CapiSuite
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER = @version@
PROJECT_NUMBER = @VERSION@
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
# If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used.
OUTPUT_DIRECTORY = .
OUTPUT_DIRECTORY = @docbuilddir@
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
# documentation generated by doxygen is written. Doxygen will use this

View File

@ -29,8 +29,9 @@ manual-pdf: manual-html
-rm CATALOG.local manual.aux manual.log manual.out manual.tex suse-*.dsl
reference-html: Doxyfile.in
sed -e 's,@version\@,$(VERSION),g' \
sed -e 's,@VERSION\@,$(VERSION),g' \
-e 's,@capisuite_sources\@,$(top_srcdir)/src,g' \
-e 's,@docbuilddir\@,.,g' \
-e 's,@srcdir\@,$(srcdir),g' Doxyfile.in > Doxyfile
$(doxygen) Doxyfile
if test ! -d reference; then \