diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |