aboutsummaryrefslogtreecommitdiff
path: root/challenge-275/atschneid/cpp/makefile
diff options
context:
space:
mode:
authorBob Lied <boblied+github@gmail.com>2024-07-01 08:42:54 -0500
committerGitHub <noreply@github.com>2024-07-01 08:42:54 -0500
commit2f8cf79ce5a382c3a6bb122ba07817e7d05bf154 (patch)
treeed6bb59bd48eaf9ebfbcfd8dd1d1a1017713078e /challenge-275/atschneid/cpp/makefile
parent2eb1149be6bb0afef86164ec74ae0a15bc7c4ed8 (diff)
parentf18cb7a95e46b9ded70a2d1d932d0bb7b1772a67 (diff)
downloadperlweeklychallenge-club-2f8cf79ce5a382c3a6bb122ba07817e7d05bf154.tar.gz
perlweeklychallenge-club-2f8cf79ce5a382c3a6bb122ba07817e7d05bf154.tar.bz2
perlweeklychallenge-club-2f8cf79ce5a382c3a6bb122ba07817e7d05bf154.zip
Merge branch 'manwar:master' into master
Diffstat (limited to 'challenge-275/atschneid/cpp/makefile')
-rw-r--r--challenge-275/atschneid/cpp/makefile9
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)