From ac8150b7601d9611818bb8b265a125a347a67004 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Sun, 14 Apr 2019 16:10:18 +1200 Subject: Dirst dump of working prototype --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fa8f61b --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +OBJECTS = lex.o parse.o output.o assembler.o tok_util.o + +all: assembler + +assembler: $(OBJECTS) + +lex.o: lex.h + +parse.o: lex.h parse.h instruction.h tok_util.h + +output.o: parse.h + +tok_util.o: lex.h + + +.PHONY: clean +clean: + - rm -f assembler $(OBJECTS) -- cgit v1.1