blob: fc2598886ede4863e46f84cc0996a5db470cc6aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DOCS=ghostpdl.dvi ghostpdl.pdf ghostpdl.txt
# latex 2 dvi
%.dvi : %.tex
latex $<
# latex 2 pdf
%.pdf : %.tex
pdflatex $<
# pdf 2 text
%.txt : %.pdf
pdftotext $<
all: $(DOCS)
clean:
rm -f $(DOCS)
|