diff options
| author | Mistivia <i@mistivia.com> | 2025-12-14 22:50:15 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-12-14 22:50:15 +0800 |
| commit | a0ee3c44393a8f24153fe48727ea312f93ec6afa (patch) | |
| tree | f48b81587c17d6a6bc7ef4284411493cf0b91e97 /02/Makefile | |
| parent | 99e608427f86453bd51399ce88ca79a69a146860 (diff) | |
day 2 part 1
Diffstat (limited to '02/Makefile')
| -rw-r--r-- | 02/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/02/Makefile b/02/Makefile new file mode 100644 index 0000000..f69d8a5 --- /dev/null +++ b/02/Makefile @@ -0,0 +1,11 @@ +part1: part1.c + gcc part1.c -o part1 -lalgds + +part2: part2.c + gcc part2.c -o part2 -lalgds + +1: part1 + cat input | ./part1 + +2: part2 + cat input | ./part2
\ No newline at end of file |
