CXX = g++
CXXFLAGS = -std=c++23
TARGET = max_value

all: $(TARGET)

$(TARGET): max_value.cpp
	$(CXX) $(CXXFLAGS) -o $@ $<

clean:
	rm -f $(TARGET)