equal
deleted
inserted
replaced
|
1 # |
|
2 # |
|
3 # |
|
4 # Copyright (C) 1997-2008 by Dimitri van Heesch. |
|
5 # |
|
6 # Permission to use, copy, modify, and distribute this software and its |
|
7 # documentation under the terms of the GNU General Public License is hereby |
|
8 # granted. No representations are made about the suitability of this software |
|
9 # for any purpose. It is provided "as is" without express or implied warranty. |
|
10 # See the GNU General Public License for more details. |
|
11 # |
|
12 # Documents produced by Doxygen are derivative works derived from the |
|
13 # input used in their production; they are not affected by this license. |
|
14 |
|
15 all: language FORCE |
|
16 DOXYGEN_DOCDIR=$(DOXYDOCS); \ |
|
17 export DOXYGEN_DOCDIR; \ |
|
18 VERSION=$(VERSION) ; \ |
|
19 export VERSION; \ |
|
20 $(DOXYGEN)/bin/doxygen |
|
21 @rm -f ../latex/refman.tex |
|
22 @cp doxygen_logo*.gif ../html |
|
23 @cp Makefile.latex ../latex/Makefile |
|
24 @sed -e "s/\$$VERSION/$(VERSION)/g" doxygen_manual.tex >../latex/doxygen_manual.tex |
|
25 @sed -e "s/\$$VERSION/$(VERSION)/g" doxygen.sty >../latex/doxygen.sty |
|
26 @epstopdf doxygen_logo.eps --outfile=../latex/doxygen_logo.pdf |
|
27 |
|
28 clean: |
|
29 rm -rf ../html ../latex *.bak |
|
30 |
|
31 language: language.doc |
|
32 |
|
33 language.doc: $(wildcard ../src/translator*.h) maintainers.txt language.tpl translator.py |
|
34 python translator.py |
|
35 |
|
36 FORCE: |