From 596bb71d87ba74e2e7bc2da701779873b6dd2d46 Mon Sep 17 00:00:00 2001 From: Jan Wille <jan.wille@stud.hs-hannover.de> Date: Tue, 8 Aug 2023 20:19:29 +0200 Subject: [PATCH] add makefile back for building the sources --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4cc392f --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +FILES := \ + HsH-article.cls \ + HsH-report.cls \ + HsH-standalone.cls \ + config.tex + +.PHONY: src +src: $(FILES) +$(FILES) &: HsH-Classes.ins HsH-Classes.dtx + latex HsH-Classes.ins + +.PHONY: clean +clean: + rm -f $(FILES) -- GitLab