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 @xcopy /s /q /i ..\examples ..\html\examples |
|
17 set DOXYGEN_DOCDIR=. |
|
18 set VERSION=$(VERSION) |
|
19 $(DOXYGEN)\bin\doxygen |
|
20 @del ..\latex\refman.tex |
|
21 @copy doxygen_logo*.gif ..\html |
|
22 @copy Makefile.latex ..\latex\Makefile |
|
23 @sed -e "s/\$$VERSION/$(VERSION)/g" doxygen_manual.tex >..\latex\doxygen_manual.tex |
|
24 @sed -e "s/\$$VERSION/$(VERSION)/g" doxygen.sty >..\latex\doxygen.sty |
|
25 @epstopdf doxygen_logo.eps --outfile=..\latex\doxygen_logo.pdf |
|
26 |
|
27 clean: |
|
28 del /s /q ..\html ..\latex |
|
29 del translator_report.txt *.bak |
|
30 |
|
31 language: language.doc |
|
32 |
|
33 language.doc: maintainers.txt language.tpl translator.py |
|
34 set DOXYGEN_DOCDIR=. |
|
35 set VERSION=$(VERSION) |
|
36 python translator.py |
|
37 |
|
38 FORCE: |