added make target to only cleanup the tests. Can be used for quicker test development without having to recompile the klang compiler

This commit is contained in:
Marvin Kaiser
2020-01-14 12:25:04 +01:00
parent 7af6565e07
commit 5275b63940

View File

@@ -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
rm -f target/klang-1.0.jar
cleanTests:
rm -f ./src/test/test.s
rm -f ./src/test/test