diff options
Diffstat (limited to 'P1/solutionexe/Makefile')
-rw-r--r-- | P1/solutionexe/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/P1/solutionexe/Makefile b/P1/solutionexe/Makefile new file mode 100644 index 0000000..4a969ac --- /dev/null +++ b/P1/solutionexe/Makefile @@ -0,0 +1,10 @@ +.PHONY: run + +run: + chmod +x mapreduce + chmod +x mapper + chmod +x reducer + ./mapreduce 5 2 test/T1/F1.txt + +clean: + rm -rf output
\ No newline at end of file |