CXX=g++
CXXFLAGS=-Wall -fsanitize=address,leak
LDFLAGS=-fsanitize=address,leak

.PHONY: all clean

all: l2

l2: 
	echo "Define how to build an executable here"

clean:
	rm -f l2
