diff options
Diffstat (limited to '01/Makefile')
| -rw-r--r-- | 01/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/01/Makefile b/01/Makefile index 7979cbd..cfcbd94 100644 --- a/01/Makefile +++ b/01/Makefile @@ -1,5 +1,11 @@ part1: part1.c gcc part1.c -o part1 +part2: part2.c + gcc part2.c -o part2 + 1: part1 - cat input | ./part1
\ No newline at end of file + cat input | ./part1 + +2: part2 + cat input | ./part2
\ No newline at end of file |
