From 0708ae40e695af06379abc3a611f4d8b404524bc Mon Sep 17 00:00:00 2001 From: Andrew Schneider Date: Sun, 30 Jun 2024 19:00:36 -0400 Subject: initial PWC 275 commit --- challenge-275/atschneid/cpp/makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 challenge-275/atschneid/cpp/makefile (limited to 'challenge-275/atschneid/cpp/makefile') diff --git a/challenge-275/atschneid/cpp/makefile b/challenge-275/atschneid/cpp/makefile new file mode 100644 index 0000000000..9c91d50c01 --- /dev/null +++ b/challenge-275/atschneid/cpp/makefile @@ -0,0 +1,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) -- cgit