summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3fdfcd2b126d86dd8768b40e28eccea6e58dd313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS += -std=c99 -D_XOPEN_SOURCE=500 -Wall -Wextra

all: simulator

simulator: simulator.o gate.o logic.o parser.o

.PHONY: test
test: all
	$(MAKE) -C test all test

clean:
	rm -f parser simulator
	rm -f *.o