|
|
@@ -5,8 +5,8 @@ PHFLAGS = $(CFLAGS) -x c++-header
|
|
|
LFLAGS = $(COMMONFLAGS) -rdynamic -L../../../bullet_svn/src/BulletSoftBody -L../../../bullet_svn/src/BulletDynamics -L../../../bullet_svn/src/BulletCollision -L../../../bullet_svn/src/LinearMath -Wl,-Bstatic -lBulletSoftBody -lBulletDynamics -lBulletCollision -lLinearMath -lGLEW -lSDL_image -lGLU -Wl,-Bdynamic -lSDL -lGL -ljpeg -lpng -ltiff
|
|
|
EXECUTABLE = AnKi.bin
|
|
|
INCPATH = -I../../src/math/ -I../../src/tokenizer/ -I../../src/uncategorized/ -I../../src/ -I../../src/renderer/ -I../../src/scene/ -I../../src/ui/ -I../../src/resources/ -I../../src/utility/ -I../../src/controllers/ -I../../../bullet_svn/src/
|
|
|
-SOURCES = ../../src/tokenizer//Scanner.cpp ../../src/uncategorized//skybox.cpp ../../src/uncategorized//particles.cpp ../../src/uncategorized//memory.cpp ../../src/uncategorized//collision.cpp ../../src/uncategorized//map.cpp ../../src//main.cpp ../../src/renderer//r_ms.cpp ../../src/renderer//renderer.cpp ../../src/renderer//r_bs2.cpp ../../src/renderer//r_pps_ssao.cpp ../../src/renderer//r_dbg.cpp ../../src/renderer//r_pps_hdr.cpp ../../src/renderer//r_pps.cpp ../../src/renderer//r_is_shadows.cpp ../../src/renderer//BulletDebuger.cpp ../../src/renderer//r_bs.cpp ../../src/renderer//r_ms_earlyz.cpp ../../src/renderer//r_is.cpp ../../src/renderer//r_pps_lscatt.cpp ../../src/scene//MeshNode.cpp ../../src/scene//SkelNode.cpp ../../src/scene//Node.cpp ../../src/scene//SkelModelNode.cpp ../../src/scene//Light.cpp ../../src/scene//Camera.cpp ../../src/scene//Scene.cpp ../../src/ui//Ui.cpp ../../src/resources//Material.cpp ../../src/resources//ShaderProg.cpp ../../src/resources//Texture.cpp ../../src/resources//SkelAnim.cpp ../../src/resources//Extension.cpp ../../src/resources//ShaderParser.cpp ../../src/resources//Skeleton.cpp ../../src/resources//Resource.cpp ../../src/resources//LightProps.cpp ../../src/resources//Mesh.cpp ../../src/utility//Input.cpp ../../src/utility//App.cpp ../../src/utility//Common.cpp ../../src/utility//Util.cpp ../../src/controllers//Controller.cpp ../../src/controllers//SkelAnimCtrl.cpp
|
|
|
-OBJECTS = Scanner.o skybox.o particles.o memory.o collision.o map.o main.o r_ms.o renderer.o r_bs2.o r_pps_ssao.o r_dbg.o r_pps_hdr.o r_pps.o r_is_shadows.o BulletDebuger.o r_bs.o r_ms_earlyz.o r_is.o r_pps_lscatt.o MeshNode.o SkelNode.o Node.o SkelModelNode.o Light.o Camera.o Scene.o Ui.o Material.o ShaderProg.o Texture.o SkelAnim.o Extension.o ShaderParser.o Skeleton.o Resource.o LightProps.o Mesh.o Input.o App.o Common.o Util.o Controller.o SkelAnimCtrl.o
|
|
|
+SOURCES = ../../src/tokenizer//Scanner.cpp ../../src/uncategorized//collision.cpp ../../src/uncategorized//skybox.cpp ../../src/uncategorized//map.cpp ../../src/uncategorized//memory.cpp ../../src/uncategorized//particles.cpp ../../src//main.cpp ../../src/renderer//Dbg.cpp ../../src/renderer//BulletDebuger.cpp ../../src/renderer//Shadows.cpp ../../src/renderer//Hdr.cpp ../../src/renderer//Ssao.cpp ../../src/renderer//Lscatt.cpp ../../src/renderer//Bs2.cpp ../../src/renderer//Ms.cpp ../../src/renderer//Pps.cpp ../../src/renderer//Earlyz.cpp ../../src/renderer//Bs.cpp ../../src/renderer//Is.cpp ../../src/renderer//Renderer.cpp ../../src/scene//SkelNode.cpp ../../src/scene//Light.cpp ../../src/scene//SkelModelNode.cpp ../../src/scene//Scene.cpp ../../src/scene//MeshNode.cpp ../../src/scene//Camera.cpp ../../src/scene//Node.cpp ../../src/ui//Ui.cpp ../../src/resources//LightProps.cpp ../../src/resources//SkelAnim.cpp ../../src/resources//Mesh.cpp ../../src/resources//ShaderProg.cpp ../../src/resources//Material.cpp ../../src/resources//ShaderParser.cpp ../../src/resources//Extension.cpp ../../src/resources//Skeleton.cpp ../../src/resources//Texture.cpp ../../src/resources//Resource.cpp ../../src/utility//Input.cpp ../../src/utility//App.cpp ../../src/utility//Common.cpp ../../src/utility//Util.cpp ../../src/controllers//SkelAnimCtrl.cpp ../../src/controllers//Controller.cpp
|
|
|
+OBJECTS = Scanner.o collision.o skybox.o map.o memory.o particles.o main.o Dbg.o BulletDebuger.o Shadows.o Hdr.o Ssao.o Lscatt.o Bs2.o Ms.o Pps.o Earlyz.o Bs.o Is.o Renderer.o SkelNode.o Light.o SkelModelNode.o Scene.o MeshNode.o Camera.o Node.o Ui.o LightProps.o SkelAnim.o Mesh.o ShaderProg.o Material.o ShaderParser.o Extension.o Skeleton.o Texture.o Resource.o Input.o App.o Common.o Util.o SkelAnimCtrl.o Controller.o
|
|
|
PRECOMPILED_HEADERS =
|
|
|
|
|
|
all: $(PRECOMPILED_HEADERS) $(SOURCES) $(EXECUTABLE)
|
|
|
@@ -22,6 +22,26 @@ Scanner.o: ../../src/tokenizer//Scanner.cpp \
|
|
|
@echo Compiling ../../src/tokenizer//Scanner.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/tokenizer//Scanner.cpp -o Scanner.o
|
|
|
|
|
|
+collision.o: ../../src/uncategorized//collision.cpp \
|
|
|
+ ../../src/uncategorized//collision.h ../../src/utility/Common.h \
|
|
|
+ ../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
+ ../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
+ ../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
+ ../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+ ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
+ ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
+ ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
+ ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
+ ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
+ ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/renderer/Renderer.h \
|
|
|
+ ../../src/resources/ShaderProg.h ../../src/resources/Resource.h \
|
|
|
+ ../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
+ ../../src/scene/Camera.h ../../src/uncategorized/collision.h \
|
|
|
+ ../../src/scene/Node.h
|
|
|
+ @echo Compiling ../../src/uncategorized//collision.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//collision.cpp -o collision.o
|
|
|
+
|
|
|
skybox.o: ../../src/uncategorized//skybox.cpp \
|
|
|
../../src/uncategorized//skybox.h ../../src/utility/Common.h \
|
|
|
../../src/uncategorized/memory.h ../../src/resources/Texture.h \
|
|
|
@@ -37,43 +57,13 @@ skybox.o: ../../src/uncategorized//skybox.cpp \
|
|
|
../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
../../src/math/MathFuncs.inl.h ../../src/resources/Resource.h \
|
|
|
- ../../src/renderer/renderer.h ../../src/resources/ShaderProg.h \
|
|
|
+ ../../src/renderer/Renderer.h ../../src/resources/ShaderProg.h \
|
|
|
../../src/scene/Camera.h ../../src/uncategorized/collision.h \
|
|
|
../../src/scene/Node.h ../../src/scene/Scene.h \
|
|
|
../../src/uncategorized/skybox.h
|
|
|
@echo Compiling ../../src/uncategorized//skybox.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//skybox.cpp -o skybox.o
|
|
|
|
|
|
-particles.o: ../../src/uncategorized//particles.cpp
|
|
|
- @echo Compiling ../../src/uncategorized//particles.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//particles.cpp -o particles.o
|
|
|
-
|
|
|
-memory.o: ../../src/uncategorized//memory.cpp \
|
|
|
- ../../src/uncategorized//memory.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h
|
|
|
- @echo Compiling ../../src/uncategorized//memory.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//memory.cpp -o memory.o
|
|
|
-
|
|
|
-collision.o: ../../src/uncategorized//collision.cpp \
|
|
|
- ../../src/uncategorized//collision.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
- ../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
- ../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
- ../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
- ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
- ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
- ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
- ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
- ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
- ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/renderer/renderer.h \
|
|
|
- ../../src/resources/ShaderProg.h ../../src/resources/Resource.h \
|
|
|
- ../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
- ../../src/scene/Camera.h ../../src/uncategorized/collision.h \
|
|
|
- ../../src/scene/Node.h
|
|
|
- @echo Compiling ../../src/uncategorized//collision.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//collision.cpp -o collision.o
|
|
|
-
|
|
|
map.o: ../../src/uncategorized//map.cpp ../../src/uncategorized//map.h \
|
|
|
../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
../../src/uncategorized//collision.h ../../src/math/Math.h \
|
|
|
@@ -96,6 +86,16 @@ map.o: ../../src/uncategorized//map.cpp ../../src/uncategorized//map.h \
|
|
|
@echo Compiling ../../src/uncategorized//map.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//map.cpp -o map.o
|
|
|
|
|
|
+memory.o: ../../src/uncategorized//memory.cpp \
|
|
|
+ ../../src/uncategorized//memory.h ../../src/utility/Common.h \
|
|
|
+ ../../src/uncategorized/memory.h
|
|
|
+ @echo Compiling ../../src/uncategorized//memory.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//memory.cpp -o memory.o
|
|
|
+
|
|
|
+particles.o: ../../src/uncategorized//particles.cpp
|
|
|
+ @echo Compiling ../../src/uncategorized//particles.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//particles.cpp -o particles.o
|
|
|
+
|
|
|
main.o: ../../src//main.cpp ../../src/utility/Common.h \
|
|
|
../../src/uncategorized/memory.h ../../src/utility/Input.h \
|
|
|
../../src/utility/Common.h ../../src/utility/App.h ../../src/math/Math.h \
|
|
|
@@ -110,7 +110,7 @@ main.o: ../../src//main.cpp ../../src/utility/Common.h \
|
|
|
../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
../../src/math/MathFuncs.inl.h ../../src/scene/Camera.h \
|
|
|
../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
- ../../src/renderer/renderer.h ../../src/resources/ShaderProg.h \
|
|
|
+ ../../src/renderer/Renderer.h ../../src/resources/ShaderProg.h \
|
|
|
../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
../../src/ui/Ui.h ../../src/utility/App.h \
|
|
|
../../src/uncategorized/particles.h ../../src/resources/Texture.h \
|
|
|
@@ -257,97 +257,7 @@ main.o: ../../src//main.cpp ../../src/utility/Common.h \
|
|
|
@echo Compiling ../../src//main.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src//main.cpp -o main.o
|
|
|
|
|
|
-r_ms.o: ../../src/renderer//r_ms.cpp ../../src/renderer//renderer.h \
|
|
|
- ../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
- ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
- ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
- ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
- ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
- ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
- ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
- ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
- ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
- ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
- ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
- ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
- ../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
- ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
- ../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
- ../../src/resources/Texture.h ../../src/resources/Mesh.h \
|
|
|
- ../../src/renderer/Vbo.h ../../src/renderer//Fbo.h \
|
|
|
- ../../src/resources/Material.h ../../src/scene/MeshNode.h
|
|
|
- @echo Compiling ../../src/renderer//r_ms.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_ms.cpp -o r_ms.o
|
|
|
-
|
|
|
-renderer.o: ../../src/renderer//renderer.cpp \
|
|
|
- ../../src/renderer//renderer.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
- ../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
- ../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
- ../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
- ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
- ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
- ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
- ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
- ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
- ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
- ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
- ../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
- ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
- ../../src/resources/Texture.h ../../src/scene/Scene.h \
|
|
|
- ../../src/uncategorized/skybox.h ../../src/utility/App.h
|
|
|
- @echo Compiling ../../src/renderer//renderer.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//renderer.cpp -o renderer.o
|
|
|
-
|
|
|
-r_bs2.o: ../../src/renderer//r_bs2.cpp ../../src/renderer//renderer.h \
|
|
|
- ../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
- ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
- ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
- ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
- ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
- ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
- ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
- ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
- ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
- ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
- ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
- ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
- ../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
- ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
- ../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
- ../../src/resources/Texture.h ../../src/resources/Mesh.h \
|
|
|
- ../../src/renderer/Vbo.h ../../src/resources/Resource.h \
|
|
|
- ../../src/renderer//Fbo.h ../../src/scene/MeshNode.h \
|
|
|
- ../../src/resources/Material.h
|
|
|
- @echo Compiling ../../src/renderer//r_bs2.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_bs2.cpp -o r_bs2.o
|
|
|
-
|
|
|
-r_pps_ssao.o: ../../src/renderer//r_pps_ssao.cpp \
|
|
|
- ../../src/renderer//renderer.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
- ../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
- ../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
- ../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
- ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
- ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
- ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
- ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
- ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
- ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
- ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
- ../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
- ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
- ../../src/resources/Resource.h ../../src/resources/Texture.h \
|
|
|
- ../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
- ../../src/renderer//Fbo.h
|
|
|
- @echo Compiling ../../src/renderer//r_pps_ssao.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps_ssao.cpp -o r_pps_ssao.o
|
|
|
-
|
|
|
-r_dbg.o: ../../src/renderer//r_dbg.cpp ../../src/renderer//renderer.h \
|
|
|
+Dbg.o: ../../src/renderer//Dbg.cpp ../../src/renderer//Renderer.h \
|
|
|
../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
@@ -496,12 +406,21 @@ r_dbg.o: ../../src/renderer//r_dbg.cpp ../../src/renderer//renderer.h \
|
|
|
../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
|
|
|
../../src/renderer//BulletDebuger.h \
|
|
|
../../../bullet_svn/src/LinearMath/btIDebugDraw.h
|
|
|
- @echo Compiling ../../src/renderer//r_dbg.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_dbg.cpp -o r_dbg.o
|
|
|
+ @echo Compiling ../../src/renderer//Dbg.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Dbg.cpp -o Dbg.o
|
|
|
|
|
|
-r_pps_hdr.o: ../../src/renderer//r_pps_hdr.cpp \
|
|
|
- ../../src/renderer//renderer.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
+BulletDebuger.o: ../../src/renderer//BulletDebuger.cpp \
|
|
|
+ ../../src/renderer//BulletDebuger.h ../../src/utility/Common.h \
|
|
|
+ ../../src/uncategorized/memory.h \
|
|
|
+ ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
|
|
|
+ ../../../bullet_svn/src/LinearMath/btVector3.h \
|
|
|
+ ../../../bullet_svn/src/LinearMath/btScalar.h \
|
|
|
+ ../../../bullet_svn/src/LinearMath/btMinMax.h \
|
|
|
+ ../../../bullet_svn/src/LinearMath/btTransform.h \
|
|
|
+ ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
|
|
|
+ ../../../bullet_svn/src/LinearMath/btQuaternion.h \
|
|
|
+ ../../../bullet_svn/src/LinearMath/btQuadWord.h \
|
|
|
+ ../../src/renderer//Renderer.h ../../src/math/Math.h \
|
|
|
../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
@@ -514,14 +433,11 @@ r_pps_hdr.o: ../../src/renderer//r_pps_hdr.cpp \
|
|
|
../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
- ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
- ../../src/resources/Resource.h ../../src/resources/Texture.h \
|
|
|
- ../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
- ../../src/renderer//Fbo.h
|
|
|
- @echo Compiling ../../src/renderer//r_pps_hdr.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps_hdr.cpp -o r_pps_hdr.o
|
|
|
+ ../../src/uncategorized/collision.h ../../src/scene/Node.h
|
|
|
+ @echo Compiling ../../src/renderer//BulletDebuger.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//BulletDebuger.cpp -o BulletDebuger.o
|
|
|
|
|
|
-r_pps.o: ../../src/renderer//r_pps.cpp ../../src/renderer//renderer.h \
|
|
|
+Shadows.o: ../../src/renderer//Shadows.cpp ../../src/renderer//Renderer.h \
|
|
|
../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
@@ -537,49 +453,19 @@ r_pps.o: ../../src/renderer//r_pps.cpp ../../src/renderer//renderer.h \
|
|
|
../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
- ../../src/resources/Resource.h ../../src/resources/Texture.h \
|
|
|
- ../../src/renderer//Fbo.h
|
|
|
- @echo Compiling ../../src/renderer//r_pps.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps.cpp -o r_pps.o
|
|
|
-
|
|
|
-r_is_shadows.o: ../../src/renderer//r_is_shadows.cpp \
|
|
|
- ../../src/renderer//renderer.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
- ../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
- ../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
- ../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
- ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
- ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
- ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
- ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
- ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
- ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
- ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
- ../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
- ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
../../src/resources/Texture.h ../../src/scene/Scene.h \
|
|
|
../../src/uncategorized/skybox.h ../../src/resources/Resource.h \
|
|
|
../../src/renderer//Fbo.h ../../src/resources/Material.h \
|
|
|
../../src/scene/MeshNode.h
|
|
|
- @echo Compiling ../../src/renderer//r_is_shadows.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_is_shadows.cpp -o r_is_shadows.o
|
|
|
+ @echo Compiling ../../src/renderer//Shadows.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Shadows.cpp -o Shadows.o
|
|
|
|
|
|
-BulletDebuger.o: ../../src/renderer//BulletDebuger.cpp \
|
|
|
- ../../src/renderer//BulletDebuger.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h \
|
|
|
- ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
|
|
|
- ../../../bullet_svn/src/LinearMath/btVector3.h \
|
|
|
- ../../../bullet_svn/src/LinearMath/btScalar.h \
|
|
|
- ../../../bullet_svn/src/LinearMath/btMinMax.h \
|
|
|
- ../../../bullet_svn/src/LinearMath/btTransform.h \
|
|
|
- ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
|
|
|
- ../../../bullet_svn/src/LinearMath/btQuaternion.h \
|
|
|
- ../../../bullet_svn/src/LinearMath/btQuadWord.h \
|
|
|
- ../../src/renderer//renderer.h ../../src/math/Math.h \
|
|
|
- ../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
- ../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
- ../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+Hdr.o: ../../src/renderer//Hdr.cpp ../../src/renderer//Renderer.h \
|
|
|
+ ../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
+ ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
+ ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
+ ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
@@ -589,11 +475,14 @@ BulletDebuger.o: ../../src/renderer//BulletDebuger.cpp \
|
|
|
../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
- ../../src/uncategorized/collision.h ../../src/scene/Node.h
|
|
|
- @echo Compiling ../../src/renderer//BulletDebuger.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//BulletDebuger.cpp -o BulletDebuger.o
|
|
|
+ ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/resources/Texture.h \
|
|
|
+ ../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
+ ../../src/renderer//Fbo.h
|
|
|
+ @echo Compiling ../../src/renderer//Hdr.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Hdr.cpp -o Hdr.o
|
|
|
|
|
|
-r_bs.o: ../../src/renderer//r_bs.cpp ../../src/renderer//renderer.h \
|
|
|
+Ssao.o: ../../src/renderer//Ssao.cpp ../../src/renderer//Renderer.h \
|
|
|
../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
@@ -609,20 +498,18 @@ r_bs.o: ../../src/renderer//r_bs.cpp ../../src/renderer//renderer.h \
|
|
|
../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/resources/Texture.h \
|
|
|
../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
- ../../src/resources/Texture.h ../../src/resources/Mesh.h \
|
|
|
- ../../src/renderer/Vbo.h ../../src/resources/Resource.h \
|
|
|
- ../../src/renderer//Fbo.h ../../src/scene/MeshNode.h \
|
|
|
- ../../src/resources/Material.h
|
|
|
- @echo Compiling ../../src/renderer//r_bs.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_bs.cpp -o r_bs.o
|
|
|
+ ../../src/renderer//Fbo.h
|
|
|
+ @echo Compiling ../../src/renderer//Ssao.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Ssao.cpp -o Ssao.o
|
|
|
|
|
|
-r_ms_earlyz.o: ../../src/renderer//r_ms_earlyz.cpp \
|
|
|
- ../../src/renderer//renderer.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
- ../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
- ../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
- ../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+Lscatt.o: ../../src/renderer//Lscatt.cpp ../../src/renderer//Renderer.h \
|
|
|
+ ../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
+ ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
+ ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
+ ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
@@ -636,10 +523,10 @@ r_ms_earlyz.o: ../../src/renderer//r_ms_earlyz.cpp \
|
|
|
../../src/resources/Resource.h ../../src/resources/Texture.h \
|
|
|
../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
../../src/renderer//Fbo.h
|
|
|
- @echo Compiling ../../src/renderer//r_ms_earlyz.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_ms_earlyz.cpp -o r_ms_earlyz.o
|
|
|
+ @echo Compiling ../../src/renderer//Lscatt.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Lscatt.cpp -o Lscatt.o
|
|
|
|
|
|
-r_is.o: ../../src/renderer//r_is.cpp ../../src/renderer//renderer.h \
|
|
|
+Bs2.o: ../../src/renderer//Bs2.cpp ../../src/renderer//Renderer.h \
|
|
|
../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
@@ -657,18 +544,18 @@ r_is.o: ../../src/renderer//r_is.cpp ../../src/renderer//renderer.h \
|
|
|
../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
../../src/resources/Texture.h ../../src/resources/Mesh.h \
|
|
|
- ../../src/renderer/Vbo.h ../../src/scene/Light.h \
|
|
|
- ../../src/scene/Camera.h ../../src/resources/Resource.h \
|
|
|
- ../../src/renderer//Fbo.h ../../src/resources/LightProps.h
|
|
|
- @echo Compiling ../../src/renderer//r_is.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_is.cpp -o r_is.o
|
|
|
+ ../../src/renderer/Vbo.h ../../src/resources/Resource.h \
|
|
|
+ ../../src/renderer//Fbo.h ../../src/scene/MeshNode.h \
|
|
|
+ ../../src/resources/Material.h
|
|
|
+ @echo Compiling ../../src/renderer//Bs2.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Bs2.cpp -o Bs2.o
|
|
|
|
|
|
-r_pps_lscatt.o: ../../src/renderer//r_pps_lscatt.cpp \
|
|
|
- ../../src/renderer//renderer.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
- ../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
- ../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
- ../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+Ms.o: ../../src/renderer//Ms.cpp ../../src/renderer//Renderer.h \
|
|
|
+ ../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
+ ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
+ ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
+ ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
@@ -679,15 +566,16 @@ r_pps_lscatt.o: ../../src/renderer//r_pps_lscatt.cpp \
|
|
|
../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
- ../../src/resources/Resource.h ../../src/resources/Texture.h \
|
|
|
../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
- ../../src/renderer//Fbo.h
|
|
|
- @echo Compiling ../../src/renderer//r_pps_lscatt.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps_lscatt.cpp -o r_pps_lscatt.o
|
|
|
+ ../../src/resources/Texture.h ../../src/resources/Mesh.h \
|
|
|
+ ../../src/renderer/Vbo.h ../../src/renderer//Fbo.h \
|
|
|
+ ../../src/resources/Material.h ../../src/scene/MeshNode.h
|
|
|
+ @echo Compiling ../../src/renderer//Ms.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Ms.cpp -o Ms.o
|
|
|
|
|
|
-MeshNode.o: ../../src/scene//MeshNode.cpp ../../src/scene//MeshNode.h \
|
|
|
+Pps.o: ../../src/renderer//Pps.cpp ../../src/renderer//Renderer.h \
|
|
|
../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
- ../../src/scene//Node.h ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
@@ -697,22 +585,18 @@ MeshNode.o: ../../src/scene//MeshNode.cpp ../../src/scene//MeshNode.h \
|
|
|
../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/resources/Material.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
- ../../src/utility/Common.h ../../src/resources/Resource.h \
|
|
|
- ../../src/resources/Mesh.h ../../src/renderer/Vbo.h \
|
|
|
- ../../src/uncategorized/collision.h ../../src/renderer/renderer.h \
|
|
|
- ../../src/resources/ShaderProg.h ../../src/scene/Camera.h \
|
|
|
- ../../src/scene/Node.h ../../src/scene//SkelNode.h \
|
|
|
- ../../src/controllers/Controller.h ../../src/resources/Skeleton.h \
|
|
|
- ../../src/controllers/MeshSkelNodeCtrl.h \
|
|
|
- ../../src/controllers/Controller.h ../../src/controllers/SkelAnimCtrl.h
|
|
|
- @echo Compiling ../../src/scene//MeshNode.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//MeshNode.cpp -o MeshNode.o
|
|
|
+ ../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
+ ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/resources/Texture.h \
|
|
|
+ ../../src/renderer//Fbo.h
|
|
|
+ @echo Compiling ../../src/renderer//Pps.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Pps.cpp -o Pps.o
|
|
|
|
|
|
-SkelNode.o: ../../src/scene//SkelNode.cpp ../../src/scene//SkelNode.h \
|
|
|
+Earlyz.o: ../../src/renderer//Earlyz.cpp ../../src/renderer//Renderer.h \
|
|
|
../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
- ../../src/scene//Node.h ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
@@ -722,17 +606,17 @@ SkelNode.o: ../../src/scene//SkelNode.cpp ../../src/scene//SkelNode.h \
|
|
|
../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/controllers/Controller.h \
|
|
|
- ../../src/renderer/renderer.h ../../src/resources/ShaderProg.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
- ../../src/resources/SkelAnim.h ../../src/resources/Skeleton.h \
|
|
|
- ../../src/controllers/SkelAnimCtrl.h ../../src/controllers/Controller.h
|
|
|
- @echo Compiling ../../src/scene//SkelNode.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//SkelNode.cpp -o SkelNode.o
|
|
|
+ ../../src/resources/Resource.h ../../src/resources/Texture.h \
|
|
|
+ ../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
+ ../../src/renderer//Fbo.h
|
|
|
+ @echo Compiling ../../src/renderer//Earlyz.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Earlyz.cpp -o Earlyz.o
|
|
|
|
|
|
-Node.o: ../../src/scene//Node.cpp ../../src/scene//Node.h \
|
|
|
+Bs.o: ../../src/renderer//Bs.cpp ../../src/renderer//Renderer.h \
|
|
|
../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
@@ -744,13 +628,105 @@ Node.o: ../../src/scene//Node.cpp ../../src/scene//Node.h \
|
|
|
../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/renderer/renderer.h \
|
|
|
- ../../src/resources/ShaderProg.h ../../src/resources/Resource.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
+ ../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
+ ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
+ ../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
+ ../../src/resources/Texture.h ../../src/resources/Mesh.h \
|
|
|
+ ../../src/renderer/Vbo.h ../../src/resources/Resource.h \
|
|
|
+ ../../src/renderer//Fbo.h ../../src/scene/MeshNode.h \
|
|
|
+ ../../src/resources/Material.h
|
|
|
+ @echo Compiling ../../src/renderer//Bs.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Bs.cpp -o Bs.o
|
|
|
+
|
|
|
+Is.o: ../../src/renderer//Is.cpp ../../src/renderer//Renderer.h \
|
|
|
+ ../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
+ ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
+ ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
+ ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+ ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
+ ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
+ ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
+ ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
+ ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
+ ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
+ ../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
+ ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
+ ../../src/scene/Scene.h ../../src/uncategorized/skybox.h \
|
|
|
+ ../../src/resources/Texture.h ../../src/resources/Mesh.h \
|
|
|
+ ../../src/renderer/Vbo.h ../../src/scene/Light.h \
|
|
|
+ ../../src/scene/Camera.h ../../src/resources/Resource.h \
|
|
|
+ ../../src/renderer//Fbo.h ../../src/resources/LightProps.h
|
|
|
+ @echo Compiling ../../src/renderer//Is.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Is.cpp -o Is.o
|
|
|
+
|
|
|
+Renderer.o: ../../src/renderer//Renderer.cpp \
|
|
|
+ ../../src/renderer//Renderer.h ../../src/utility/Common.h \
|
|
|
+ ../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
+ ../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
+ ../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
+ ../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+ ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
+ ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
+ ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
+ ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
+ ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
+ ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
+ ../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
+ ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
+ ../../src/resources/Texture.h ../../src/scene/Scene.h \
|
|
|
+ ../../src/uncategorized/skybox.h ../../src/utility/App.h
|
|
|
+ @echo Compiling ../../src/renderer//Renderer.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//Renderer.cpp -o Renderer.o
|
|
|
+
|
|
|
+SkelNode.o: ../../src/scene//SkelNode.cpp ../../src/scene//SkelNode.h \
|
|
|
+ ../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
+ ../../src/scene//Node.h ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
+ ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
+ ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+ ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
+ ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
+ ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
+ ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
+ ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
+ ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/controllers/Controller.h \
|
|
|
+ ../../src/renderer/Renderer.h ../../src/resources/ShaderProg.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
+ ../../src/utility/Common.h ../../src/scene/Camera.h \
|
|
|
+ ../../src/uncategorized/collision.h ../../src/scene/Node.h \
|
|
|
+ ../../src/resources/SkelAnim.h ../../src/resources/Skeleton.h \
|
|
|
+ ../../src/controllers/SkelAnimCtrl.h ../../src/controllers/Controller.h
|
|
|
+ @echo Compiling ../../src/scene//SkelNode.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//SkelNode.cpp -o SkelNode.o
|
|
|
+
|
|
|
+Light.o: ../../src/scene//Light.cpp ../../src/scene//Light.h \
|
|
|
+ ../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
+ ../../src/resources/Texture.h ../../src/resources/Resource.h \
|
|
|
../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
- ../../src/scene/Camera.h ../../src/uncategorized/collision.h \
|
|
|
- ../../src/scene/Node.h ../../src/controllers/Controller.h
|
|
|
- @echo Compiling ../../src/scene//Node.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//Node.cpp -o Node.o
|
|
|
+ ../../src/scene//Node.h ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
+ ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
+ ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+ ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
+ ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
+ ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
+ ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
+ ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
+ ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/scene//Camera.h \
|
|
|
+ ../../src/uncategorized/collision.h ../../src/renderer/Renderer.h \
|
|
|
+ ../../src/resources/ShaderProg.h ../../src/scene/Camera.h \
|
|
|
+ ../../src/resources/LightProps.h
|
|
|
+ @echo Compiling ../../src/scene//Light.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//Light.cpp -o Light.o
|
|
|
|
|
|
SkelModelNode.o: ../../src/scene//SkelModelNode.cpp \
|
|
|
../../src/scene//SkelModelNode.h ../../src/utility/Common.h \
|
|
|
@@ -775,10 +751,30 @@ SkelModelNode.o: ../../src/scene//SkelModelNode.cpp \
|
|
|
@echo Compiling ../../src/scene//SkelModelNode.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//SkelModelNode.cpp -o SkelModelNode.o
|
|
|
|
|
|
-Light.o: ../../src/scene//Light.cpp ../../src/scene//Light.h \
|
|
|
+Scene.o: ../../src/scene//Scene.cpp ../../src/scene//Scene.h \
|
|
|
+ ../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
+ ../../src/uncategorized/skybox.h ../../src/resources/Texture.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
+ ../../src/utility/Common.h ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
+ ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
+ ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+ ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
+ ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
+ ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
+ ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
+ ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
+ ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/scene//SkelNode.h \
|
|
|
+ ../../src/scene//Node.h ../../src/controllers/Controller.h \
|
|
|
+ ../../src/scene//Camera.h ../../src/uncategorized/collision.h \
|
|
|
+ ../../src/scene//MeshNode.h ../../src/resources/Material.h \
|
|
|
+ ../../src/scene//Light.h
|
|
|
+ @echo Compiling ../../src/scene//Scene.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//Scene.cpp -o Scene.o
|
|
|
+
|
|
|
+MeshNode.o: ../../src/scene//MeshNode.cpp ../../src/scene//MeshNode.h \
|
|
|
../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
- ../../src/resources/Texture.h ../../src/resources/Resource.h \
|
|
|
- ../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
../../src/scene//Node.h ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
@@ -789,12 +785,18 @@ Light.o: ../../src/scene//Light.cpp ../../src/scene//Light.h \
|
|
|
../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/scene//Camera.h \
|
|
|
- ../../src/uncategorized/collision.h ../../src/renderer/renderer.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/resources/Material.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
+ ../../src/utility/Common.h ../../src/resources/Resource.h \
|
|
|
+ ../../src/resources/Mesh.h ../../src/renderer/Vbo.h \
|
|
|
+ ../../src/uncategorized/collision.h ../../src/renderer/Renderer.h \
|
|
|
../../src/resources/ShaderProg.h ../../src/scene/Camera.h \
|
|
|
- ../../src/resources/LightProps.h
|
|
|
- @echo Compiling ../../src/scene//Light.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//Light.cpp -o Light.o
|
|
|
+ ../../src/scene/Node.h ../../src/scene//SkelNode.h \
|
|
|
+ ../../src/controllers/Controller.h ../../src/resources/Skeleton.h \
|
|
|
+ ../../src/controllers/MeshSkelNodeCtrl.h \
|
|
|
+ ../../src/controllers/Controller.h ../../src/controllers/SkelAnimCtrl.h
|
|
|
+ @echo Compiling ../../src/scene//MeshNode.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//MeshNode.cpp -o MeshNode.o
|
|
|
|
|
|
Camera.o: ../../src/scene//Camera.cpp ../../src/scene//Camera.h \
|
|
|
../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
@@ -809,17 +811,15 @@ Camera.o: ../../src/scene//Camera.cpp ../../src/scene//Camera.h \
|
|
|
../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
../../src/math/MathFuncs.inl.h ../../src/scene//Node.h \
|
|
|
- ../../src/renderer/renderer.h ../../src/resources/ShaderProg.h \
|
|
|
+ ../../src/renderer/Renderer.h ../../src/resources/ShaderProg.h \
|
|
|
../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
../../src/utility/Common.h ../../src/scene/Camera.h
|
|
|
@echo Compiling ../../src/scene//Camera.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//Camera.cpp -o Camera.o
|
|
|
|
|
|
-Scene.o: ../../src/scene//Scene.cpp ../../src/scene//Scene.h \
|
|
|
+Node.o: ../../src/scene//Node.cpp ../../src/scene//Node.h \
|
|
|
../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
- ../../src/uncategorized/skybox.h ../../src/resources/Texture.h \
|
|
|
- ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
- ../../src/utility/Common.h ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
@@ -829,16 +829,16 @@ Scene.o: ../../src/scene//Scene.cpp ../../src/scene//Scene.h \
|
|
|
../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/scene//SkelNode.h \
|
|
|
- ../../src/scene//Node.h ../../src/controllers/Controller.h \
|
|
|
- ../../src/scene//Camera.h ../../src/uncategorized/collision.h \
|
|
|
- ../../src/scene//MeshNode.h ../../src/resources/Material.h \
|
|
|
- ../../src/scene//Light.h
|
|
|
- @echo Compiling ../../src/scene//Scene.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//Scene.cpp -o Scene.o
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/renderer/Renderer.h \
|
|
|
+ ../../src/resources/ShaderProg.h ../../src/resources/Resource.h \
|
|
|
+ ../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
+ ../../src/scene/Camera.h ../../src/uncategorized/collision.h \
|
|
|
+ ../../src/scene/Node.h ../../src/controllers/Controller.h
|
|
|
+ @echo Compiling ../../src/scene//Node.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//Node.cpp -o Node.o
|
|
|
|
|
|
Ui.o: ../../src/ui//Ui.cpp ../../src/ui//Ui.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/renderer/renderer.h \
|
|
|
+ ../../src/uncategorized/memory.h ../../src/renderer/Renderer.h \
|
|
|
../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
@@ -857,33 +857,71 @@ Ui.o: ../../src/ui//Ui.cpp ../../src/ui//Ui.h ../../src/utility/Common.h \
|
|
|
@echo Compiling ../../src/ui//Ui.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/ui//Ui.cpp -o Ui.o
|
|
|
|
|
|
-Material.o: ../../src/resources//Material.cpp \
|
|
|
- ../../src/resources//Material.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
- ../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
- ../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
- ../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+LightProps.o: ../../src/resources//LightProps.cpp \
|
|
|
+ ../../src/resources//LightProps.h ../../src/utility/Common.h \
|
|
|
+ ../../src/uncategorized/memory.h ../../src/resources//Resource.h \
|
|
|
+ ../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
+ ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
+ ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
+ ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/resources//Resource.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/tokenizer/parser.h \
|
|
|
+ ../../src/tokenizer/Scanner.h ../../src/resources//Texture.h
|
|
|
+ @echo Compiling ../../src/resources//LightProps.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//LightProps.cpp -o LightProps.o
|
|
|
+
|
|
|
+SkelAnim.o: ../../src/resources//SkelAnim.cpp \
|
|
|
+ ../../src/resources//SkelAnim.h ../../src/utility/Common.h \
|
|
|
+ ../../src/uncategorized/memory.h ../../src/resources//Resource.h \
|
|
|
../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
- ../../src/tokenizer/Scanner.h ../../src/tokenizer/parser.h \
|
|
|
- ../../src/tokenizer/Scanner.h ../../src/resources//Texture.h \
|
|
|
- ../../src/resources//ShaderProg.h ../../src/renderer/renderer.h \
|
|
|
- ../../src/resources/ShaderProg.h ../../src/scene/Camera.h \
|
|
|
- ../../src/uncategorized/collision.h ../../src/scene/Node.h
|
|
|
- @echo Compiling ../../src/resources//Material.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//Material.cpp -o Material.o
|
|
|
+ ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
+ ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
+ ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+ ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
+ ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
+ ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
+ ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
+ ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
+ ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/tokenizer/Scanner.h \
|
|
|
+ ../../src/tokenizer/parser.h ../../src/tokenizer/Scanner.h
|
|
|
+ @echo Compiling ../../src/resources//SkelAnim.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//SkelAnim.cpp -o SkelAnim.o
|
|
|
+
|
|
|
+Mesh.o: ../../src/resources//Mesh.cpp ../../src/resources//Mesh.h \
|
|
|
+ ../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
+ ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
+ ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
+ ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+ ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
+ ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
+ ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
+ ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
+ ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
+ ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/renderer/Vbo.h \
|
|
|
+ ../../src/resources//Resource.h ../../src/utility/Util.h \
|
|
|
+ ../../src/utility/Common.h ../../src/uncategorized/collision.h \
|
|
|
+ ../../src/renderer/Renderer.h ../../src/resources/ShaderProg.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/scene/Camera.h \
|
|
|
+ ../../src/scene/Node.h ../../src/tokenizer/Scanner.h \
|
|
|
+ ../../src/tokenizer/parser.h ../../src/tokenizer/Scanner.h
|
|
|
+ @echo Compiling ../../src/resources//Mesh.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//Mesh.cpp -o Mesh.o
|
|
|
|
|
|
ShaderProg.o: ../../src/resources//ShaderProg.cpp \
|
|
|
../../src/resources//ShaderProg.h ../../src/utility/Common.h \
|
|
|
../../src/uncategorized/memory.h ../../src/resources//Resource.h \
|
|
|
../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
- ../../src/renderer/renderer.h ../../src/math/Math.h \
|
|
|
+ ../../src/renderer/Renderer.h ../../src/math/Math.h \
|
|
|
../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
@@ -900,11 +938,9 @@ ShaderProg.o: ../../src/resources//ShaderProg.cpp \
|
|
|
@echo Compiling ../../src/resources//ShaderProg.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//ShaderProg.cpp -o ShaderProg.o
|
|
|
|
|
|
-Texture.o: ../../src/resources//Texture.cpp \
|
|
|
- ../../src/resources//Texture.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/resources//Resource.h \
|
|
|
- ../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
- ../../src/renderer/renderer.h ../../src/math/Math.h \
|
|
|
+Material.o: ../../src/resources//Material.cpp \
|
|
|
+ ../../src/resources//Material.h ../../src/utility/Common.h \
|
|
|
+ ../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
@@ -914,37 +950,15 @@ Texture.o: ../../src/resources//Texture.cpp \
|
|
|
../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
- ../../src/resources/Resource.h ../../src/scene/Camera.h \
|
|
|
- ../../src/uncategorized/collision.h ../../src/scene/Node.h
|
|
|
- @echo Compiling ../../src/resources//Texture.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//Texture.cpp -o Texture.o
|
|
|
-
|
|
|
-SkelAnim.o: ../../src/resources//SkelAnim.cpp \
|
|
|
- ../../src/resources//SkelAnim.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/resources//Resource.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/resources//Resource.h \
|
|
|
../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
- ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
- ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
- ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
- ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
- ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
- ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
- ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
- ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
- ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
- ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/tokenizer/Scanner.h \
|
|
|
- ../../src/tokenizer/parser.h ../../src/tokenizer/Scanner.h
|
|
|
- @echo Compiling ../../src/resources//SkelAnim.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//SkelAnim.cpp -o SkelAnim.o
|
|
|
-
|
|
|
-Extension.o: ../../src/resources//Extension.cpp \
|
|
|
- ../../src/resources//Extension.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/resources//Resource.h \
|
|
|
- ../../src/utility/Util.h ../../src/utility/Common.h
|
|
|
- @echo Compiling ../../src/resources//Extension.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//Extension.cpp -o Extension.o
|
|
|
+ ../../src/tokenizer/Scanner.h ../../src/tokenizer/parser.h \
|
|
|
+ ../../src/tokenizer/Scanner.h ../../src/resources//Texture.h \
|
|
|
+ ../../src/resources//ShaderProg.h ../../src/renderer/Renderer.h \
|
|
|
+ ../../src/resources/ShaderProg.h ../../src/scene/Camera.h \
|
|
|
+ ../../src/uncategorized/collision.h ../../src/scene/Node.h
|
|
|
+ @echo Compiling ../../src/resources//Material.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//Material.cpp -o Material.o
|
|
|
|
|
|
ShaderParser.o: ../../src/resources//ShaderParser.cpp \
|
|
|
../../src/resources//ShaderParser.h ../../src/utility/Common.h \
|
|
|
@@ -954,6 +968,13 @@ ShaderParser.o: ../../src/resources//ShaderParser.cpp \
|
|
|
@echo Compiling ../../src/resources//ShaderParser.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//ShaderParser.cpp -o ShaderParser.o
|
|
|
|
|
|
+Extension.o: ../../src/resources//Extension.cpp \
|
|
|
+ ../../src/resources//Extension.h ../../src/utility/Common.h \
|
|
|
+ ../../src/uncategorized/memory.h ../../src/resources//Resource.h \
|
|
|
+ ../../src/utility/Util.h ../../src/utility/Common.h
|
|
|
+ @echo Compiling ../../src/resources//Extension.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//Extension.cpp -o Extension.o
|
|
|
+
|
|
|
Skeleton.o: ../../src/resources//Skeleton.cpp \
|
|
|
../../src/resources//Skeleton.h ../../src/utility/Common.h \
|
|
|
../../src/uncategorized/memory.h ../../src/math/Math.h \
|
|
|
@@ -973,6 +994,26 @@ Skeleton.o: ../../src/resources//Skeleton.cpp \
|
|
|
@echo Compiling ../../src/resources//Skeleton.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//Skeleton.cpp -o Skeleton.o
|
|
|
|
|
|
+Texture.o: ../../src/resources//Texture.cpp \
|
|
|
+ ../../src/resources//Texture.h ../../src/utility/Common.h \
|
|
|
+ ../../src/uncategorized/memory.h ../../src/resources//Resource.h \
|
|
|
+ ../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
+ ../../src/renderer/Renderer.h ../../src/math/Math.h \
|
|
|
+ ../../src/math/Vec2.h ../../src/math/MathForwardDecls.h \
|
|
|
+ ../../src/math/Vec2.inl.h ../../src/math/MathDfltHeader.h \
|
|
|
+ ../../src/math/Vec3.h ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+ ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
+ ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
+ ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
+ ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
+ ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
+ ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/resources/ShaderProg.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/scene/Camera.h \
|
|
|
+ ../../src/uncategorized/collision.h ../../src/scene/Node.h
|
|
|
+ @echo Compiling ../../src/resources//Texture.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//Texture.cpp -o Texture.o
|
|
|
+
|
|
|
Resource.o: ../../src/resources//Resource.cpp \
|
|
|
../../src/resources//Resource.h ../../src/utility/Common.h \
|
|
|
../../src/uncategorized/memory.h ../../src/utility/Util.h \
|
|
|
@@ -994,47 +1035,6 @@ Resource.o: ../../src/resources//Resource.cpp \
|
|
|
@echo Compiling ../../src/resources//Resource.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//Resource.cpp -o Resource.o
|
|
|
|
|
|
-LightProps.o: ../../src/resources//LightProps.cpp \
|
|
|
- ../../src/resources//LightProps.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/resources//Resource.h \
|
|
|
- ../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
- ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
- ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
- ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
- ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
- ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
- ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
- ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
- ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
- ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
- ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/tokenizer/parser.h \
|
|
|
- ../../src/tokenizer/Scanner.h ../../src/resources//Texture.h
|
|
|
- @echo Compiling ../../src/resources//LightProps.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//LightProps.cpp -o LightProps.o
|
|
|
-
|
|
|
-Mesh.o: ../../src/resources//Mesh.cpp ../../src/resources//Mesh.h \
|
|
|
- ../../src/utility/Common.h ../../src/uncategorized/memory.h \
|
|
|
- ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
- ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
- ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
- ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
- ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
- ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
- ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
- ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
- ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
- ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/renderer/Vbo.h \
|
|
|
- ../../src/resources//Resource.h ../../src/utility/Util.h \
|
|
|
- ../../src/utility/Common.h ../../src/uncategorized/collision.h \
|
|
|
- ../../src/renderer/renderer.h ../../src/resources/ShaderProg.h \
|
|
|
- ../../src/resources/Resource.h ../../src/scene/Camera.h \
|
|
|
- ../../src/scene/Node.h ../../src/tokenizer/Scanner.h \
|
|
|
- ../../src/tokenizer/parser.h ../../src/tokenizer/Scanner.h
|
|
|
- @echo Compiling ../../src/resources//Mesh.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//Mesh.cpp -o Mesh.o
|
|
|
-
|
|
|
Input.o: ../../src/utility//Input.cpp ../../src/utility//Input.h \
|
|
|
../../src/utility//Common.h ../../src/uncategorized/memory.h \
|
|
|
../../src/utility/Common.h ../../src/utility//App.h \
|
|
|
@@ -1048,7 +1048,7 @@ Input.o: ../../src/utility//Input.cpp ../../src/utility//Input.h \
|
|
|
../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h ../../src/renderer/renderer.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h ../../src/renderer/Renderer.h \
|
|
|
../../src/resources/ShaderProg.h ../../src/resources/Resource.h \
|
|
|
../../src/utility/Util.h ../../src/utility/Common.h \
|
|
|
../../src/scene/Camera.h ../../src/uncategorized/collision.h \
|
|
|
@@ -1072,25 +1072,6 @@ Util.o: ../../src/utility//Util.cpp ../../src/utility//Util.h \
|
|
|
@echo Compiling ../../src/utility//Util.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/utility//Util.cpp -o Util.o
|
|
|
|
|
|
-Controller.o: ../../src/controllers//Controller.cpp \
|
|
|
- ../../src/controllers//Controller.h ../../src/utility/Common.h \
|
|
|
- ../../src/uncategorized/memory.h ../../src/scene/Scene.h \
|
|
|
- ../../src/uncategorized/skybox.h ../../src/resources/Texture.h \
|
|
|
- ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
- ../../src/utility/Common.h ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
- ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
- ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
- ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
- ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
- ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
- ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
- ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
- ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
- ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
- ../../src/math/MathFuncs.inl.h
|
|
|
- @echo Compiling ../../src/controllers//Controller.cpp...
|
|
|
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/controllers//Controller.cpp -o Controller.o
|
|
|
-
|
|
|
SkelAnimCtrl.o: ../../src/controllers//SkelAnimCtrl.cpp \
|
|
|
../../src/controllers//SkelAnimCtrl.h ../../src/utility/Common.h \
|
|
|
../../src/uncategorized/memory.h ../../src/controllers//Controller.h \
|
|
|
@@ -1108,12 +1089,31 @@ SkelAnimCtrl.o: ../../src/controllers//SkelAnimCtrl.cpp \
|
|
|
../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
../../src/utility/Common.h ../../src/scene/SkelNode.h \
|
|
|
../../src/scene/Node.h ../../src/controllers/Controller.h \
|
|
|
- ../../src/resources/Skeleton.h ../../src/renderer/renderer.h \
|
|
|
+ ../../src/resources/Skeleton.h ../../src/renderer/Renderer.h \
|
|
|
../../src/resources/ShaderProg.h ../../src/scene/Camera.h \
|
|
|
../../src/uncategorized/collision.h
|
|
|
@echo Compiling ../../src/controllers//SkelAnimCtrl.cpp...
|
|
|
@$(CXX) $(INCPATH) $(CFLAGS) ../../src/controllers//SkelAnimCtrl.cpp -o SkelAnimCtrl.o
|
|
|
|
|
|
+Controller.o: ../../src/controllers//Controller.cpp \
|
|
|
+ ../../src/controllers//Controller.h ../../src/utility/Common.h \
|
|
|
+ ../../src/uncategorized/memory.h ../../src/scene/Scene.h \
|
|
|
+ ../../src/uncategorized/skybox.h ../../src/resources/Texture.h \
|
|
|
+ ../../src/resources/Resource.h ../../src/utility/Util.h \
|
|
|
+ ../../src/utility/Common.h ../../src/math/Math.h ../../src/math/Vec2.h \
|
|
|
+ ../../src/math/MathForwardDecls.h ../../src/math/Vec2.inl.h \
|
|
|
+ ../../src/math/MathDfltHeader.h ../../src/math/Vec3.h \
|
|
|
+ ../../src/math/Vec3.inl.h ../../src/math/Vec4.h \
|
|
|
+ ../../src/math/Vec4.inl.h ../../src/math/Quat.h \
|
|
|
+ ../../src/math/Quat.inl.h ../../src/math/Axisang.h \
|
|
|
+ ../../src/math/Axisang.inl.h ../../src/math/Euler.h \
|
|
|
+ ../../src/math/Euler.inl.h ../../src/math/Mat3.h \
|
|
|
+ ../../src/math/Mat3.inl.h ../../src/math/Mat4.h \
|
|
|
+ ../../src/math/Mat4.inl.h ../../src/math/MathFuncs.h \
|
|
|
+ ../../src/math/MathFuncs.inl.h
|
|
|
+ @echo Compiling ../../src/controllers//Controller.cpp...
|
|
|
+ @$(CXX) $(INCPATH) $(CFLAGS) ../../src/controllers//Controller.cpp -o Controller.o
|
|
|
+
|
|
|
clean:
|
|
|
rm -f *.o
|
|
|
rm -f *.gch
|