diff options
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 |
