Add tests files

This commit is contained in:
Quentin Legot
2023-04-04 20:55:27 +02:00
parent 99b0128cfe
commit a001e45c3f
5 changed files with 39 additions and 1 deletions

View File

@ -2,18 +2,22 @@ build:
make build -C boolean_logic/
make build -C jump_instructions/
make build -C simple_arithmetics/
make build -C syscall_tests/
dumps:
make dumps -C boolean_logic/
make dumps -C jump_instructions/
make dumps -C simple_arithmetics/
make dumps -C syscall_tests/
tests:
make tests -C boolean_logic/
make tests -C jump_instructions/
make tests -C simple_arithmetics/
make tests -C syscall_tests/
clean:
$(MAKE) clean -C boolean_logic/
$(MAKE) clean -C jump_instructions/
$(MAKE) clean -C simple_arithmetics/
$(MAKE) clean -C simple_arithmetics/
$(MAKE) clean -C syscall_tests/