aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Strapp <strap012@umn.edu>2020-09-24 16:36:37 -0500
committerGitHub Enterprise <noreply-github@umn.edu>2020-09-24 16:36:37 -0500
commitb2f8ea3765057df8ead6dd32664bf779d4947642 (patch)
tree88664c8459f941ea76838d073820cb4c97cc66ed
parentMerge pull request #7 from STRAP012/Matt's-Branch (diff)
downloadcsci4061-b2f8ea3765057df8ead6dd32664bf779d4947642.tar
csci4061-b2f8ea3765057df8ead6dd32664bf779d4947642.tar.gz
csci4061-b2f8ea3765057df8ead6dd32664bf779d4947642.tar.bz2
csci4061-b2f8ea3765057df8ead6dd32664bf779d4947642.tar.lz
csci4061-b2f8ea3765057df8ead6dd32664bf779d4947642.tar.xz
csci4061-b2f8ea3765057df8ead6dd32664bf779d4947642.tar.zst
csci4061-b2f8ea3765057df8ead6dd32664bf779d4947642.zip
Fix makefile
Diffstat (limited to '')
-rw-r--r--P1/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/P1/Makefile b/P1/Makefile
index 4134c5f..e9762c8 100644
--- a/P1/Makefile
+++ b/P1/Makefile
@@ -5,7 +5,7 @@ SRCDIR=src
INCLDIR=include
LIBDIR=lib
-mapreduce: $(LIBDIR)/utils.o mapper reducer
+mapreduce: $(LIBDIR)/utils.o $(SRCDIR)/mapreduce.c mapper reducer
$(CC) $(CFLAGS) -I$(INCLDIR) $(LIBDIR)/utils.o $(SRCDIR)/mapreduce.c -o mapreduce
mapper: $(SRCDIR)/mapper.c $(LIBDIR)/utils.o
@@ -24,4 +24,4 @@ t1:
clean:
rm mapreduce mapper reducer
- rm -rf output \ No newline at end of file
+ rm -rf output