summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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