aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-07-18 21:33:50 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2025-07-18 21:33:50 +0300
commit94b767679fc68c51aa0c80bdada35b9978989199 (patch)
tree711af40c89140a9add7db30cf6a81861a3df1013 /Makefile
parent1564f79cfc7d790e15298d28f52b4c5c216ce9e5 (diff)
downloadngc-94b767679fc68c51aa0c80bdada35b9978989199.tar.gz
ngc-94b767679fc68c51aa0c80bdada35b9978989199.zip
add supertemplate handling
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