First commit

This commit is contained in:
2016-06-15 14:40:15 +02:00
commit c05745a3de
258 changed files with 168267 additions and 0 deletions

13
Implementierung/Makefile Normal file
View File

@@ -0,0 +1,13 @@
include ../common.mk
all: Handbuch.pdf
Handbuch.pdf: Handbuch.md
$(PANDOC) $^ --latex-engine=xelatex -o $@
clean:
$(RM) Handbuch.pdf
.PHONY: all clean