From 7f8fbc815cdd3c86e2ecb13b5bf249aff15958b8 Mon Sep 17 00:00:00 2001 From: Johannes Niederwieser <johannes.niederwieser@student.tugraz.at> Date: Mon, 26 Oct 2020 11:20:58 +0100 Subject: [PATCH] add run in Makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 8e1a6d3..00e5093 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,10 @@ bin: ## compiles project to executable binary all: clean bin ## all of the above +run: all ## runs the project with default config + @echo "[\033[36mINFO\033[0m] Executing binary..." + ./$(ASSIGNMENT) + test: all ## runs public testcases on the project @echo "[\033[36mINFO\033[0m] Executing testrunner..." ./testrunner -c test.toml -- GitLab