aboutsummaryrefslogtreecommitdiff
path: root/challenge-273/atschneid/cpp/makefile
blob: 9c91d50c01c1dc251c8d73f4d61e148e0bb69d02 (plain)
1
2
3
4
5
6
7
8
9
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)