
root: all 

SRC= rotate.cc gobj.cc mesh.cc trimesh.cc bezier.cc smtri.cc smmesh.cc \
     texture.cc cmdline.cc
OBJ= rotate.o  gobj.o  mesh.o  trimesh.o  bezier.o  smtri.o  smmesh.o \
     texture.o  cmdline.o

include ../../makefile.inc

all: rotate

rotate: $(OBJ)
	$(LDXX) $(OBJ) $(LDXXOPT) $(LDGPORT) $(LDPOLYENG) -o rotate
	$(MV) rotate $(TAGL_BIN2)


include $(DEP)
