From 5c05aca793147b7cf510e2c2e45971a89bf37785 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 13:53:26 +0200 Subject: [PATCH 01/18] put .PHONY rule at top of Makefile --- ThProg/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ThProg/Makefile b/ThProg/Makefile index 75f29bc..d2ee4d9 100644 --- a/ThProg/Makefile +++ b/ThProg/Makefile @@ -1,3 +1,5 @@ +.PHONY: all continuous cleanup single clean rmpdf + all: single @-pdfunite Polynomordnung.pdf Konfluenz.pdf SystemF.pdf Koinduktion_reduktion.pdf Strukturelle_Induktion.pdf PumpingLemma.pdf ThProgCheatsheet.pdf @@ -18,5 +20,3 @@ cleanup: %.pdf: %.tex @latexmk -quiet -jobname=$(@:%.pdf=%) -pdf -halt-on-error $< 1>/dev/null - -.PHONY: all continuous cleanup single clean rmpdf From eff3f8b12e16110dc6523325cd1f06424138d85b Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 13:53:59 +0200 Subject: [PATCH 02/18] remove trailing whitespace --- ThProg/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ThProg/Makefile b/ThProg/Makefile index d2ee4d9..f366443 100644 --- a/ThProg/Makefile +++ b/ThProg/Makefile @@ -10,9 +10,9 @@ continuous: $(PDF).continuous clean: cleanup rmpdf all rmpdf: - @-rm -f *.pdf + @-rm -f *.pdf -cleanup: +cleanup: @-rm -f *.aux *.fdb_latexmk *.fls *.log %.continuous: %.pdf From 09bf904c12678f251ee24c341ad730e493517da8 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 13:58:19 +0200 Subject: [PATCH 03/18] don't use nonstopmode --- FFI/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFI/Makefile b/FFI/Makefile index 0ba6175..1917948 100644 --- a/FFI/Makefile +++ b/FFI/Makefile @@ -1,4 +1,4 @@ all: - latexmk -pdf -interaction=nonstopmode ForensInf2_Zusammenfassung.tex + latexmk -pdf ForensInf2_Zusammenfassung.tex .PHONY: all From eb99f7263465add584fcec81c06e83f62452c6f6 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 13:59:09 +0200 Subject: [PATCH 04/18] clean should not depend on all --- ThProg/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ThProg/Makefile b/ThProg/Makefile index f366443..5156e5b 100644 --- a/ThProg/Makefile +++ b/ThProg/Makefile @@ -7,7 +7,7 @@ single: Konfluenz.pdf Koinduktion_reduktion.pdf Strukturelle_Induktion.pdf Polyn continuous: $(PDF).continuous -clean: cleanup rmpdf all +clean: cleanup rmpdf rmpdf: @-rm -f *.pdf From 8e654980176ed684d404a0ee00bc00409e7203e4 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 13:59:37 +0200 Subject: [PATCH 05/18] remove trailing whitespace --- RK/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RK/Makefile b/RK/Makefile index 9cd0b53..8ff217c 100644 --- a/RK/Makefile +++ b/RK/Makefile @@ -1,13 +1,13 @@ -all: KlausurLV_SS14_September2014.tex KlausurLV_WS1415_Maerz2015.tex +all: KlausurLV_SS14_September2014.tex KlausurLV_WS1415_Maerz2015.tex continuous: $(PDF).continuous clean: cleanup rmpdf all rmpdf: - @-rm -f *.pdf + @-rm -f *.pdf -cleanup: +cleanup: @-rm -f *.aux *.fdb_latexmk *.fls *.log %.continuous: %.pdf From 6f8089f5bea598d1c01bb25674cc4021b36dc422 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:00:33 +0200 Subject: [PATCH 06/18] remove trailing whitespace --- AuD/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/AuD/Makefile b/AuD/Makefile index 092000a..c9d52e6 100755 --- a/AuD/Makefile +++ b/AuD/Makefile @@ -1,8 +1,8 @@ PDF = document -all: $(PDF) +all: $(PDF) -continuous: $(PDF).continuous +continuous: $(PDF).continuous %.continuous: %.pdf latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex @@ -15,8 +15,8 @@ $(PDF): $(PDF).pdf clean: latexmk -c -f $(PDF).tex -distclean: +distclean: latexmk -C -f $(PDF).tex - rm -f $(PDF).pdf + rm -f $(PDF).pdf .PHONY: all clean distclean $(PDF) continuous From 58a14a3c01399d5c9a961bb9ea57b9319f0a3de5 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:00:59 +0200 Subject: [PATCH 07/18] clean should not depend on all --- RK/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RK/Makefile b/RK/Makefile index 8ff217c..3329e97 100644 --- a/RK/Makefile +++ b/RK/Makefile @@ -2,7 +2,7 @@ all: KlausurLV_SS14_September2014.tex KlausurLV_WS1415_Maerz2015.tex continuous: $(PDF).continuous -clean: cleanup rmpdf all +clean: cleanup rmpdf rmpdf: @-rm -f *.pdf From 552d118a6463c98337a0ee48d284e6bf058908d0 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:03:17 +0200 Subject: [PATCH 08/18] remove trailing whitespace --- GTI/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GTI/Makefile b/GTI/Makefile index 8c38d03..3a10442 100644 --- a/GTI/Makefile +++ b/GTI/Makefile @@ -1,8 +1,8 @@ PDF = document -all: $(PDF) +all: $(PDF) -continuous: $(PDF).continuous +continuous: $(PDF).continuous %.continuous: %.pdf latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex @@ -15,8 +15,8 @@ $(PDF): $(PDF).pdf clean: latexmk -c -f $(PDF).tex -distclean: +distclean: latexmk -C -f $(PDF).tex - rm -f $(PDF).pdf + rm -f $(PDF).pdf .PHONY: all clean distclean $(PDF) continuous From d34cf4c9a5b783a851c7c2c85550bbb5e7a77ec6 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:03:26 +0200 Subject: [PATCH 09/18] remove trailing whitespace --- IDB/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDB/Makefile b/IDB/Makefile index ca8865e..06e51cc 100644 --- a/IDB/Makefile +++ b/IDB/Makefile @@ -1,4 +1,4 @@ -SUBDIRS := idb_skript_greeny klausur_ss16 klausur_ws1516 +SUBDIRS := idb_skript_greeny klausur_ss16 klausur_ws1516 all: $(SUBDIRS) $(SUBDIRS): From 126093c7ed903bb3eaf522ad0e1f7f890a533d82 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:03:34 +0200 Subject: [PATCH 10/18] remove trailing whitespace --- IDB/idb_skript_greeny/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IDB/idb_skript_greeny/Makefile b/IDB/idb_skript_greeny/Makefile index ed0a8ed..531afb4 100644 --- a/IDB/idb_skript_greeny/Makefile +++ b/IDB/idb_skript_greeny/Makefile @@ -1,8 +1,8 @@ PDF = IDB -all: $(PDF) +all: $(PDF) -continuous: $(PDF).continuous +continuous: $(PDF).continuous %.continuous: %.pdf latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex From d7e60cb972615bfe295ed5bc0a5d6816973fbfe4 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:03:43 +0200 Subject: [PATCH 11/18] remove trailing whitespace --- IDB/klausur_ss16/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IDB/klausur_ss16/Makefile b/IDB/klausur_ss16/Makefile index d1bcf3e..142e0a6 100644 --- a/IDB/klausur_ss16/Makefile +++ b/IDB/klausur_ss16/Makefile @@ -1,13 +1,13 @@ all: klausur_idb_SS16.pdf solutions -solutions: +solutions: @pdflatex --jobname=klausur_idb_SS16_ML "\def\withsolutions{1} \input{klausur_idb_SS16.tex}" continuous: $(PDF).continuous clean: cleanup all -cleanup: +cleanup: @-rm -f *.aux *.fdb_latexmk *.fls *.log %.continuous: %.pdf From 73db8a2f0eaa54fac1538f1d6a04e13a905bbf36 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:03:52 +0200 Subject: [PATCH 12/18] remove trailing whitespace --- IDB/klausur_ws1516/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IDB/klausur_ws1516/Makefile b/IDB/klausur_ws1516/Makefile index 2e6cf36..4fc541c 100644 --- a/IDB/klausur_ws1516/Makefile +++ b/IDB/klausur_ws1516/Makefile @@ -1,10 +1,10 @@ -all: klausur_idb_WS1516.pdf +all: klausur_idb_WS1516.pdf continuous: $(PDF).continuous clean: cleanup all -cleanup: +cleanup: @-rm -f *.aux *.fdb_latexmk *.fls *.log %.continuous: %.pdf From d1ae89bdd640e6e3b445ba4750d8eacdb6143333 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:04:16 +0200 Subject: [PATCH 13/18] remove trailing whitespace --- KonzMod/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/KonzMod/Makefile b/KonzMod/Makefile index 092000a..c9d52e6 100644 --- a/KonzMod/Makefile +++ b/KonzMod/Makefile @@ -1,8 +1,8 @@ PDF = document -all: $(PDF) +all: $(PDF) -continuous: $(PDF).continuous +continuous: $(PDF).continuous %.continuous: %.pdf latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex @@ -15,8 +15,8 @@ $(PDF): $(PDF).pdf clean: latexmk -c -f $(PDF).tex -distclean: +distclean: latexmk -C -f $(PDF).tex - rm -f $(PDF).pdf + rm -f $(PDF).pdf .PHONY: all clean distclean $(PDF) continuous From 9d583fc4f1d9724ddaea0fe0aa0156b53acbd365 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:04:25 +0200 Subject: [PATCH 14/18] remove trailing whitespace --- MatheC1/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MatheC1/Makefile b/MatheC1/Makefile index 092000a..c9d52e6 100644 --- a/MatheC1/Makefile +++ b/MatheC1/Makefile @@ -1,8 +1,8 @@ PDF = document -all: $(PDF) +all: $(PDF) -continuous: $(PDF).continuous +continuous: $(PDF).continuous %.continuous: %.pdf latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex @@ -15,8 +15,8 @@ $(PDF): $(PDF).pdf clean: latexmk -c -f $(PDF).tex -distclean: +distclean: latexmk -C -f $(PDF).tex - rm -f $(PDF).pdf + rm -f $(PDF).pdf .PHONY: all clean distclean $(PDF) continuous From 9699396b0828463462546df3daf914a60f3b6587 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:04:37 +0200 Subject: [PATCH 15/18] remove trailing whitespace --- MatheC4/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MatheC4/Makefile b/MatheC4/Makefile index b0a4b0f..0ddd503 100644 --- a/MatheC4/Makefile +++ b/MatheC4/Makefile @@ -1,8 +1,8 @@ PDF = MaC4Cheatsheet -all: $(PDF) +all: $(PDF) -continuous: $(PDF).continuous +continuous: $(PDF).continuous %.continuous: %.pdf latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex @@ -15,8 +15,8 @@ $(PDF): $(PDF).pdf clean: latexmk -c -f $(PDF).tex -distclean: +distclean: latexmk -C -f $(PDF).tex - rm -f $(PDF).pdf + rm -f $(PDF).pdf .PHONY: all clean distclean $(PDF) continuous From ab816f3e28a5ea2d725746d191e06996b6568c19 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:11:06 +0200 Subject: [PATCH 16/18] clean should not depend on all --- IDB/klausur_ss16/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDB/klausur_ss16/Makefile b/IDB/klausur_ss16/Makefile index 142e0a6..5bdac03 100644 --- a/IDB/klausur_ss16/Makefile +++ b/IDB/klausur_ss16/Makefile @@ -5,7 +5,7 @@ solutions: continuous: $(PDF).continuous -clean: cleanup all +clean: cleanup cleanup: @-rm -f *.aux *.fdb_latexmk *.fls *.log From 7ff166df0e758c3320f0ff9e6fac778e27a27ab3 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:14:40 +0200 Subject: [PATCH 17/18] only one encoding can be correct per file --- MatheC4/MaC4Cheatsheet.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MatheC4/MaC4Cheatsheet.tex b/MatheC4/MaC4Cheatsheet.tex index 21bab38..dbda6b8 100644 --- a/MatheC4/MaC4Cheatsheet.tex +++ b/MatheC4/MaC4Cheatsheet.tex @@ -3,7 +3,7 @@ \usepackage{amssymb} % -------- Umlaute korrekt ---------------- \usepackage{ngerman} -\usepackage[latin1, utf8]{inputenc} +\usepackage[utf8]{inputenc} \usepackage[ngerman, english]{babel} %------------------------------------------- From 2f53bd77d437a3aabd3b6e5e10159981f5434666 Mon Sep 17 00:00:00 2001 From: Johannes Knoedtel Date: Thu, 5 Oct 2017 14:14:54 +0200 Subject: [PATCH 18/18] remove redundant usepackage on ngerman --- MatheC4/MaC4Cheatsheet.tex | 1 - 1 file changed, 1 deletion(-) diff --git a/MatheC4/MaC4Cheatsheet.tex b/MatheC4/MaC4Cheatsheet.tex index dbda6b8..eb69653 100644 --- a/MatheC4/MaC4Cheatsheet.tex +++ b/MatheC4/MaC4Cheatsheet.tex @@ -2,7 +2,6 @@ \usepackage{amsmath} \usepackage{amssymb} % -------- Umlaute korrekt ---------------- -\usepackage{ngerman} \usepackage[utf8]{inputenc} \usepackage[ngerman, english]{babel} %-------------------------------------------