Add analyzer object file to Makefile

This commit is contained in:
Yannick Reiß 2023-09-21 15:07:48 +02:00
parent 1b517751f9
commit 584545d9c3
No known key found for this signature in database
GPG Key ID: 5A3AF456F0A0338C
1 changed files with 1 additions and 1 deletions

View File

@ -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)