Trying to make bin tests files

This commit is contained in:
Quentin Legot
2023-03-28 17:54:05 +02:00
parent c9792d1a1a
commit 7a32aa503c
4 changed files with 27 additions and 3 deletions

View File

@ -1,3 +1,8 @@
build:
make build -C boolean_logic/
# make build -C jump_instructions/
# make build -C simple_arithmetics/
dumps:
make dumps -C boolean_logic/
make dumps -C jump_instructions/
@ -6,4 +11,9 @@ dumps:
tests:
make tests -C boolean_logic/
make tests -C jump_instructions/
make tests -C simple_arithmetics/
make tests -C simple_arithmetics/
clean:
$(MAKE) clean -C boolean_logic/
$(MAKE) clean -C jump_instructions/
$(MAKE) clean -C simple_arithmetics/