CPPFLAGS := -g -std=c++17 -Wall -O3 all: ch-1 ch-2 ch-1: ch-1.cpp c++ ch-1.cpp -o ch-1 $(CPPFLAGS) ch-2: ch-2.cpp c++ ch-2.cpp -o ch-2 $(CPPFLAGS)