Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame^] | 1 | PAPER = a4 |
2 | MKHOWTO = python tools/mkhowto --$(PAPER) | ||||
3 | |||||
4 | default: html | ||||
5 | |||||
6 | all: ps html text dvi | ||||
7 | |||||
8 | dvi ps text: pyOpenSSL.tex | ||||
9 | $(MKHOWTO) --$@ $^ | ||||
10 | |||||
11 | html: pyOpenSSL.tex | ||||
12 | $(MKHOWTO) --html --iconserver . $^ | ||||
13 | -rm -rf html | ||||
14 | mv pyOpenSSL html | ||||
15 | |||||
16 | clean: | ||||
17 | rm -rf html pyOpenSSL.dvi pyOpenSSL.ps pyOpenSSL.txt \ | ||||
18 | pyOpenSSL.l2h pyOpenSSL.how | ||||
19 | |||||
20 | .PHONY: default all html dvi ps text clean |