From 5275b63940a5a04390389ebfcb696d1952f27450 Mon Sep 17 00:00:00 2001 From: Marvin Kaiser Date: Tue, 14 Jan 2020 12:25:04 +0100 Subject: [PATCH] added make target to only cleanup the tests. Can be used for quicker test development without having to recompile the klang compiler --- makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 1c8c9c2..7131315 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,5 @@ .PHONY: clean +.PHONY: cleanTests run: code.k target/klang-1.0-jar-with-dependencies.jar java -cp target/klang-1.0-jar-with-dependencies.jar de.hsrm.compiler.Klang.Klang < code.k > code.s @@ -28,4 +29,8 @@ clean: rm -f ./src/test/test rm -f code.s rm -f target/klang-1.0-jar-with-dependencies.jar - rm -f target/klang-1.0.jar \ No newline at end of file + rm -f target/klang-1.0.jar + +cleanTests: + rm -f ./src/test/test.s + rm -f ./src/test/test