3
0
Fork 0
mirror of https://github.com/fsr/ese-spiel synced 2025-05-21 20:38:47 +02:00

add actual rules und materials

This commit is contained in:
XD1990 2015-08-06 10:23:43 +02:00
parent 6da39e9f54
commit a51e7e1a22
77 changed files with 42230 additions and 0 deletions

22
pruefungsamt/Makefile Normal file
View file

@ -0,0 +1,22 @@
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 *****