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