diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-07-21 10:40:14 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-07-28 11:47:23 (GMT) |
commit | 38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212 (patch) | |
tree | c162a1ab1c375aa21c4f137ec30ae765b67527a4 /doc/Makefile.in | |
parent | 10ab1d5dddd63b5e7b3a65da8eb8a6416be7c914 (diff) | |
download | Doxygen-38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212.zip Doxygen-38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212.tar.gz Doxygen-38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212.tar.bz2 |
config.xml is now used to generate configoptions.cpp and config.doc
Diffstat (limited to 'doc/Makefile.in')
-rw-r--r-- | doc/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in index 591e327..cf1e461 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -12,7 +12,7 @@ # Documents produced by Doxygen are derivative works derived from the # input used in their production; they are not affected by this license. -all: language FORCE +all: language config.doc FORCE DOXYGEN_DOCDIR=$(DOXYDOCS); \ export DOXYGEN_DOCDIR; \ VERSION=$(VERSION) ; \ @@ -33,4 +33,7 @@ language: language.doc language.doc: $(wildcard ../src/translator*.h) maintainers.txt language.tpl translator.py python translator.py +config.doc: ../src/config.xml ../src/configgen.py + python ../src/configgen.py -doc ../src/config.xml > config.doc + FORCE: |