Makefile 272 Bytes
all : myzip0 myunzip0 huffman inflate

myzip0 : myzip0.c
	cc myzip0.c -o myzip0

myunzip0 : myunzip0.c
	cc myunzip0.c -o myunzip0

huffman : huffman.c
	cc huffman.c -o huffman

inflate : inflate.c
	cc inflate.c -o inflate -lm 

clean :
	rm myzip0 myunzip0 huffman inflate