create bin dir

This commit is contained in:
2025-05-22 21:57:26 -04:00
committed by laugos
parent 86b6811c44
commit 27f33d96de

View File

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