# 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
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.