GLIB	=	../../lib/libzbf.a

SRCS	=	zbuffer.c transforms.c line_clip.c poly_clip.c lmodel.c lights.c texture.c user.c atmosphere.c util.c lu.c
OBJS	=	zbuffer.o transforms.o line_clip.o poly_clip.o lmodel.o lights.o texture.o user.o atmosphere.o util.o lu.o

CC	=	cc -I. -32 -O
#CC	=	cc -I. -O -OPT:fast_sqrt=ON,fast_exp=ON,IEEE_arithmetic=3,roundoff=3 -pca list

.c.o:
	$(CC) -c $<

all: $(GLIB)

$(GLIB):	$(OBJS)
	ar r $@ $(OBJS)
