summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2018-08-01 23:25:46 +1200
committerDavid Phillips <david@sighup.nz>2018-08-01 23:25:46 +1200
commiteee61ddbba165f772a0e720825dcf6810eaa2648 (patch)
treec9b238e386dfcf19f0c3244998efa8d2dc6d0a82 /Makefile
parente22abc4eaf4f1446c6ac31e4b709cb5206d4fe3b (diff)
downloadhence-eee61ddbba165f772a0e720825dcf6810eaa2648.tar.xz
Rename lexer and parser, fix compilation warnings
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5ba9cc6..3c48b8b 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 common.o gate.o logic.o lexer.o parser.o
+simulator: simulator.o common.o gate.o logic.o lex.o parse.o
.PHONY: test
test: all