CC = gcc
CFLAGS = -O -g

.PHONY: all
all:
	cd gzip-1.2.4; ./configure; $(MAKE); cp gzip ../../bin/zip_enc; cp gunzip ../../bin/zip_dec

.PHONY: clean
clean:
	cd gzip-1.2.4; ./configure; $(MAKE) clean