]>
Commit | Line | Data |
---|---|---|
306dfc2b JS |
1 | # |
2 | # File: Makefile | |
3 | # Author: Julian Smart | |
4 | # Created: 1998 | |
5 | # | |
6 | # "%W% %G%" | |
7 | # | |
8 | # Makefile : Builds OGL Studio manual | |
9 | # | |
10 | ||
11 | DOCDIR=. | |
12 | LOCALDOCDIR=. | |
13 | ||
14 | DOCSOURCES=studio.tex | |
15 | ||
16 | hlp: studio.hlp | |
17 | html: studio.htm | |
18 | rtf: studio.rtf | |
19 | ||
20 | studio.hlp: studio.rtf studio.hpj | |
21 | -erase studio.ph | |
22 | hcw /E /C studio.hpj | |
23 | ||
24 | studio.rtf: $(DOCSOURCES) | |
25 | -start /w tex2rtf studio.tex studio.rtf -twice -winhelp | |
26 | ||
27 | studio.htm: $(DOCSOURCES) | |
28 | -start /w tex2rtf studio.tex studio.htm -twice -html | |
29 |