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

all: simulator

simulator: simulator.o gate.o logic.o

parser: parser.o gate.o logic.o


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