CXXFLAGS := -std=c++17 -pthread -pg

SRCS := $(wildcard *.cpp)
BINS := $(SRCS:.cpp=)

.PHONY: all clean

all : $(BINS)

clean :
	-rm -vf $(BINS)
