mirror of
https://github.com/fsr/ese-spiel
synced 2024-11-15 12:23:11 +01:00
22 lines
321 B
Makefile
22 lines
321 B
Makefile
|
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 *****
|
||
|
|