From 584545d9c35ef5d485b49c4430110760cf015030 Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Thu, 21 Sep 2023 15:07:48 +0200 Subject: [PATCH] Add analyzer object file to Makefile --- bfpcompiler/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bfpcompiler/Makefile b/bfpcompiler/Makefile index afd5606..cb43e4b 100644 --- a/bfpcompiler/Makefile +++ b/bfpcompiler/Makefile @@ -5,7 +5,7 @@ CFLAGS = -Wall LDFLAGS = SRCDIR = src/ INCLUDE = include/ -OBJECTS = tokenizer.o compilefuck.o +OBJECTS = analyzer.o tokenizer.o compilefuck.o all: $(BIN) $(BIN): $(OBJECTS)