aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7a49e49..758f2c9 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,11 @@ all: ngc1
ngc1: src/main.c
$(CC) -Ideps/conts/include -Wall -Wextra -g src/main.c -o ngc1
+.PHONY: check
+check: all
+ $(MAKE) -C tests
+
.PHONY: clean
clean:
$(RM) ngc1
+ $(MAKE) -C tests clean