summaryrefslogtreecommitdiff
path: root/test/Makefile
blob: 25c1690dc7e2408fc1d1e1b88e55e62fcbb935f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CFLAGS += -I../

TESTS = \
	test-whitespace-input

all: clean $(TESTS)

test-whitespace-input: ../gate.o ../parser.o ../logic.o

clean:
	rm -f $(TESTS)

.PHONY: test
test:
	./test.sh