diff options
author | Oskar <[email protected]> | 2024-03-31 21:30:11 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-03-31 21:30:11 +0200 |
commit | 6104c0ee7257ae99e5187f56593442ca9f04084b (patch) | |
tree | 437957ae25f7bd1544f6c725425213244d94e704 /test/Makefile | |
parent | a2fe6b4251181b65da4264c179c5df39c22159de (diff) |
Started integrating the input system. Mainly trying to integrate the
'singles' so far because they will be the easiest.
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/test/Makefile b/test/Makefile index 4011915..ec61306 100644 --- a/test/Makefile +++ b/test/Makefile @@ -10,14 +10,6 @@ all: 7ed-TESTING clean: cd .. && make clean - rm -f vcpm - echo "rm -f vcpm" - rm -f vcimm - echo "rm -f vcimm" - rm -f vpct - echo "rm -f vpct" - rm -f vimmn - echo "rm -f vimmn" echo "Cleaned." smode: @@ -26,11 +18,4 @@ smode: alltests: cd .. && make tests - $(CC) $(CFLAGS_ALLTESTS) validate_check_p_m.c ../i_validation.c -o vcpm - echo "CC ---> vcpm" - $(CC) $(CFLAGS_ALLTESTS) validate_check_imm.c ../i_validation.c -o vcimm - echo "CC ---> vcimm" - $(CC) $(CFLAGS_ALLTESTS) validate_plus_continue_tests.c ../i_validation.c -o vpct - echo "CC ---> vpct" - $(CC) $(CFLAGS_ALLTESTS) validate_imm_numbers.c ../i_validation.c -o vimmn - echo "CC ---> vimmn" + echo "Done." |