3
0
Fork 0
mirror of https://github.com/fsr/ese-spiel synced 2024-11-15 12:23:11 +01:00
ese-spiel/tutoren/Makefile

22 lines
321 B
Makefile
Raw Normal View History

2015-08-06 10:23:43 +02:00
all: ps
ps: anleitung.ps zeitplan_tutoren.ps clean
pdf: anleitung.pdf zeitplan_tutoren.pdf clean
.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 *****