summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2019-04-14 17:49:14 +1200
committerDavid Phillips <david@sighup.nz>2019-08-03 12:43:44 +1200
commit0b7bf68ade7a646377acbc7eb535ba1133d18475 (patch)
tree839737fbc628cae00a1fc2e56ff57fee5aa56d42 /Makefile
parent38e3922cf7f521d1e119cbeff8722f0d8ca4c66a (diff)
downloadtoy-cpu-assembler-0b7bf68ade7a646377acbc7eb535ba1133d18475.tar.xz
Factor out various lookup tables
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index fa8f61b..34dfbdb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-OBJECTS = lex.o parse.o output.o assembler.o tok_util.o
+OBJECTS = lex.o parse.o output.o assembler.o util.o
all: assembler
@@ -6,11 +6,11 @@ assembler: $(OBJECTS)
lex.o: lex.h
-parse.o: lex.h parse.h instruction.h tok_util.h
+parse.o: lex.h parse.h instruction.h util.h
output.o: parse.h
-tok_util.o: lex.h
+util.o: lex.h instruction.h
.PHONY: clean