diff options
Diffstat (limited to '04/Makefile')
| -rw-r--r-- | 04/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/04/Makefile b/04/Makefile new file mode 100644 index 0000000..a8f700f --- /dev/null +++ b/04/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 |
