CXX=g++
CXXFLAGS=-std=c++20 -Wall -fsanitize=address,leak -g

LDFLAGS=-fsanitize=address,leak

.PHONY: all clean

all: l7

l7:
# TODO: Add the object files to the target

clean:
	rm -f *.o l7
