Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > 7b430d34159134ac0c973a9344250258 > files > 6

ghostpcl-9.05-5.mga5.i586.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)