diff options
author | David Phillips <david@sighup.nz> | 2017-12-28 19:27:15 +1300 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2017-12-28 19:27:15 +1300 |
commit | 4064bc9ea637563f4b579ed61baa882a4c0ed39d (patch) | |
tree | 6dab5c9a60cd73b6ef8bff0d3b168c1ea5c1e56a /Makefile | |
parent | 22d2cb0a71b22c3142cc073b7ceca976d7a513c1 (diff) | |
download | hence-4064bc9ea637563f4b579ed61baa882a4c0ed39d.tar.xz |
Refactor main from parser to simulator
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,10 +1,8 @@ CFLAGS += -std=c99 -D_XOPEN_SOURCE=500 -Wall -Wextra -all: simulator parser +all: simulator -simulator: simulator.o gate.o logic.o - -parser: parser.o gate.o logic.o +simulator: simulator.o gate.o logic.o parser.o .PHONY: test test: |