#########################################
#  sdlBasic Makefile v1.03 for Linux    #
#########################################

exec_prefix=/usr/local

SRC = inflate.c unzip.c  
OBJECT= inflate.o unzip.o 
TARGET= unZip

CC= gcc
CFLAG= -Wall -g -O2 
LIBS=
COMPILE=$(CC) $(CFLAG) $(LIBS)


all: 		unzip.o inflate.o 
	$(COMPILE) -o$(TARGET) $(OBJECT)
	strip $(TARGET)

unzip.o:	unzip.c unzip.h
	$(CC) $(CFLAG) -c unzip.c

inflate.o:	inflate.c
	$(CC) $(CFLAG) -c inflate.c


clean:
	rm *.o
	rm $(TARGET)
