Commit 593d7870 authored by Mike Iovine's avatar Mike Iovine
Browse files

Update makefile

parent 30c51315
No related merge requests found
Showing with 8 additions and 2 deletions
+8 -2
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
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment