From 27f33d96de55d22899b54dacc985de9b431031de Mon Sep 17 00:00:00 2001 From: Andrew Kloet Date: Thu, 22 May 2025 21:57:26 -0400 Subject: [PATCH] create bin dir --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index dd10784..78e859c 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,7 @@ all: $(EXEC) # Rule to link the object files into the final executable $(EXEC): $(OBJECTS) + @mkdir -p $(BIN_DIR) # Make sure the bin dir exists $(CXX) $(OBJECTS) -o $(EXEC) $(LDFLAGS) # Rule to compile .cpp files into .o files