include ../MakeVars

GL_SERVER = 	GL_Server.o \
		GL_Robot.o \
		Drawing_Routines.o \
		Robot_Structure.o \
		Small_Gripper_Structure.o \
		Environment.o \
		Calculations.o \
		Big_Gripper_Structure.o \
		Vacuum_Gripper_Structure.o \
		GL_Matrix.o \
		Message.o \
		Object.o



all : dep gl_server

dep : 
	$(GL_CXX) $(GL_INCL) -M *.cc > depend

include depend

gl_server : $(GL_SERVER) 
	$(GL_LD) $(GL_SERVER) $(GL_LIBS) -o ../bin/gl_server

%.o: %.cc
	$(GL_CXX) $(GL_CXXFLAGS) $(GL_INCL) -c $< -o $@ 

clean :
	rm -f *.o 
	cat /dev/null > depend

