# Makefile for simpleShapes directory # Which version of make? MAKE = gmake all: cd Ray; $(MAKE) Ray.o; $(MAKE) RayTest cd Shape; $(MAKE) Shape.o cd Plane; $(MAKE) Plane.o; $(MAKE) PlaneTest cd Sphere; $(MAKE) Sphere.o; $(MAKE) SphereTest # We can't link these programs until all object code has been compile cd Shape; $(MAKE) ShapeTest cd vectorUse; $(MAKE) vectorUse strip: cd Plane; $(MAKE) strip cd Ray; $(MAKE) strip cd Shape; $(MAKE) strip cd Sphere; $(MAKE) strip cd vectorUse; $(MAKE) strip