aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3084c2d..7de97b8 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@ PYTHON = python3
RM = rm -f
MAKE = make -j4
-SRC = main.c helper.c pft_tests.c moulitest_tests.c
+SRC = main.c helper.c tests/pft_tests.c tests/moulitest_tests.c
OBJ = $(SRC:.c=.o)
run: run_pretty
@@ -17,6 +17,12 @@ run: run_pretty
run_pretty: all
./$(NAME) | $(PYTHON) prettier.py
+run_pretty_verbose:
+ ./$(NAME) | $(PYTHON) prettier.py --verbose
+
+run_pretty_quiet:
+ ./$(NAME) | $(PYTHON) prettier.py --quiet
+
run_raw: all
./$(NAME)