added Steven Baker's GPU physics code (work in progress)

This commit is contained in:
ejcoumans
2006-09-18 20:16:43 +00:00
parent d87a85ae97
commit b548455ae9
14 changed files with 1796 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
HDRS = fboSupport.h shaderSupport.h
OBJS = GPU_physics_demo.o fboSupport.o shaderSupport.o
all: ${OBJS}
g++ -o GPU_physics_demo ${OBJS} -lglut -lGLEW -lGL
shaderSupport.o : shaderSupport.cxx ${HDRS}
g++ -c shaderSupport.cxx
fboSupport.o : fboSupport.cxx ${HDRS}
g++ -c fboSupport.cxx
GPU_physics_demo.o : GPU_physics_demo.cxx ${HDRS}
g++ -c GPU_physics_demo.cxx
clean:
-rm -f ${OBJS}