diff options
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 |
