]>
Commit | Line | Data |
---|---|---|
1 | # | |
2 | # File: Makefile | |
3 | # Author: Julian Smart | |
4 | # Created: 1999 | |
5 | # | |
6 | # Makefile : Builds wxWindows configuration tool manual | |
7 | # | |
8 | ||
9 | DOCDIR=.. | |
10 | LOCALDOCDIR=. | |
11 | ||
12 | DOCSOURCES=configtool.tex | |
13 | ||
14 | all: configtool.chm configtool.htb | |
15 | ||
16 | hlp: configtool.hlp | |
17 | htb: configtool.htb | |
18 | html: configtool.html | |
19 | htmlhelp: configtool.chm | |
20 | pdfrtf: configtool_rtf.rtf | |
21 | ||
22 | configtool.hlp: configtool.rtf configtool.hpj | |
23 | rm -f configtool.ph | |
24 | -hcw /E /C configtool.hpj | |
25 | ||
26 | configtool.chm : configtool.html configtool.hhp | |
27 | -hhc configtool.hhp | |
28 | # -mkdir ..\htmlhelp | |
29 | ||
30 | configtool_rtf.rtf: $(DOCSOURCES) tex2rtf.ini | |
31 | -tex2rtf configtool.tex configtool_rtf.rtf -twice -rtf | |
32 | ||
33 | configtool.rtf: $(DOCSOURCES) tex2rtf.ini | |
34 | -tex2rtf configtool.tex configtool.rtf -twice -winhelp | |
35 | ||
36 | configtool.html: $(DOCSOURCES) tex2rtf.ini | |
37 | -tex2rtf configtool.tex configtool.html -twice -html | |
38 | -rm -f *.con | |
39 | -rm -f *.ref | |
40 | -rm -f *.con | |
41 | -rm -f *.ref | |
42 | # -tweakmanual | |
43 | ||
44 | configtool.htb: configtool_contents.html | |
45 | -zip32 configtool.htb configtool*.html *.hhp *.hhk *.hhc *.gif | |
46 |