1#
2# File:		Makefile
3# Author:	Julian Smart
4# Created:	1999
5#
6# Makefile : Builds Tex2RTF manual
7#
8
9DOCDIR=..
10LOCALDOCDIR=.
11
12DOCSOURCES=tex2rtf.tex
13
14all: tex2rtf.htb
15
16hlp: tex2rtf.hlp
17htb: tex2rtf.htb
18html: tex2rtf.html
19htmlhelp: tex2rtf.chm
20pdfrtf: tex2rtf_rtf.rtf
21
22tex2rtf_rtf.rtf: $(DOCSOURCES) tex2rtf.ini
23	tex2rtf tex2rtf.tex tex2rtf_rtf.rtf -twice -rtf
24
25tex2rtf.rtf: $(DOCSOURCES) tex2rtf.ini
26	tex2rtf tex2rtf.tex tex2rtf.rtf -twice -winhelp
27
28tex2rtf_contents.html:         $(DOCSOURCES) tex2rtf.ini
29	tex2rtf tex2rtf.tex tex2rtf.html -twice -html
30	rm -f *.con
31	rm -f *.ref
32	rm -f *.con
33	rm -f *.ref
34
35tex2rtf.htb:         tex2rtf_contents.html
36	zip tex2rtf.htb tex2rtf*.html *.hhp *.hhk *.hhc *.gif
37