From 196b90ff6c504a7c34d85c4fc8642446522fa499 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Mon, 28 Sep 2020 12:03:32 -0500 Subject: Add new "solutionexe" --- P1/solutionexe/Makefile | 10 ++++++++++ P1/solutionexe/mapper | Bin P1/solutionexe/mapreduce | Bin 32616 -> 32632 bytes P1/solutionexe/reducer | Bin 4 files changed, 10 insertions(+) create mode 100644 P1/solutionexe/Makefile mode change 100755 => 100644 P1/solutionexe/mapper mode change 100755 => 100644 P1/solutionexe/mapreduce mode change 100755 => 100644 P1/solutionexe/reducer (limited to 'P1') 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 diff --git a/P1/solutionexe/mapper b/P1/solutionexe/mapper old mode 100755 new mode 100644 diff --git a/P1/solutionexe/mapreduce b/P1/solutionexe/mapreduce old mode 100755 new mode 100644 index 6857ba1..402e9af Binary files a/P1/solutionexe/mapreduce and b/P1/solutionexe/mapreduce differ diff --git a/P1/solutionexe/reducer b/P1/solutionexe/reducer old mode 100755 new mode 100644 -- cgit v1.2.3