Makefile 272 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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