From 0b7bf68ade7a646377acbc7eb535ba1133d18475 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Sun, 14 Apr 2019 17:49:14 +1200 Subject: Factor out various lookup tables --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.1