diff options
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile index 252e0a1..3bdbc68 100644 --- a/test/Makefile +++ b/test/Makefile @@ -7,8 +7,23 @@ all: 7ed-TESTING clean: cd .. && make clean + rm -f vcpm + echo "rm -f vcpm" + rm -f vcimm + echo "rm -f vcpm" + rm -f vpct + echo "rm -f vcpm" echo "Cleaned." smode: echo "CC input.c ---> smode" cd .. && gcc -Wfatal-errors -Wall -Werror -Wextra -g -fsanitize=address input.c i_validation.c -o test/smode + +alltests: + cd .. && make tests + gcc validate_check_p_m.c ../i_validation.c -o vcpm + echo "CC ---> vcpm" + gcc validate_check_imm.c ../i_validation.c -o vcimm + echo "CC ---> vcimm" + gcc validate_plus_continue_tests.c ../i_validation.c -o vpct + echo "CC ---> vpct"
\ No newline at end of file |