diff options
author | Matthew Strapp <strap012@umn.edu> | 2020-09-24 16:36:37 -0500 |
---|---|---|
committer | GitHub Enterprise <noreply-github@umn.edu> | 2020-09-24 16:36:37 -0500 |
commit | b2f8ea3765057df8ead6dd32664bf779d4947642 (patch) | |
tree | 88664c8459f941ea76838d073820cb4c97cc66ed /P1/Makefile | |
parent | Merge pull request #7 from STRAP012/Matt's-Branch (diff) | |
download | csci4061-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 'P1/Makefile')
-rw-r--r-- | P1/Makefile | 4 |
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 |