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

all: simulator

simulator: simulator.o gate.o logic.o

parser: parser.o gate.o logic.o


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