summaryrefslogtreecommitdiff
path: root/Makefile
blob: a41403f32338cd3ddeedb8fde8614aab83eae32c (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:
	$(MAKE) -C test all test

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