# # This is the make file for the rndr. lib subdirectory. # # Gershon Elber, Aug 2003 # include ../makeflag.ami OBJS = color.o \ fstalloc.o \ interpol.o \ lights.o \ object.o \ polyline.o \ report.o \ rndr_lib.o \ scene.o \ stencil.o \ texture.o \ triangle.o \ zbuffer.o all: librndr.a librndr.a: $(OBJS) rm -f librndr.a ar rcv librndr.a *.o -ranlib librndr.a install: librndr.a mv -f librndr.a $(LIB_DIR) # DO NOT DELETE THIS LINE -- make depend depends on it.