From 5c6971c0a0444378ea0b7483e96ef1798e41d862 Mon Sep 17 00:00:00 2001
From: Martin Morgenstern <martin.morgenstern1@tu-dresden.de>
Date: Mon, 3 Feb 2020 09:38:04 +0100
Subject: [PATCH] Replace ./run with a working Makefile

---
 Makefile | 12 ++++++------
 run      |  3 ---
 2 files changed, 6 insertions(+), 9 deletions(-)
 delete mode 100755 run

diff --git a/Makefile b/Makefile
index 02d36aa..26ad736 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
-target clean:
-	latexmk -C
-	rm *.bbl *.tdo *.bpn *.run.xml
-
-target:
-	`pwd`/run
+.PHONY: all
+all:
+	latexmk thesis
 
+.PHONY: clean
+clean:
+	latexmk -C
diff --git a/run b/run
deleted file mode 100755
index 40a52ac..0000000
--- a/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-latexmk -pdf thesis.tex
-- 
GitLab