Initial commit of master's thesis

This is the version I submitted to RWTH Aachen University at November 9,
2018.
This commit is contained in:
2018-11-12 12:56:59 +01:00
parent ffbcce77f9
commit af25b4b828
1136 changed files with 127398252 additions and 2 deletions

12
images/Makefile Normal file
View File

@@ -0,0 +1,12 @@
SRCS = $(wildcard *.odg)
PDFS = $(patsubst %.odg,%.pdf,$(SRCS))
all: $(PDFS)
%.pdf: %.odg
libreoffice --convert-to pdf $<
clean:
rm -f *.pdf
.PHONE: clean