summaryrefslogtreecommitdiff
path: root/2022/Cpp/Makefile
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2022-12-09 15:56:42 +0200
committeromagdy7 <omar.professional8777@gmail.com>2022-12-09 15:56:42 +0200
commitd5e8f8cb89c24e02898eed760ea22f0522e59f44 (patch)
treeeb6903add19a93be5d35ec30b92ae0736a703fdf /2022/Cpp/Makefile
parentde0fc65843858effd3b418f228af4c2f327494d5 (diff)
downloadaoc-d5e8f8cb89c24e02898eed760ea22f0522e59f44.tar.xz
aoc-d5e8f8cb89c24e02898eed760ea22f0522e59f44.zip
Day8 done in Cpp
Diffstat (limited to '2022/Cpp/Makefile')
-rw-r--r--2022/Cpp/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/2022/Cpp/Makefile b/2022/Cpp/Makefile
index 08000ae..ba32890 100644
--- a/2022/Cpp/Makefile
+++ b/2022/Cpp/Makefile
@@ -1,5 +1,9 @@
all:
@g++ main.cpp -o ans.o
-run:
- ./ans.o < input.txt
+test:
+ ./ans.o < input.test
+
+prod:
+ ./ans.o < input.prod
+