diff options
| author | Mistivia <i@mistivia.com> | 2025-12-21 21:26:24 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-12-21 21:26:24 +0800 |
| commit | 5eb6bd32ca4102bf29c7fabd26984c1c7c351c1e (patch) | |
| tree | f0eadead0bf078761d9cb0c13263fbc0ca1339ec /05/Makefile | |
| parent | ee1a1d291e822723202bd2e23612d6f65cfc20fc (diff) | |
day 5 part1
Diffstat (limited to '05/Makefile')
| -rw-r--r-- | 05/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/05/Makefile b/05/Makefile new file mode 100644 index 0000000..a8f700f --- /dev/null +++ b/05/Makefile @@ -0,0 +1,13 @@ +all: part1 part2 + +part1: part1.c + gcc -g part1.c -o part1 -lalgds + +part2: part2.c + gcc -g part2.c -o part2 -lalgds + +1: part1 + cat input | ./part1 + +2: part2 + cat input | ./part2
\ No newline at end of file |
