diff options
Diffstat (limited to '2022/Day4/Makefile')
| -rw-r--r-- | 2022/Day4/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/2022/Day4/Makefile b/2022/Day4/Makefile new file mode 100644 index 0000000..08000ae --- /dev/null +++ b/2022/Day4/Makefile @@ -0,0 +1,5 @@ +all: + @g++ main.cpp -o ans.o + +run: + ./ans.o < input.txt |
