CC	= gcc
AR	= ar -r
RM	= rm -f

all:	libflate checktpl

libflate: flate.o
	$(AR) libflate.a flate.o

flate.o: flate.c
#	$(CC) -D_USE_FETCH_ flate.c -c -I.
	$(CC) flate.c -c -I.

clean:
	$(RM) flate.o libflate.a checktpl
