diff options
Diffstat (limited to '2022/Cpp/Day9/Makefile')
| -rwxr-xr-x | 2022/Cpp/Day9/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2022/Cpp/Day9/Makefile b/2022/Cpp/Day9/Makefile new file mode 100755 index 0000000..ba32890 --- /dev/null +++ b/2022/Cpp/Day9/Makefile @@ -0,0 +1,9 @@ +all: + @g++ main.cpp -o ans.o + +test: + ./ans.o < input.test + +prod: + ./ans.o < input.prod + |
