mirror of
https://github.com/fsr/ese-spiel
synced 2025-01-19 00:21:39 +01:00
23 lines
286 B
Makefile
23 lines
286 B
Makefile
|
all: ps clean
|
||
|
|
||
|
ps: studi_protokoll.ps
|
||
|
pdf: studi_protokoll.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 *****
|
||
|
|