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:
7
makefile
7
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
|
||||
rm -f target/klang-1.0.jar
|
||||
|
||||
cleanTests:
|
||||
rm -f ./src/test/test.s
|
||||
rm -f ./src/test/test
|
||||
|
||||
Reference in New Issue
Block a user