diff --git a/Makefile b/Makefile index 84159b22000b1419e38d882e99bfd81f7682fc77..45f3aca8e565dd611b7f050660e1bcf5b4ee5a1f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all : myzip0 myunzip0 huffman inflate test_inflate myunzip +all : myzip0 myunzip0 huffman inflate test_inflate myunzip myzip lz77 myzip0 : myzip0.c cc myzip0.c -o myzip0 @@ -25,7 +25,5 @@ lz77 : include/bitwriter.h include/hashmap.h include/lz77.h src/lz77/bitwriter.c myzip : include/bitwriter.h include/hashmap.h include/lz77.h src/lz77/bitwriter.c src/lz77/hashmap.c src/lz77/lz77.c src/myzip/myzip.c cc -I include src/lz77/lz77.c src/lz77/hashmap.c src/lz77/bitwriter.c src/myzip/myzip.c -o myzip - - clean : - rm myzip0 myunzip0 huffman inflate test_inflate myunzip + rm -f myzip0 myunzip0 huffman inflate test_inflate myunzip myzip lz77