summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2018-08-01 01:00:54 +1200
committerDavid Phillips <david@sighup.nz>2018-08-01 01:00:54 +1200
commit645acc193a739ab771fb46e8ec2cf6cd87909597 (patch)
tree482c5d59220af7ae2cc8f34a860174f4b1affd01 /Makefile
parent96776c831e9d2fcbd69bc1e0faa16026c5ed25b0 (diff)
downloadhence-645acc193a739ab771fb46e8ec2cf6cd87909597.tar.xz
WIP: Implement more robust, separated lexer+parser passes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1b28030..bdfcc72 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CFLAGS += -std=c99 -D_XOPEN_SOURCE=500 -D_POSIX_C_SOURCE=200809L -Wall -Wextra
all: simulator
-simulator: simulator.o gate.o logic.o parser.o
+simulator: simulator.o gate.o logic.o lexer.o parser.o
.PHONY: test
test: all