diff options
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/Makefile b/test/Makefile index 44d4969..1c99ced 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,9 +1,6 @@ CFLAGS += -I../ TESTS = \ - bin/test-whitespace-input \ - bin/test-short-keyword \ - bin/test-duplicate-input \ bin/test-logic-and \ bin/test-logic-or \ bin/test-logic-nand \ @@ -14,7 +11,7 @@ TESTS = \ all: $(TESTS) -bin/test-%: test-%.c ../gate.o ../parser.o ../logic.o +bin/test-%: test-%.c ../gate.o ../logic.o $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ .PHONY: clean @@ -28,3 +25,4 @@ clean: .PHONY: test test: ./test.sh + ./run-lang-tests.sh |