SRCS = Test3d.c Threedee.c Axis3.c Plot3.c Surface.c surCon.c 
OBJS = Test3d.o Threedee.o Axis3.o Plot3.o Surface.o surCon.o
HDRS = Threedee.h ThreedeeP.h Axis3.h Axis3P.h Plot3.h Plot3P.h Surface.h\
	FontFamily.h FontFamilyP.h Text.h Scale.h double.h Projection.h\
	surCon.h 
CC = gcc -g -DCONSTR
MACHINE = vax
CFLAGS =  -c -I/mit/motif/include -I/mit/atdev/include
LIBPATH = -L/mit/motif/$(MACHINE)lib -L/mit/atdev/$(MACHINE)lib
LIBS = -lAt -lXt -lXmu -lX11 -lm 

TOP = /mit/raven/Xtools/thes
INSTALL_LIB = $(TOP)/$(MACHINE)lib
INSTALL_INC = $(TOP)/include

testd:  $(OBJS)
	$(CC) -o Test3d $(OBJS) $(LIBPATH) $(LIBS)

