diff options
author | David Phillips <david@sighup.nz> | 2019-04-14 17:49:14 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2019-08-03 12:43:44 +1200 |
commit | 0b7bf68ade7a646377acbc7eb535ba1133d18475 (patch) | |
tree | 839737fbc628cae00a1fc2e56ff57fee5aa56d42 /Makefile | |
parent | 38e3922cf7f521d1e119cbeff8722f0d8ca4c66a (diff) | |
download | toy-cpu-assembler-0b7bf68ade7a646377acbc7eb535ba1133d18475.tar.xz |
Factor out various lookup tables
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |