#
#   Time-stamp: <95/10/01 22:28:12 yusuf>
#

#All the user config stuff, including directories etc..
#is found in Makefile.common
#
#
include ../version
include ../Makefile.common


all: $(COMPRESS_LIB)


$(COMPRESS_LIB): $(COMPRESS_OBJS)
	ar rc $(COMPRESS_LIB) $(COMPRESS_OBJS)


.c.o:
	$(CC) $(CFLAGS) $(DEFINES) $(INCLUDE) -o $@ -c $<

clean:
	rm -rf core *.o $(COMPRESS_LIB)

.depend:
	make depend

depend:
	$(CC) -M $(INCLUDE) $(COMPRESS_SRCS) > .depend
	
	
dep: depend

ifeq (.depend, $(wildcard .depend))
include .depend
endif
#
#
