]>
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 | ||
c1bf6734 | 14 | all: chm htb hlp html htmlhelp pdfrtf |
56d34922 | 15 | |
c1bf6734 CE |
16 | chm: tex2rtf.chm |
17 | hlp: tex2rtf.hlp | |
18 | htb: tex2rtf.htb | |
56d34922 JS |
19 | html: tex2rtf.html |
20 | htmlhelp: tex2rtf.chm | |
21 | pdfrtf: tex2rtf_rtf.rtf | |
22 | ||
23 | tex2rtf.hlp: tex2rtf.rtf tex2rtf.hpj | |
24 | -erase tex2rtf.ph | |
25 | hcw /E /C tex2rtf.hpj | |
26 | ||
27 | tex2rtf.chm : tex2rtf.html tex2rtf.hhp | |
28 | -hhc tex2rtf.hhp | |
29 | ||
30 | tex2rtf_rtf.rtf: $(DOCSOURCES) tex2rtf.ini | |
31 | -start /w tex2rtf tex2rtf.tex tex2rtf_rtf.rtf -twice -rtf | |
32 | ||
33 | tex2rtf.rtf: $(DOCSOURCES) tex2rtf.ini | |
34 | -start /w tex2rtf tex2rtf.tex tex2rtf.rtf -twice -winhelp | |
35 | ||
36 | tex2rtf.html: $(DOCSOURCES) tex2rtf.ini | |
37 | -start /w tex2rtf tex2rtf.tex tex2rtf.html -twice -html | |
38 | -erase *.con | |
39 | -erase *.ref | |
40 | -erase *.con | |
41 | -erase *.ref | |
7d731786 CE |
42 | -mkdir html |
43 | -copy *.html html | |
44 | -copy *.gif html | |
56d34922 JS |
45 | |
46 | tex2rtf.htb: tex2rtf_contents.html | |
81769ae0 | 47 | -zip tex2rtf.htb tex2rtf*.html *.hhp *.hhk *.hhc *.gif |
56d34922 | 48 |