diff options
author | David Phillips <david@sighup.nz> | 2018-08-01 23:25:46 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2018-08-01 23:25:46 +1200 |
commit | eee61ddbba165f772a0e720825dcf6810eaa2648 (patch) | |
tree | c9b238e386dfcf19f0c3244998efa8d2dc6d0a82 /Makefile | |
parent | e22abc4eaf4f1446c6ac31e4b709cb5206d4fe3b (diff) | |
download | hence-eee61ddbba165f772a0e720825dcf6810eaa2648.tar.xz |
Rename lexer and parser, fix compilation warnings
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |