3
0
Fork 0
mirror of https://github.com/fsr/ese-spiel synced 2025-01-19 00:21:39 +01:00
ese-spiel/aushaenge_ereignisse/Makefile
2015-08-06 10:23:43 +02:00

22 lines
336 B
Makefile

all: ps clean
ps: aushaenge.ps ereignisse.ps jobaushaenge.ps
pdf: aushaenge.pdf ereignisse.pdf jobaushaenge.pdf
.PHONY : clean distclean
clean:
-rm *.aux *.dvi *.log
distclean: clean
-rm *.ps *.pdf
%.ps : %.tex
latex $(@:.ps=.tex)
dvips $(@:.ps=.dvi) -o $@
%.pdf : %.tex
pdflatex $(@:.pdf=.tex)
# ***** end of source *****