From 593d78709d4af9a65e87480cd12c9c937aed975a Mon Sep 17 00:00:00 2001 From: Mike Iovine <mike.iovine7@gmail.com> Date: Fri, 3 Apr 2020 06:56:12 -0700 Subject: [PATCH] Update makefile --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 026c9f2..d10cfea 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all : myzip0 myunzip0 huffman +all : myzip0 myunzip0 huffman inflate myzip0 : myzip0.c cc myzip0.c -o myzip0 @@ -7,4 +7,10 @@ myunzip0 : myunzip0.c cc myunzip0.c -o myunzip0 huffman : huffman.c - cc huffman.c -o huffman \ No newline at end of file + cc huffman.c -o huffman + +inflate : inflate.c + cc inflate.c -o inflate -lm + +clean : + rm myzip0 myunzip0 huffman inflate -- GitLab