Makefile.win_nmake.in 1.22 KB
Newer Older
1
#
2
# 
3
#
Dimitri van Heesch's avatar
Dimitri van Heesch committed
4
# Copyright (C) 1997-2013 by Dimitri van Heesch.
5 6 7 8 9 10 11
#
# Permission to use, copy, modify, and distribute this software and its
# documentation under the terms of the GNU General Public License is hereby 
# granted. No representations are made about the suitability of this software 
# for any purpose. It is provided "as is" without express or implied warranty.
# See the GNU General Public License for more details.
#
Dimitri van Heesch's avatar
Dimitri van Heesch committed
12 13
# Documents produced by Doxygen are derivative works derived from the
# input used in their production; they are not affected by this license.
14

Dimitri van Heesch's avatar
Dimitri van Heesch committed
15
all: language FORCE
16
	@xcopy /s /q /i ..\examples ..\html\examples
Dimitri van Heesch's avatar
Dimitri van Heesch committed
17
	set DOXYGEN_DOCDIR=.
18 19 20 21 22 23 24
	set VERSION=$(VERSION)
	$(DOXYGEN)\bin\doxygen
	@del ..\latex\refman.tex
	@copy doxygen_logo*.gif ..\html
	@copy Makefile.latex ..\latex\Makefile
	@sed -e "s/\$$VERSION/$(VERSION)/g" doxygen_manual.tex >..\latex\doxygen_manual.tex
	@sed -e "s/\$$VERSION/$(VERSION)/g" doxygen.sty >..\latex\doxygen.sty 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
25
	@epstopdf doxygen_logo.eps --outfile=..\latex\doxygen_logo.pdf
26 27 28

clean: 
	del /s /q ..\html ..\latex
29 30
	del translator_report.txt *.bak

Dimitri van Heesch's avatar
Dimitri van Heesch committed
31
language: language.doc 
32

Dimitri van Heesch's avatar
Dimitri van Heesch committed
33
language.doc: maintainers.txt language.tpl translator.py
34 35
	set DOXYGEN_DOCDIR=.
	set VERSION=$(VERSION)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
36
	python translator.py
37 38

FORCE: