diff options
| author | Skip Montanaro <[email protected]> | 2021-02-16 14:40:46 -0600 |
|---|---|---|
| committer | Skip Montanaro <[email protected]> | 2021-02-16 14:40:46 -0600 |
| commit | a19a216bc60160c162e616145ef091dd18ce4e61 (patch) | |
| tree | fa4bdff21f9b04a125c84a2bfab8a1c738359e15 /doc/Makefile | |
| download | python-0.9.1-patched-QoL-a19a216bc60160c162e616145ef091dd18ce4e61.tar.xz python-0.9.1-patched-QoL-a19a216bc60160c162e616145ef091dd18ce4e61.zip | |
Python 0.9.1 as posted in alt.sources
Diffstat (limited to 'doc/Makefile')
| -rw-r--r-- | doc/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 0000000..f2a83bf --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,47 @@ +# Makefile for Python documentation. + +LATEX= latex +DVIPS= dvips +TEXPREVIEW= xdvi + +PRINT= lpr + +tut: tut.dvi + $(TEXPREVIEW) tut + +tut.dvi tut.ps: tut.toc tut.tex myformat.sty + +mod: mod.dvi + $(TEXPREVIEW) mod + +mod.dvi mod.ps: mod.toc mod.tex mod1.tex mod2.tex mod3.tex myformat.sty + +ALL= tut.ps mod.ps + +all: $(ALL) + +print: $(ALL) + $(PRINT) $(ALL) + +clean: + rm -f *.dvi *.aux *.toc *.log *.ps core [#@,]* *~ + +.SUFFIXES: # Remove default suffixes + +.SUFFIXES: .tex .aux .toc .dvi .ps + +.tex.aux: + $(LATEX) $* + +.tex.toc: + $(LATEX) $* + +.tex.dvi: + $(LATEX) $* + +.dvi.ps: + $(DVIPS) $* >$*.ps + +.tex.ps: + $(LATEX) $* + $(DVIPS) $* >$*.ps |
