diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2022-12-09 15:56:42 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2022-12-09 15:56:42 +0200 |
| commit | d5e8f8cb89c24e02898eed760ea22f0522e59f44 (patch) | |
| tree | eb6903add19a93be5d35ec30b92ae0736a703fdf /2022/Cpp/Day8/Makefile | |
| parent | de0fc65843858effd3b418f228af4c2f327494d5 (diff) | |
| download | aoc-d5e8f8cb89c24e02898eed760ea22f0522e59f44.tar.xz aoc-d5e8f8cb89c24e02898eed760ea22f0522e59f44.zip | |
Day8 done in Cpp
Diffstat (limited to '2022/Cpp/Day8/Makefile')
| -rw-r--r-- | 2022/Cpp/Day8/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2022/Cpp/Day8/Makefile b/2022/Cpp/Day8/Makefile new file mode 100644 index 0000000..2faed25 --- /dev/null +++ b/2022/Cpp/Day8/Makefile @@ -0,0 +1,8 @@ +all: + @g++ main.cpp -o ans.o + +test: + ./ans.o < input.test + +prod: + ./ans.o < input.prod |
