SOURCE  = $(wildcard *.cpp)
TARGETS = $(patsubst %.cpp,%,$(SOURCE))
CXXFLAGS= -O2 -std=c++20

all : ${TARGETS}

clean :
	rm ${TARGETS}
