Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 653f38261fe66656c734a67cbe5a810a > files > 6

ghostpcl-9.05-3.mga4.x86_64.rpm

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)