diff options
Diffstat (limited to 'challenge-275/atschneid/cpp/makefile')
| -rw-r--r-- | challenge-275/atschneid/cpp/makefile | 9 |
1 files changed, 9 insertions, 0 deletions
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) |
