CXX = g++
CXXFLAGS = -Wall -std=c++17
LDLIBS = -lstdc++ -lgc

all:main

clean:
	find . -type f -executable -delete
	$(RM) *.o log*
