From 1fd6ab2d234751de7686cce238d617c03240e969 Mon Sep 17 00:00:00 2001 From: Jack <jmaxfiel@caltech.edu> Date: Mon, 6 Apr 2020 18:47:55 -0400 Subject: [PATCH] Update makefile --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 84159b2..45f3aca 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 -- GitLab