diff --git a/Makefile b/Makefile
index 026c9f2dcc8e15242d1b59b253eac0615a2e04de..d10cfea9314d26160b5630632dac288d0b877077 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