Makefile 208 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234
  1. CXX = g++
  2. CFLAGS = -c -pedantic-errors -pedantic -ansi -Wall -Wextra -W -pipe -O0 -g3 -pg -fsingle-precision-constant -DDEBUG_ENABLED -DPLATFORM_LINUX -DREVISION=\"`svnversion -c ../..`\"
  3. PHFLAGS = -c -pedantic-errors -pedantic -ansi -Wall -Wextra -W -pipe -O0 -g3 -pg -fsingle-precision-constant -DDEBUG_ENABLED -DPLATFORM_LINUX -DREVISION=\"`svnversion -c ../..`\" -x
  4. LFLAGS = -rdynamic -L../../../SDL-hg/build/.libs -L../../../glew/lib -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 -lSDL -Wl,-Bdynamic -lGL -ljpeg -lpng -ltiff
  5. EXECUTABLE = AnKi.bin
  6. INCPATH = -I../../src/Math/ -I../../src/Util/Tokenizer/ -I../../src/Misc/ -I../../src/ -I../../src/Renderer/ -I../../src/Scene/ -I../../src/Ui/ -I../../src/Resources/ -I../../src/Util/ -I../../src/Scene/Controllers/ -I../../src/Physics/ -I../../src/Renderer/BufferObjects/ -I../../src/Resources/Helpers/ -I../../../bullet_svn/src/ -I../../../SDL-hg/include -I../../glew/include
  7. SOURCES = ../../src/Util/Tokenizer//Scanner.cpp ../../src/Misc//skybox.cpp ../../src/Misc//memory.cpp ../../src/Misc//collision.cpp ../../src/Misc//map.cpp ../../src//Main.cpp ../../src/Renderer//Sm.cpp ../../src/Renderer//Pps.cpp ../../src/Renderer//Renderer.cpp ../../src/Renderer//Ssao.cpp ../../src/Renderer//Is.cpp ../../src/Renderer//MainRenderer.cpp ../../src/Renderer//Ms.cpp ../../src/Renderer//Hdr.cpp ../../src/Renderer//Smo.cpp ../../src/Renderer//Ez.cpp ../../src/Renderer//Dbg.cpp ../../src/Scene//MeshNode.cpp ../../src/Scene//SkelNode.cpp ../../src/Scene//SkelModelNode.cpp ../../src/Scene//Light.cpp ../../src/Scene//Camera.cpp ../../src/Scene//Scene.cpp ../../src/Scene//ParticleEmitter.cpp ../../src/Scene//SceneNode.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//Skeleton.cpp ../../src/Resources//Resource.cpp ../../src/Resources//LightProps.cpp ../../src/Resources//Mesh.cpp ../../src/Util//Input.cpp ../../src/Util//App.cpp ../../src/Util//Common.cpp ../../src/Util//Util.cpp ../../src/Scene/Controllers//Controller.cpp ../../src/Scene/Controllers//SkelAnimCtrl.cpp ../../src/Physics//PhyWorld.cpp ../../src/Resources/Helpers//ShaderPrePreprocessor.cpp ../../src/Resources/Helpers//Image.cpp
  8. OBJECTS = Scanner.o skybox.o memory.o collision.o map.o Main.o Sm.o Pps.o Renderer.o Ssao.o Is.o MainRenderer.o Ms.o Hdr.o Smo.o Ez.o Dbg.o MeshNode.o SkelNode.o SkelModelNode.o Light.o Camera.o Scene.o ParticleEmitter.o SceneNode.o Ui.o Material.o ShaderProg.o Texture.o SkelAnim.o Extension.o Skeleton.o Resource.o LightProps.o Mesh.o Input.o App.o Common.o Util.o Controller.o SkelAnimCtrl.o PhyWorld.o ShaderPrePreprocessor.o Image.o
  9. PRECOMPILED_HEADERS =
  10. all: $(PRECOMPILED_HEADERS) $(SOURCES) $(EXECUTABLE)
  11. $(EXECUTABLE): $(OBJECTS)
  12. @echo Linking...
  13. @$(CXX) $(OBJECTS) $(LFLAGS) -o $(EXECUTABLE)
  14. @echo All Done!
  15. Scanner.o: ../../src/Util/Tokenizer//Scanner.cpp \
  16. ../../src/Util/Tokenizer//Scanner.h ../../src/Util/Common.h \
  17. ../../src/Misc/memory.h
  18. @echo Compiling ../../src/Util/Tokenizer//Scanner.cpp...
  19. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util/Tokenizer//Scanner.cpp -o Scanner.o
  20. skybox.o: ../../src/Misc//skybox.cpp ../../src/Misc//skybox.h \
  21. ../../src/Util/Common.h ../../src/Misc/memory.h \
  22. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  23. ../../src/Util/Util.h ../../src/Util/Common.h ../../src/Math/Math.h \
  24. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  25. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  26. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  27. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  28. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  29. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  30. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  31. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  32. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  33. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  34. ../../src/Math/Transform.inl.h ../../src/Resources/Resource.h \
  35. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  36. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  37. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Scene/Camera.h \
  38. ../../src/Misc/collision.h ../../src/Scene/SceneNode.h \
  39. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  40. ../../src/Physics/PhyWorld.h ../../src/Physics/PhyCommon.h \
  41. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  42. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  43. ../../../bullet_svn/src/LinearMath/btVector3.h \
  44. ../../../bullet_svn/src/LinearMath/btScalar.h \
  45. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  46. ../../../bullet_svn/src/LinearMath/btTransform.h \
  47. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  48. ../../../bullet_svn/src/LinearMath/btVector3.h \
  49. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  50. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  51. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  52. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  53. ../../../bullet_svn/src/LinearMath/btTransform.h \
  54. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  55. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  56. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  57. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  58. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  59. ../../../bullet_svn/src/LinearMath/btScalar.h \
  60. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  61. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  62. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  63. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  64. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  65. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  66. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  67. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  68. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  69. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  70. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  71. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  72. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  73. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  74. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  75. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  76. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  77. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  78. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  79. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  80. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  81. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  82. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  83. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  84. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  85. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  86. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  87. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  88. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  89. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  90. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  91. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  92. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  93. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  94. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  95. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  96. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  97. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  98. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  99. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  100. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  101. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  102. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  103. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  104. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  105. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  106. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  107. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  108. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  109. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  110. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  111. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  112. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  113. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  114. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  115. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  116. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  117. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  118. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  119. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  120. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  121. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  122. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  123. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  124. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  125. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  126. ../../../bullet_svn/src/LinearMath/btTransform.h \
  127. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  128. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  129. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  130. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  131. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  132. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  133. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  134. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  135. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  136. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  137. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  138. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  139. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  140. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  141. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  142. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  143. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  144. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  145. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  146. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  147. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  148. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  149. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  150. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  151. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  152. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  153. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  154. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  155. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  156. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  157. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  158. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  159. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  160. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  161. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  162. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  163. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  164. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  165. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  166. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  167. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  168. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  169. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  170. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  171. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  172. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  173. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  174. ../../src/Scene/SceneNode.h ../../src/Physics/PhyWorld.h \
  175. ../../src/Util/App.h ../../../SDL-hg/include/SDL.h \
  176. ../../../SDL-hg/include/SDL_main.h ../../../SDL-hg/include/SDL_stdinc.h \
  177. ../../../SDL-hg/include/SDL_config.h \
  178. ../../../SDL-hg/include/SDL_platform.h \
  179. ../../../SDL-hg/include/begin_code.h \
  180. ../../../SDL-hg/include/close_code.h \
  181. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  182. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  183. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  184. ../../../SDL-hg/include/SDL_rwops.h \
  185. ../../../SDL-hg/include/SDL_cpuinfo.h \
  186. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  187. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  188. ../../../SDL-hg/include/SDL_surface.h \
  189. ../../../SDL-hg/include/SDL_keyboard.h \
  190. ../../../SDL-hg/include/SDL_keysym.h \
  191. ../../../SDL-hg/include/SDL_scancode.h \
  192. ../../../SDL-hg/include/SDL_mouse.h \
  193. ../../../SDL-hg/include/SDL_joystick.h \
  194. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  195. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  196. ../../../SDL-hg/include/SDL_version.h \
  197. ../../../SDL-hg/include/SDL_revision.h \
  198. ../../../SDL-hg/include/SDL_compat.h ../../src/Renderer/MainRenderer.h \
  199. ../../src/Renderer/Renderer.h
  200. @echo Compiling ../../src/Misc//skybox.cpp...
  201. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc//skybox.cpp -o skybox.o
  202. memory.o: ../../src/Misc//memory.cpp ../../src/Misc//memory.h \
  203. ../../src/Util/Common.h ../../src/Misc/memory.h \
  204. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  205. ../../../SDL-hg/include/SDL_stdinc.h \
  206. ../../../SDL-hg/include/SDL_config.h \
  207. ../../../SDL-hg/include/SDL_platform.h \
  208. ../../../SDL-hg/include/begin_code.h \
  209. ../../../SDL-hg/include/close_code.h \
  210. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  211. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  212. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  213. ../../../SDL-hg/include/SDL_rwops.h \
  214. ../../../SDL-hg/include/SDL_cpuinfo.h \
  215. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  216. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  217. ../../../SDL-hg/include/SDL_surface.h \
  218. ../../../SDL-hg/include/SDL_keyboard.h \
  219. ../../../SDL-hg/include/SDL_keysym.h \
  220. ../../../SDL-hg/include/SDL_scancode.h \
  221. ../../../SDL-hg/include/SDL_mouse.h \
  222. ../../../SDL-hg/include/SDL_joystick.h \
  223. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  224. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  225. ../../../SDL-hg/include/SDL_version.h \
  226. ../../../SDL-hg/include/SDL_revision.h \
  227. ../../../SDL-hg/include/SDL_compat.h
  228. @echo Compiling ../../src/Misc//memory.cpp...
  229. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc//memory.cpp -o memory.o
  230. collision.o: ../../src/Misc//collision.cpp ../../src/Misc//collision.h \
  231. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  232. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  233. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  234. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  235. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  236. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  237. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  238. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  239. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  240. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  241. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  242. ../../src/Math/Transform.inl.h ../../src/Renderer/MainRenderer.h \
  243. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  244. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  245. ../../src/Util/Util.h ../../src/Util/Common.h \
  246. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  247. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/App.h \
  248. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  249. ../../../SDL-hg/include/SDL_stdinc.h \
  250. ../../../SDL-hg/include/SDL_config.h \
  251. ../../../SDL-hg/include/SDL_platform.h \
  252. ../../../SDL-hg/include/begin_code.h \
  253. ../../../SDL-hg/include/close_code.h \
  254. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  255. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  256. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  257. ../../../SDL-hg/include/SDL_rwops.h \
  258. ../../../SDL-hg/include/SDL_cpuinfo.h \
  259. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  260. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  261. ../../../SDL-hg/include/SDL_surface.h \
  262. ../../../SDL-hg/include/SDL_keyboard.h \
  263. ../../../SDL-hg/include/SDL_keysym.h \
  264. ../../../SDL-hg/include/SDL_scancode.h \
  265. ../../../SDL-hg/include/SDL_mouse.h \
  266. ../../../SDL-hg/include/SDL_joystick.h \
  267. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  268. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  269. ../../../SDL-hg/include/SDL_version.h \
  270. ../../../SDL-hg/include/SDL_revision.h \
  271. ../../../SDL-hg/include/SDL_compat.h
  272. @echo Compiling ../../src/Misc//collision.cpp...
  273. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc//collision.cpp -o collision.o
  274. map.o: ../../src/Misc//map.cpp ../../src/Misc//map.h \
  275. ../../src/Util/Common.h ../../src/Misc/memory.h \
  276. ../../src/Misc//collision.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  277. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  278. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  279. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  280. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  281. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  282. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  283. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  284. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  285. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  286. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  287. ../../src/Math/Transform.inl.h ../../src/Resources/Mesh.h \
  288. ../../src/Renderer/BufferObjects/Vbo.h \
  289. ../../src/Renderer/BufferObjects/BufferObject.h \
  290. ../../src/Resources/Resource.h ../../src/Util/Util.h \
  291. ../../src/Util/Common.h ../../src/Misc/collision.h \
  292. ../../src/Util/Tokenizer/Scanner.h ../../src/Util/Tokenizer/Parser.h \
  293. ../../src/Util/Tokenizer/Scanner.h ../../src/Resources/Resource.h \
  294. ../../src/Scene/Camera.h ../../src/Scene/SceneNode.h
  295. @echo Compiling ../../src/Misc//map.cpp...
  296. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc//map.cpp -o map.o
  297. Main.o: ../../src//Main.cpp ../../src/Util/Common.h \
  298. ../../src/Misc/memory.h ../../src/Util/Input.h \
  299. ../../../SDL-hg/include/SDL_scancode.h \
  300. ../../../SDL-hg/include/SDL_stdinc.h \
  301. ../../../SDL-hg/include/SDL_config.h \
  302. ../../../SDL-hg/include/SDL_platform.h \
  303. ../../../SDL-hg/include/begin_code.h \
  304. ../../../SDL-hg/include/close_code.h ../../src/Util/Common.h \
  305. ../../src/Util/App.h ../../../SDL-hg/include/SDL.h \
  306. ../../../SDL-hg/include/SDL_main.h ../../../SDL-hg/include/SDL_atomic.h \
  307. ../../../SDL-hg/include/SDL_audio.h ../../../SDL-hg/include/SDL_error.h \
  308. ../../../SDL-hg/include/SDL_endian.h ../../../SDL-hg/include/SDL_mutex.h \
  309. ../../../SDL-hg/include/SDL_thread.h ../../../SDL-hg/include/SDL_rwops.h \
  310. ../../../SDL-hg/include/SDL_cpuinfo.h \
  311. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  312. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  313. ../../../SDL-hg/include/SDL_surface.h \
  314. ../../../SDL-hg/include/SDL_keyboard.h \
  315. ../../../SDL-hg/include/SDL_keysym.h \
  316. ../../../SDL-hg/include/SDL_scancode.h \
  317. ../../../SDL-hg/include/SDL_mouse.h \
  318. ../../../SDL-hg/include/SDL_joystick.h \
  319. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  320. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  321. ../../../SDL-hg/include/SDL_version.h \
  322. ../../../SDL-hg/include/SDL_revision.h \
  323. ../../../SDL-hg/include/SDL_compat.h ../../src/Math/Math.h \
  324. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  325. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  326. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  327. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  328. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  329. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  330. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  331. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  332. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  333. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  334. ../../src/Math/Transform.inl.h ../../src/Scene/Camera.h \
  335. ../../src/Misc/collision.h ../../src/Scene/SceneNode.h \
  336. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  337. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  338. ../../src/Util/Util.h ../../src/Resources/ShaderProg.h \
  339. ../../src/Renderer/BufferObjects/Vbo.h \
  340. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Ui/Ui.h \
  341. ../../src/Util/App.h ../../src/Resources/Mesh.h ../../src/Scene/Light.h \
  342. ../../src/Scene/Camera.h ../../src/Resources/Material.h \
  343. ../../src/Resources/ShaderProg.h ../../src/Resources/Resource.h \
  344. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  345. ../../src/Physics/PhyWorld.h ../../src/Physics/PhyCommon.h \
  346. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  347. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  348. ../../../bullet_svn/src/LinearMath/btVector3.h \
  349. ../../../bullet_svn/src/LinearMath/btScalar.h \
  350. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  351. ../../../bullet_svn/src/LinearMath/btTransform.h \
  352. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  353. ../../../bullet_svn/src/LinearMath/btVector3.h \
  354. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  355. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  356. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  357. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  358. ../../../bullet_svn/src/LinearMath/btTransform.h \
  359. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  360. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  361. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  362. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  363. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  364. ../../../bullet_svn/src/LinearMath/btScalar.h \
  365. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  366. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  367. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  368. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  369. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  370. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  371. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  372. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  373. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  374. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  375. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  376. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  377. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  378. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  379. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  380. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  381. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  382. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  383. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  384. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  385. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  386. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  387. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  388. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  389. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  390. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  391. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  392. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  393. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  394. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  395. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  396. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  397. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  398. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  399. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  400. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  401. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  402. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  403. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  404. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  405. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  406. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  407. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  408. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  409. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  410. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  411. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  412. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  413. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  414. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  415. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  416. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  417. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  418. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  419. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  420. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  421. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  422. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  423. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  424. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  425. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  426. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  427. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  428. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  429. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  430. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  431. ../../../bullet_svn/src/LinearMath/btTransform.h \
  432. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  433. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  434. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  435. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  436. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  437. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  438. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  439. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  440. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  441. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  442. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  443. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  444. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  445. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  446. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  447. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  448. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  449. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  450. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  451. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  452. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  453. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  454. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  455. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  456. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  457. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  458. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  459. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  460. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  461. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  462. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  463. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  464. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  465. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  466. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  467. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  468. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  469. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  470. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  471. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  472. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  473. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  474. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  475. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  476. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  477. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  478. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  479. ../../src/Scene/SceneNode.h ../../src/Physics/PhyWorld.h \
  480. ../../src/Util/Tokenizer/Scanner.h ../../src/Misc/map.h \
  481. ../../src/Misc/collision.h ../../src/Scene/MeshNode.h \
  482. ../../src/Scene/SkelModelNode.h ../../src/Scene/MeshNode.h \
  483. ../../src/Resources/SkelAnim.h \
  484. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h \
  485. ../../src/Scene/Controllers/Controller.h \
  486. ../../src/Scene/Controllers/SkelAnimCtrl.h ../../src/Scene/SkelNode.h \
  487. ../../src/Scene/Controllers/Controller.h \
  488. ../../src/Resources/LightProps.h ../../src/Physics/PhyCommon.h \
  489. ../../src/Util/Tokenizer/Parser.h ../../src/Util/Tokenizer/Scanner.h \
  490. ../../src/Scene/ParticleEmitter.h ../../src/Scene/GhostNode.h \
  491. ../../src/Physics/PhyCharacter.h \
  492. ../../src/Renderer/RendererInitializer.h \
  493. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h
  494. @echo Compiling ../../src//Main.cpp...
  495. @$(CXX) $(INCPATH) $(CFLAGS) ../../src//Main.cpp -o Main.o
  496. Sm.o: ../../src/Renderer//Sm.cpp ../../src/Renderer//Renderer.h \
  497. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  498. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  499. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  500. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  501. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  502. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  503. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  504. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  505. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  506. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  507. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  508. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  509. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  510. ../../src/Util/Util.h ../../src/Util/Common.h \
  511. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  512. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/App.h \
  513. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  514. ../../../SDL-hg/include/SDL_stdinc.h \
  515. ../../../SDL-hg/include/SDL_config.h \
  516. ../../../SDL-hg/include/SDL_platform.h \
  517. ../../../SDL-hg/include/begin_code.h \
  518. ../../../SDL-hg/include/close_code.h \
  519. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  520. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  521. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  522. ../../../SDL-hg/include/SDL_rwops.h \
  523. ../../../SDL-hg/include/SDL_cpuinfo.h \
  524. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  525. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  526. ../../../SDL-hg/include/SDL_surface.h \
  527. ../../../SDL-hg/include/SDL_keyboard.h \
  528. ../../../SDL-hg/include/SDL_keysym.h \
  529. ../../../SDL-hg/include/SDL_scancode.h \
  530. ../../../SDL-hg/include/SDL_mouse.h \
  531. ../../../SDL-hg/include/SDL_joystick.h \
  532. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  533. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  534. ../../../SDL-hg/include/SDL_version.h \
  535. ../../../SDL-hg/include/SDL_revision.h \
  536. ../../../SDL-hg/include/SDL_compat.h ../../src/Scene/Scene.h \
  537. ../../src/Misc/skybox.h ../../src/Physics/PhyWorld.h \
  538. ../../src/Physics/PhyCommon.h \
  539. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  540. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  541. ../../../bullet_svn/src/LinearMath/btVector3.h \
  542. ../../../bullet_svn/src/LinearMath/btScalar.h \
  543. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  544. ../../../bullet_svn/src/LinearMath/btTransform.h \
  545. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  546. ../../../bullet_svn/src/LinearMath/btVector3.h \
  547. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  548. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  549. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  550. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  551. ../../../bullet_svn/src/LinearMath/btTransform.h \
  552. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  553. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  554. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  555. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  556. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  557. ../../../bullet_svn/src/LinearMath/btScalar.h \
  558. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  559. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  560. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  561. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  562. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  563. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  564. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  565. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  566. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  567. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  568. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  569. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  570. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  571. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  572. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  573. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  574. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  575. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  576. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  577. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  578. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  579. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  580. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  581. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  582. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  583. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  584. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  585. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  586. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  587. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  588. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  589. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  590. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  591. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  592. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  593. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  594. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  595. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  596. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  597. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  598. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  599. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  600. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  601. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  602. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  603. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  604. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  605. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  606. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  607. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  608. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  609. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  610. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  611. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  612. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  613. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  614. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  615. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  616. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  617. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  618. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  619. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  620. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  621. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  622. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  623. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  624. ../../../bullet_svn/src/LinearMath/btTransform.h \
  625. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  626. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  627. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  628. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  629. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  630. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  631. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  632. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  633. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  634. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  635. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  636. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  637. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  638. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  639. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  640. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  641. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  642. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  643. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  644. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  645. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  646. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  647. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  648. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  649. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  650. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  651. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  652. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  653. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  654. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  655. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  656. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  657. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  658. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  659. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  660. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  661. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  662. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  663. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  664. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  665. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  666. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  667. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  668. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  669. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  670. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  671. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  672. ../../src/Scene/SceneNode.h ../../src/Physics/PhyWorld.h \
  673. ../../src/Scene/MeshNode.h ../../src/Scene/SceneNode.h \
  674. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h
  675. @echo Compiling ../../src/Renderer//Sm.cpp...
  676. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Sm.cpp -o Sm.o
  677. Pps.o: ../../src/Renderer//Pps.cpp ../../src/Renderer//Renderer.h \
  678. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  679. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  680. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  681. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  682. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  683. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  684. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  685. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  686. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  687. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  688. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  689. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  690. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  691. ../../src/Util/Util.h ../../src/Util/Common.h \
  692. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  693. ../../src/Renderer/BufferObjects/BufferObject.h
  694. @echo Compiling ../../src/Renderer//Pps.cpp...
  695. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Pps.cpp -o Pps.o
  696. Renderer.o: ../../src/Renderer//Renderer.cpp \
  697. ../../src/Renderer//Renderer.h ../../src/Util/Common.h \
  698. ../../src/Misc/memory.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  699. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  700. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  701. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  702. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  703. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  704. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  705. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  706. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  707. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  708. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  709. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  710. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  711. ../../src/Util/Util.h ../../src/Util/Common.h \
  712. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  713. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Scene/Camera.h \
  714. ../../src/Misc/collision.h ../../src/Scene/SceneNode.h \
  715. ../../src/Renderer//RendererInitializer.h ../../src/Resources/Material.h \
  716. ../../src/Resources/ShaderProg.h
  717. @echo Compiling ../../src/Renderer//Renderer.cpp...
  718. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Renderer.cpp -o Renderer.o
  719. Ssao.o: ../../src/Renderer//Ssao.cpp ../../src/Renderer//Renderer.h \
  720. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  721. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  722. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  723. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  724. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  725. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  726. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  727. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  728. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  729. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  730. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  731. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  732. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  733. ../../src/Util/Util.h ../../src/Util/Common.h \
  734. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  735. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Scene/Camera.h \
  736. ../../src/Misc/collision.h ../../src/Scene/SceneNode.h
  737. @echo Compiling ../../src/Renderer//Ssao.cpp...
  738. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Ssao.cpp -o Ssao.o
  739. Is.o: ../../src/Renderer//Is.cpp ../../src/Renderer//Renderer.h \
  740. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  741. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  742. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  743. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  744. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  745. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  746. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  747. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  748. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  749. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  750. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  751. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  752. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  753. ../../src/Util/Util.h ../../src/Util/Common.h \
  754. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  755. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Scene/Camera.h \
  756. ../../src/Misc/collision.h ../../src/Scene/SceneNode.h \
  757. ../../src/Scene/Light.h ../../src/Scene/Camera.h \
  758. ../../src/Resources/LightProps.h ../../src/Util/App.h \
  759. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  760. ../../../SDL-hg/include/SDL_stdinc.h \
  761. ../../../SDL-hg/include/SDL_config.h \
  762. ../../../SDL-hg/include/SDL_platform.h \
  763. ../../../SDL-hg/include/begin_code.h \
  764. ../../../SDL-hg/include/close_code.h \
  765. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  766. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  767. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  768. ../../../SDL-hg/include/SDL_rwops.h \
  769. ../../../SDL-hg/include/SDL_cpuinfo.h \
  770. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  771. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  772. ../../../SDL-hg/include/SDL_surface.h \
  773. ../../../SDL-hg/include/SDL_keyboard.h \
  774. ../../../SDL-hg/include/SDL_keysym.h \
  775. ../../../SDL-hg/include/SDL_scancode.h \
  776. ../../../SDL-hg/include/SDL_mouse.h \
  777. ../../../SDL-hg/include/SDL_joystick.h \
  778. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  779. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  780. ../../../SDL-hg/include/SDL_version.h \
  781. ../../../SDL-hg/include/SDL_revision.h \
  782. ../../../SDL-hg/include/SDL_compat.h ../../src/Scene/Scene.h \
  783. ../../src/Misc/skybox.h ../../src/Physics/PhyWorld.h \
  784. ../../src/Physics/PhyCommon.h \
  785. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  786. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  787. ../../../bullet_svn/src/LinearMath/btVector3.h \
  788. ../../../bullet_svn/src/LinearMath/btScalar.h \
  789. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  790. ../../../bullet_svn/src/LinearMath/btTransform.h \
  791. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  792. ../../../bullet_svn/src/LinearMath/btVector3.h \
  793. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  794. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  795. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  796. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  797. ../../../bullet_svn/src/LinearMath/btTransform.h \
  798. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  799. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  800. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  801. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  802. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  803. ../../../bullet_svn/src/LinearMath/btScalar.h \
  804. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  805. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  806. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  807. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  808. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  809. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  810. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  811. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  812. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  813. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  814. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  815. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  816. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  817. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  818. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  819. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  820. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  821. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  822. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  823. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  824. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  825. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  826. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  827. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  828. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  829. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  830. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  831. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  832. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  833. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  834. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  835. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  836. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  837. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  838. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  839. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  840. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  841. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  842. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  843. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  844. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  845. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  846. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  847. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  848. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  849. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  850. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  851. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  852. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  853. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  854. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  855. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  856. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  857. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  858. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  859. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  860. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  861. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  862. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  863. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  864. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  865. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  866. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  867. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  868. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  869. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  870. ../../../bullet_svn/src/LinearMath/btTransform.h \
  871. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  872. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  873. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  874. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  875. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  876. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  877. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  878. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  879. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  880. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  881. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  882. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  883. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  884. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  885. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  886. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  887. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  888. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  889. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  890. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  891. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  892. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  893. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  894. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  895. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  896. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  897. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  898. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  899. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  900. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  901. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  902. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  903. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  904. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  905. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  906. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  907. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  908. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  909. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  910. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  911. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  912. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  913. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  914. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  915. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  916. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  917. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  918. ../../src/Scene/SceneNode.h ../../src/Physics/PhyWorld.h
  919. @echo Compiling ../../src/Renderer//Is.cpp...
  920. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Is.cpp -o Is.o
  921. MainRenderer.o: ../../src/Renderer//MainRenderer.cpp \
  922. ../../src/Renderer//MainRenderer.h ../../src/Util/Common.h \
  923. ../../src/Misc/memory.h ../../src/Renderer//Renderer.h \
  924. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  925. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  926. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  927. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  928. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  929. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  930. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  931. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  932. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  933. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  934. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  935. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  936. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  937. ../../src/Util/Util.h ../../src/Util/Common.h \
  938. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  939. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/App.h \
  940. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  941. ../../../SDL-hg/include/SDL_stdinc.h \
  942. ../../../SDL-hg/include/SDL_config.h \
  943. ../../../SDL-hg/include/SDL_platform.h \
  944. ../../../SDL-hg/include/begin_code.h \
  945. ../../../SDL-hg/include/close_code.h \
  946. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  947. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  948. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  949. ../../../SDL-hg/include/SDL_rwops.h \
  950. ../../../SDL-hg/include/SDL_cpuinfo.h \
  951. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  952. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  953. ../../../SDL-hg/include/SDL_surface.h \
  954. ../../../SDL-hg/include/SDL_keyboard.h \
  955. ../../../SDL-hg/include/SDL_keysym.h \
  956. ../../../SDL-hg/include/SDL_scancode.h \
  957. ../../../SDL-hg/include/SDL_mouse.h \
  958. ../../../SDL-hg/include/SDL_joystick.h \
  959. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  960. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  961. ../../../SDL-hg/include/SDL_version.h \
  962. ../../../SDL-hg/include/SDL_revision.h \
  963. ../../../SDL-hg/include/SDL_compat.h \
  964. ../../src/Renderer//RendererInitializer.h
  965. @echo Compiling ../../src/Renderer//MainRenderer.cpp...
  966. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//MainRenderer.cpp -o MainRenderer.o
  967. Ms.o: ../../src/Renderer//Ms.cpp ../../src/Renderer//Renderer.h \
  968. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  969. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  970. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  971. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  972. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  973. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  974. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  975. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  976. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  977. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  978. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  979. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  980. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  981. ../../src/Util/Util.h ../../src/Util/Common.h \
  982. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  983. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/App.h \
  984. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  985. ../../../SDL-hg/include/SDL_stdinc.h \
  986. ../../../SDL-hg/include/SDL_config.h \
  987. ../../../SDL-hg/include/SDL_platform.h \
  988. ../../../SDL-hg/include/begin_code.h \
  989. ../../../SDL-hg/include/close_code.h \
  990. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  991. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  992. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  993. ../../../SDL-hg/include/SDL_rwops.h \
  994. ../../../SDL-hg/include/SDL_cpuinfo.h \
  995. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  996. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  997. ../../../SDL-hg/include/SDL_surface.h \
  998. ../../../SDL-hg/include/SDL_keyboard.h \
  999. ../../../SDL-hg/include/SDL_keysym.h \
  1000. ../../../SDL-hg/include/SDL_scancode.h \
  1001. ../../../SDL-hg/include/SDL_mouse.h \
  1002. ../../../SDL-hg/include/SDL_joystick.h \
  1003. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  1004. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  1005. ../../../SDL-hg/include/SDL_version.h \
  1006. ../../../SDL-hg/include/SDL_revision.h \
  1007. ../../../SDL-hg/include/SDL_compat.h ../../src/Scene/Scene.h \
  1008. ../../src/Misc/skybox.h ../../src/Physics/PhyWorld.h \
  1009. ../../src/Physics/PhyCommon.h \
  1010. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  1011. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1012. ../../../bullet_svn/src/LinearMath/btVector3.h \
  1013. ../../../bullet_svn/src/LinearMath/btScalar.h \
  1014. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  1015. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1016. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  1017. ../../../bullet_svn/src/LinearMath/btVector3.h \
  1018. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  1019. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  1020. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1021. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  1022. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1023. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  1024. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  1025. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  1026. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1027. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1028. ../../../bullet_svn/src/LinearMath/btScalar.h \
  1029. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1030. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1031. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  1032. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1033. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1034. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1035. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1036. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1037. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1038. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1039. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1040. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1041. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  1042. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1043. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  1044. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1045. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  1046. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  1047. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1048. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  1049. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  1050. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  1051. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1052. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  1053. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  1054. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  1055. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1056. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  1057. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1058. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1059. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1060. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1061. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1062. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1063. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1064. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1065. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1066. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1067. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1068. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  1069. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  1070. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  1071. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  1072. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  1073. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1074. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1075. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  1076. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1077. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  1078. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1079. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1080. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1081. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1082. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1083. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1084. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1085. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1086. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1087. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1088. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1089. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1090. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1091. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  1092. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1093. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1094. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  1095. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1096. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  1097. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  1098. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  1099. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  1100. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  1101. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  1102. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  1103. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1104. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1105. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1106. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1107. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1108. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1109. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1110. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1111. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1112. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1113. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1114. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1115. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1116. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1117. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1118. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1119. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1120. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1121. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1122. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1123. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1124. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1125. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1126. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1127. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1128. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1129. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1130. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1131. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1132. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1133. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1134. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  1135. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  1136. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1137. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  1138. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  1139. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  1140. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1141. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1142. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  1143. ../../src/Scene/SceneNode.h ../../src/Physics/PhyWorld.h \
  1144. ../../src/Scene/Camera.h ../../src/Misc/collision.h \
  1145. ../../src/Scene/SceneNode.h ../../src/Scene/MeshNode.h \
  1146. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h
  1147. @echo Compiling ../../src/Renderer//Ms.cpp...
  1148. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Ms.cpp -o Ms.o
  1149. Hdr.o: ../../src/Renderer//Hdr.cpp ../../src/Renderer//Renderer.h \
  1150. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  1151. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  1152. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  1153. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1154. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1155. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1156. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1157. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1158. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1159. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1160. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1161. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  1162. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  1163. ../../src/Util/Util.h ../../src/Util/Common.h \
  1164. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  1165. ../../src/Renderer/BufferObjects/BufferObject.h
  1166. @echo Compiling ../../src/Renderer//Hdr.cpp...
  1167. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Hdr.cpp -o Hdr.o
  1168. Smo.o: ../../src/Renderer//Smo.cpp ../../src/Renderer//Renderer.h \
  1169. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  1170. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  1171. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  1172. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1173. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1174. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1175. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1176. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1177. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1178. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1179. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1180. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  1181. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  1182. ../../src/Util/Util.h ../../src/Util/Common.h \
  1183. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  1184. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Scene/Light.h \
  1185. ../../src/Scene/SceneNode.h ../../src/Scene/Camera.h \
  1186. ../../src/Misc/collision.h
  1187. @echo Compiling ../../src/Renderer//Smo.cpp...
  1188. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Smo.cpp -o Smo.o
  1189. Ez.o: ../../src/Renderer//Ez.cpp ../../src/Renderer//Renderer.h \
  1190. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  1191. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  1192. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  1193. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1194. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1195. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1196. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1197. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1198. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1199. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1200. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1201. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  1202. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  1203. ../../src/Util/Util.h ../../src/Util/Common.h \
  1204. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  1205. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/App.h \
  1206. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  1207. ../../../SDL-hg/include/SDL_stdinc.h \
  1208. ../../../SDL-hg/include/SDL_config.h \
  1209. ../../../SDL-hg/include/SDL_platform.h \
  1210. ../../../SDL-hg/include/begin_code.h \
  1211. ../../../SDL-hg/include/close_code.h \
  1212. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  1213. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  1214. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  1215. ../../../SDL-hg/include/SDL_rwops.h \
  1216. ../../../SDL-hg/include/SDL_cpuinfo.h \
  1217. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  1218. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  1219. ../../../SDL-hg/include/SDL_surface.h \
  1220. ../../../SDL-hg/include/SDL_keyboard.h \
  1221. ../../../SDL-hg/include/SDL_keysym.h \
  1222. ../../../SDL-hg/include/SDL_scancode.h \
  1223. ../../../SDL-hg/include/SDL_mouse.h \
  1224. ../../../SDL-hg/include/SDL_joystick.h \
  1225. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  1226. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  1227. ../../../SDL-hg/include/SDL_version.h \
  1228. ../../../SDL-hg/include/SDL_revision.h \
  1229. ../../../SDL-hg/include/SDL_compat.h ../../src/Scene/MeshNode.h \
  1230. ../../src/Scene/SceneNode.h ../../src/Resources/Material.h \
  1231. ../../src/Resources/ShaderProg.h ../../src/Scene/Scene.h \
  1232. ../../src/Misc/skybox.h ../../src/Physics/PhyWorld.h \
  1233. ../../src/Physics/PhyCommon.h \
  1234. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  1235. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1236. ../../../bullet_svn/src/LinearMath/btVector3.h \
  1237. ../../../bullet_svn/src/LinearMath/btScalar.h \
  1238. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  1239. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1240. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  1241. ../../../bullet_svn/src/LinearMath/btVector3.h \
  1242. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  1243. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  1244. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1245. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  1246. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1247. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  1248. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  1249. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  1250. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1251. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1252. ../../../bullet_svn/src/LinearMath/btScalar.h \
  1253. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1254. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1255. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  1256. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1257. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1258. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1259. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1260. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1261. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1262. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1263. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1264. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1265. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  1266. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1267. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  1268. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1269. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  1270. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  1271. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1272. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  1273. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  1274. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  1275. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1276. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  1277. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  1278. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  1279. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1280. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  1281. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1282. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1283. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1284. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1285. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1286. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1287. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1288. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1289. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1290. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1291. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1292. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  1293. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  1294. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  1295. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  1296. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  1297. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1298. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1299. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  1300. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1301. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  1302. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1303. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1304. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1305. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1306. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1307. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1308. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1309. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1310. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1311. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1312. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1313. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1314. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1315. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  1316. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1317. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1318. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  1319. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1320. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  1321. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  1322. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  1323. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  1324. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  1325. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  1326. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  1327. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1328. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1329. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1330. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1331. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1332. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1333. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1334. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1335. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1336. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1337. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1338. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1339. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1340. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1341. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1342. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1343. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1344. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1345. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1346. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1347. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1348. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1349. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1350. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1351. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1352. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1353. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1354. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1355. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1356. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1357. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1358. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  1359. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  1360. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1361. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  1362. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  1363. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  1364. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1365. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1366. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  1367. ../../src/Scene/SceneNode.h ../../src/Physics/PhyWorld.h
  1368. @echo Compiling ../../src/Renderer//Ez.cpp...
  1369. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Ez.cpp -o Ez.o
  1370. Dbg.o: ../../src/Renderer//Dbg.cpp ../../src/Renderer//Renderer.h \
  1371. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  1372. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  1373. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  1374. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1375. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1376. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1377. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1378. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1379. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1380. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1381. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1382. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  1383. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  1384. ../../src/Util/Util.h ../../src/Util/Common.h \
  1385. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  1386. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/App.h \
  1387. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  1388. ../../../SDL-hg/include/SDL_stdinc.h \
  1389. ../../../SDL-hg/include/SDL_config.h \
  1390. ../../../SDL-hg/include/SDL_platform.h \
  1391. ../../../SDL-hg/include/begin_code.h \
  1392. ../../../SDL-hg/include/close_code.h \
  1393. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  1394. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  1395. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  1396. ../../../SDL-hg/include/SDL_rwops.h \
  1397. ../../../SDL-hg/include/SDL_cpuinfo.h \
  1398. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  1399. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  1400. ../../../SDL-hg/include/SDL_surface.h \
  1401. ../../../SDL-hg/include/SDL_keyboard.h \
  1402. ../../../SDL-hg/include/SDL_keysym.h \
  1403. ../../../SDL-hg/include/SDL_scancode.h \
  1404. ../../../SDL-hg/include/SDL_mouse.h \
  1405. ../../../SDL-hg/include/SDL_joystick.h \
  1406. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  1407. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  1408. ../../../SDL-hg/include/SDL_version.h \
  1409. ../../../SDL-hg/include/SDL_revision.h \
  1410. ../../../SDL-hg/include/SDL_compat.h ../../src/Scene/Scene.h \
  1411. ../../src/Misc/skybox.h ../../src/Physics/PhyWorld.h \
  1412. ../../src/Physics/PhyCommon.h \
  1413. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  1414. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1415. ../../../bullet_svn/src/LinearMath/btVector3.h \
  1416. ../../../bullet_svn/src/LinearMath/btScalar.h \
  1417. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  1418. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1419. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  1420. ../../../bullet_svn/src/LinearMath/btVector3.h \
  1421. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  1422. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  1423. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1424. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  1425. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1426. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  1427. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  1428. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  1429. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1430. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1431. ../../../bullet_svn/src/LinearMath/btScalar.h \
  1432. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1433. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1434. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  1435. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1436. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1437. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1438. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1439. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1440. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1441. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1442. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1443. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1444. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  1445. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1446. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  1447. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1448. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  1449. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  1450. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1451. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  1452. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  1453. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  1454. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1455. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  1456. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  1457. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  1458. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1459. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  1460. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1461. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1462. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1463. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1464. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1465. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1466. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1467. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1468. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1469. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1470. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1471. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  1472. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  1473. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  1474. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  1475. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  1476. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1477. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1478. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  1479. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1480. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  1481. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1482. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1483. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1484. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1485. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1486. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1487. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1488. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1489. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1490. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1491. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1492. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1493. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1494. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  1495. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1496. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1497. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  1498. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1499. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  1500. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  1501. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  1502. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  1503. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  1504. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  1505. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  1506. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1507. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1508. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1509. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1510. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1511. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1512. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1513. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1514. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1515. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1516. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1517. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1518. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1519. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1520. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1521. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1522. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1523. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1524. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1525. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1526. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1527. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1528. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1529. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1530. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1531. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1532. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1533. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1534. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1535. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1536. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1537. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  1538. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  1539. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1540. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  1541. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  1542. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  1543. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1544. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1545. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  1546. ../../src/Scene/SceneNode.h ../../src/Physics/PhyWorld.h \
  1547. ../../src/Scene/SkelNode.h ../../src/Scene/SceneNode.h \
  1548. ../../src/Scene/Controllers/Controller.h ../../src/Scene/Camera.h \
  1549. ../../src/Misc/collision.h
  1550. @echo Compiling ../../src/Renderer//Dbg.cpp...
  1551. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Dbg.cpp -o Dbg.o
  1552. MeshNode.o: ../../src/Scene//MeshNode.cpp ../../src/Scene//MeshNode.h \
  1553. ../../src/Util/Common.h ../../src/Misc/memory.h \
  1554. ../../src/Scene//SceneNode.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  1555. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  1556. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  1557. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1558. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1559. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1560. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1561. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1562. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1563. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1564. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1565. ../../src/Math/Transform.inl.h ../../src/Resources/Material.h \
  1566. ../../src/Resources/Resource.h ../../src/Util/Util.h \
  1567. ../../src/Util/Common.h ../../src/Resources/ShaderProg.h \
  1568. ../../src/Resources/Resource.h ../../src/Resources/Mesh.h \
  1569. ../../src/Renderer/BufferObjects/Vbo.h \
  1570. ../../src/Renderer/BufferObjects/BufferObject.h \
  1571. ../../src/Misc/collision.h ../../src/Scene//SkelNode.h \
  1572. ../../src/Scene/Controllers/Controller.h ../../src/Resources/Skeleton.h \
  1573. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h \
  1574. ../../src/Scene/Controllers/Controller.h \
  1575. ../../src/Scene/Controllers/SkelAnimCtrl.h ../../src/Util/App.h \
  1576. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  1577. ../../../SDL-hg/include/SDL_stdinc.h \
  1578. ../../../SDL-hg/include/SDL_config.h \
  1579. ../../../SDL-hg/include/SDL_platform.h \
  1580. ../../../SDL-hg/include/begin_code.h \
  1581. ../../../SDL-hg/include/close_code.h \
  1582. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  1583. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  1584. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  1585. ../../../SDL-hg/include/SDL_rwops.h \
  1586. ../../../SDL-hg/include/SDL_cpuinfo.h \
  1587. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  1588. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  1589. ../../../SDL-hg/include/SDL_surface.h \
  1590. ../../../SDL-hg/include/SDL_keyboard.h \
  1591. ../../../SDL-hg/include/SDL_keysym.h \
  1592. ../../../SDL-hg/include/SDL_scancode.h \
  1593. ../../../SDL-hg/include/SDL_mouse.h \
  1594. ../../../SDL-hg/include/SDL_joystick.h \
  1595. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  1596. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  1597. ../../../SDL-hg/include/SDL_version.h \
  1598. ../../../SDL-hg/include/SDL_revision.h \
  1599. ../../../SDL-hg/include/SDL_compat.h ../../src/Renderer/MainRenderer.h \
  1600. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  1601. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h
  1602. @echo Compiling ../../src/Scene//MeshNode.cpp...
  1603. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//MeshNode.cpp -o MeshNode.o
  1604. SkelNode.o: ../../src/Scene//SkelNode.cpp ../../src/Scene//SkelNode.h \
  1605. ../../src/Util/Common.h ../../src/Misc/memory.h \
  1606. ../../src/Scene//SceneNode.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  1607. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  1608. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  1609. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1610. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1611. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1612. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1613. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1614. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1615. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1616. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1617. ../../src/Math/Transform.inl.h ../../src/Scene/Controllers/Controller.h \
  1618. ../../src/Resources/SkelAnim.h ../../src/Resources/Resource.h \
  1619. ../../src/Util/Util.h ../../src/Util/Common.h \
  1620. ../../src/Resources/Skeleton.h \
  1621. ../../src/Scene/Controllers/SkelAnimCtrl.h \
  1622. ../../src/Scene/Controllers/Controller.h ../../src/Util/App.h \
  1623. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  1624. ../../../SDL-hg/include/SDL_stdinc.h \
  1625. ../../../SDL-hg/include/SDL_config.h \
  1626. ../../../SDL-hg/include/SDL_platform.h \
  1627. ../../../SDL-hg/include/begin_code.h \
  1628. ../../../SDL-hg/include/close_code.h \
  1629. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  1630. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  1631. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  1632. ../../../SDL-hg/include/SDL_rwops.h \
  1633. ../../../SDL-hg/include/SDL_cpuinfo.h \
  1634. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  1635. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  1636. ../../../SDL-hg/include/SDL_surface.h \
  1637. ../../../SDL-hg/include/SDL_keyboard.h \
  1638. ../../../SDL-hg/include/SDL_keysym.h \
  1639. ../../../SDL-hg/include/SDL_scancode.h \
  1640. ../../../SDL-hg/include/SDL_mouse.h \
  1641. ../../../SDL-hg/include/SDL_joystick.h \
  1642. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  1643. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  1644. ../../../SDL-hg/include/SDL_version.h \
  1645. ../../../SDL-hg/include/SDL_revision.h \
  1646. ../../../SDL-hg/include/SDL_compat.h ../../src/Renderer/MainRenderer.h \
  1647. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  1648. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  1649. ../../src/Renderer/BufferObjects/Vbo.h \
  1650. ../../src/Renderer/BufferObjects/BufferObject.h
  1651. @echo Compiling ../../src/Scene//SkelNode.cpp...
  1652. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//SkelNode.cpp -o SkelNode.o
  1653. SkelModelNode.o: ../../src/Scene//SkelModelNode.cpp \
  1654. ../../src/Scene//SkelModelNode.h ../../src/Util/Common.h \
  1655. ../../src/Misc/memory.h ../../src/Scene//MeshNode.h \
  1656. ../../src/Scene//SceneNode.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  1657. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  1658. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  1659. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1660. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1661. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1662. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1663. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1664. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1665. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1666. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1667. ../../src/Math/Transform.inl.h ../../src/Resources/Material.h \
  1668. ../../src/Resources/Resource.h ../../src/Util/Util.h \
  1669. ../../src/Util/Common.h ../../src/Resources/ShaderProg.h \
  1670. ../../src/Util/Tokenizer/Parser.h ../../src/Util/Tokenizer/Scanner.h \
  1671. ../../src/Scene//SkelNode.h ../../src/Scene/Controllers/Controller.h \
  1672. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h \
  1673. ../../src/Scene/Controllers/Controller.h \
  1674. ../../src/Renderer/BufferObjects/Vbo.h \
  1675. ../../src/Renderer/BufferObjects/BufferObject.h
  1676. @echo Compiling ../../src/Scene//SkelModelNode.cpp...
  1677. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//SkelModelNode.cpp -o SkelModelNode.o
  1678. Light.o: ../../src/Scene//Light.cpp ../../src/Scene//Light.h \
  1679. ../../src/Util/Common.h ../../src/Misc/memory.h \
  1680. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  1681. ../../src/Util/Util.h ../../src/Util/Common.h \
  1682. ../../src/Scene//SceneNode.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  1683. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  1684. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  1685. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1686. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1687. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1688. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1689. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1690. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1691. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1692. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1693. ../../src/Math/Transform.inl.h ../../src/Scene//Camera.h \
  1694. ../../src/Misc/collision.h ../../src/Resources/LightProps.h \
  1695. ../../src/Util/App.h ../../../SDL-hg/include/SDL.h \
  1696. ../../../SDL-hg/include/SDL_main.h ../../../SDL-hg/include/SDL_stdinc.h \
  1697. ../../../SDL-hg/include/SDL_config.h \
  1698. ../../../SDL-hg/include/SDL_platform.h \
  1699. ../../../SDL-hg/include/begin_code.h \
  1700. ../../../SDL-hg/include/close_code.h \
  1701. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  1702. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  1703. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  1704. ../../../SDL-hg/include/SDL_rwops.h \
  1705. ../../../SDL-hg/include/SDL_cpuinfo.h \
  1706. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  1707. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  1708. ../../../SDL-hg/include/SDL_surface.h \
  1709. ../../../SDL-hg/include/SDL_keyboard.h \
  1710. ../../../SDL-hg/include/SDL_keysym.h \
  1711. ../../../SDL-hg/include/SDL_scancode.h \
  1712. ../../../SDL-hg/include/SDL_mouse.h \
  1713. ../../../SDL-hg/include/SDL_joystick.h \
  1714. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  1715. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  1716. ../../../SDL-hg/include/SDL_version.h \
  1717. ../../../SDL-hg/include/SDL_revision.h \
  1718. ../../../SDL-hg/include/SDL_compat.h ../../src/Renderer/MainRenderer.h \
  1719. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  1720. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  1721. ../../src/Renderer/BufferObjects/BufferObject.h
  1722. @echo Compiling ../../src/Scene//Light.cpp...
  1723. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//Light.cpp -o Light.o
  1724. Camera.o: ../../src/Scene//Camera.cpp ../../src/Scene//Camera.h \
  1725. ../../src/Util/Common.h ../../src/Misc/memory.h \
  1726. ../../src/Misc/collision.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  1727. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  1728. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  1729. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1730. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1731. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1732. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1733. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1734. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1735. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1736. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1737. ../../src/Math/Transform.inl.h ../../src/Scene//SceneNode.h \
  1738. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h \
  1739. ../../src/Renderer/BufferObjects/Fbo.h ../../src/Resources/Texture.h \
  1740. ../../src/Resources/Resource.h ../../src/Util/Util.h \
  1741. ../../src/Util/Common.h ../../src/Resources/ShaderProg.h \
  1742. ../../src/Renderer/BufferObjects/Vbo.h \
  1743. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/App.h \
  1744. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  1745. ../../../SDL-hg/include/SDL_stdinc.h \
  1746. ../../../SDL-hg/include/SDL_config.h \
  1747. ../../../SDL-hg/include/SDL_platform.h \
  1748. ../../../SDL-hg/include/begin_code.h \
  1749. ../../../SDL-hg/include/close_code.h \
  1750. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  1751. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  1752. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  1753. ../../../SDL-hg/include/SDL_rwops.h \
  1754. ../../../SDL-hg/include/SDL_cpuinfo.h \
  1755. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  1756. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  1757. ../../../SDL-hg/include/SDL_surface.h \
  1758. ../../../SDL-hg/include/SDL_keyboard.h \
  1759. ../../../SDL-hg/include/SDL_keysym.h \
  1760. ../../../SDL-hg/include/SDL_scancode.h \
  1761. ../../../SDL-hg/include/SDL_mouse.h \
  1762. ../../../SDL-hg/include/SDL_joystick.h \
  1763. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  1764. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  1765. ../../../SDL-hg/include/SDL_version.h \
  1766. ../../../SDL-hg/include/SDL_revision.h \
  1767. ../../../SDL-hg/include/SDL_compat.h
  1768. @echo Compiling ../../src/Scene//Camera.cpp...
  1769. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//Camera.cpp -o Camera.o
  1770. Scene.o: ../../src/Scene//Scene.cpp ../../src/Scene//Scene.h \
  1771. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Misc/skybox.h \
  1772. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  1773. ../../src/Util/Util.h ../../src/Util/Common.h ../../src/Math/Math.h \
  1774. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  1775. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  1776. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1777. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1778. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1779. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1780. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1781. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1782. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1783. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1784. ../../src/Math/Transform.inl.h ../../src/Physics/PhyWorld.h \
  1785. ../../src/Physics/PhyCommon.h \
  1786. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  1787. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1788. ../../../bullet_svn/src/LinearMath/btVector3.h \
  1789. ../../../bullet_svn/src/LinearMath/btScalar.h \
  1790. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  1791. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1792. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  1793. ../../../bullet_svn/src/LinearMath/btVector3.h \
  1794. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  1795. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  1796. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1797. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  1798. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1799. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  1800. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  1801. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  1802. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1803. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1804. ../../../bullet_svn/src/LinearMath/btScalar.h \
  1805. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1806. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1807. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  1808. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1809. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1810. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1811. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1812. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1813. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1814. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1815. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1816. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1817. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  1818. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1819. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  1820. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1821. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  1822. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  1823. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1824. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  1825. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  1826. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  1827. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1828. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  1829. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  1830. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  1831. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1832. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  1833. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1834. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1835. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1836. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1837. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1838. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1839. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1840. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1841. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1842. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1843. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1844. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  1845. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  1846. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  1847. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  1848. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  1849. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1850. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1851. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  1852. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1853. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  1854. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1855. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1856. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1857. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1858. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1859. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1860. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1861. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1862. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1863. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1864. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1865. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1866. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1867. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  1868. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1869. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1870. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  1871. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1872. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  1873. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  1874. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  1875. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  1876. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  1877. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  1878. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  1879. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1880. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1881. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1882. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1883. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1884. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1885. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1886. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1887. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1888. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1889. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1890. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1891. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1892. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1893. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1894. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1895. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1896. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1897. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1898. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1899. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1900. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1901. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1902. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1903. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1904. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1905. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1906. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1907. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1908. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1909. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1910. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  1911. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  1912. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  1913. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  1914. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  1915. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  1916. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1917. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1918. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  1919. ../../src/Scene/SceneNode.h ../../src/Physics/PhyWorld.h \
  1920. ../../src/Scene//SkelNode.h ../../src/Scene//SceneNode.h \
  1921. ../../src/Scene/Controllers/Controller.h ../../src/Scene//Camera.h \
  1922. ../../src/Misc/collision.h ../../src/Scene//MeshNode.h \
  1923. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h \
  1924. ../../src/Scene//Light.h
  1925. @echo Compiling ../../src/Scene//Scene.cpp...
  1926. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//Scene.cpp -o Scene.o
  1927. ParticleEmitter.o: ../../src/Scene//ParticleEmitter.cpp \
  1928. ../../src/Scene//ParticleEmitter.h ../../src/Util/Common.h \
  1929. ../../src/Misc/memory.h ../../src/Scene//SceneNode.h \
  1930. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  1931. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  1932. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  1933. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1934. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1935. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1936. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1937. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1938. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1939. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1940. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1941. ../../src/Math/Transform.inl.h ../../src/Scene//MeshNode.h \
  1942. ../../src/Resources/Material.h ../../src/Resources/Resource.h \
  1943. ../../src/Util/Util.h ../../src/Util/Common.h \
  1944. ../../src/Resources/ShaderProg.h ../../src/Scene//GhostNode.h \
  1945. ../../src/Physics/PhyCommon.h \
  1946. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  1947. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1948. ../../../bullet_svn/src/LinearMath/btVector3.h \
  1949. ../../../bullet_svn/src/LinearMath/btScalar.h \
  1950. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  1951. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1952. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  1953. ../../../bullet_svn/src/LinearMath/btVector3.h \
  1954. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  1955. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  1956. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1957. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  1958. ../../../bullet_svn/src/LinearMath/btTransform.h \
  1959. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  1960. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  1961. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  1962. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1963. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1964. ../../../bullet_svn/src/LinearMath/btScalar.h \
  1965. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1966. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1967. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  1968. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1969. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1970. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1971. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1972. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1973. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1974. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1975. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1976. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1977. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  1978. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1979. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  1980. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1981. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  1982. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  1983. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1984. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  1985. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  1986. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  1987. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1988. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  1989. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  1990. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  1991. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1992. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  1993. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1994. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1995. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1996. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1997. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1998. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1999. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  2000. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2001. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  2002. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  2003. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  2004. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  2005. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  2006. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  2007. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  2008. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  2009. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2010. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2011. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  2012. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2013. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  2014. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2015. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2016. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2017. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2018. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2019. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2020. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2021. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2022. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2023. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2024. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2025. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2026. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2027. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  2028. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2029. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2030. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  2031. ../../../bullet_svn/src/LinearMath/btTransform.h \
  2032. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  2033. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  2034. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  2035. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  2036. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  2037. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  2038. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  2039. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2040. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  2041. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2042. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  2043. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  2044. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2045. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  2046. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2047. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2048. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  2049. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  2050. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2051. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2052. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  2053. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  2054. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  2055. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  2056. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2057. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  2058. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2059. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2060. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  2061. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  2062. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2063. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  2064. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  2065. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  2066. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2067. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  2068. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2069. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  2070. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  2071. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  2072. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2073. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  2074. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  2075. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  2076. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2077. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2078. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  2079. ../../src/Physics/PhyCommon.h ../../src/Scene/SceneNode.h \
  2080. ../../src/Physics/PhyWorld.h ../../src/Renderer/MainRenderer.h \
  2081. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  2082. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  2083. ../../src/Renderer/BufferObjects/Vbo.h \
  2084. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/App.h \
  2085. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  2086. ../../../SDL-hg/include/SDL_stdinc.h \
  2087. ../../../SDL-hg/include/SDL_config.h \
  2088. ../../../SDL-hg/include/SDL_platform.h \
  2089. ../../../SDL-hg/include/begin_code.h \
  2090. ../../../SDL-hg/include/close_code.h \
  2091. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  2092. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  2093. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  2094. ../../../SDL-hg/include/SDL_rwops.h \
  2095. ../../../SDL-hg/include/SDL_cpuinfo.h \
  2096. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  2097. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  2098. ../../../SDL-hg/include/SDL_surface.h \
  2099. ../../../SDL-hg/include/SDL_keyboard.h \
  2100. ../../../SDL-hg/include/SDL_keysym.h \
  2101. ../../../SDL-hg/include/SDL_scancode.h \
  2102. ../../../SDL-hg/include/SDL_mouse.h \
  2103. ../../../SDL-hg/include/SDL_joystick.h \
  2104. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  2105. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  2106. ../../../SDL-hg/include/SDL_version.h \
  2107. ../../../SDL-hg/include/SDL_revision.h \
  2108. ../../../SDL-hg/include/SDL_compat.h ../../src/Scene//Scene.h \
  2109. ../../src/Misc/skybox.h ../../src/Physics/PhyWorld.h
  2110. @echo Compiling ../../src/Scene//ParticleEmitter.cpp...
  2111. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//ParticleEmitter.cpp -o ParticleEmitter.o
  2112. SceneNode.o: ../../src/Scene//SceneNode.cpp ../../src/Scene//SceneNode.h \
  2113. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  2114. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  2115. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  2116. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2117. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2118. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2119. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2120. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2121. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2122. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2123. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2124. ../../src/Math/Transform.inl.h ../../src/Renderer/Renderer.h \
  2125. ../../src/Renderer/BufferObjects/Fbo.h ../../src/Resources/Texture.h \
  2126. ../../src/Resources/Resource.h ../../src/Util/Util.h \
  2127. ../../src/Util/Common.h ../../src/Resources/ShaderProg.h \
  2128. ../../src/Renderer/BufferObjects/Vbo.h \
  2129. ../../src/Renderer/BufferObjects/BufferObject.h \
  2130. ../../src/Misc/collision.h ../../src/Scene/Controllers/Controller.h \
  2131. ../../src/Scene//Scene.h ../../src/Misc/skybox.h \
  2132. ../../src/Physics/PhyWorld.h ../../src/Physics/PhyCommon.h \
  2133. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  2134. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2135. ../../../bullet_svn/src/LinearMath/btVector3.h \
  2136. ../../../bullet_svn/src/LinearMath/btScalar.h \
  2137. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  2138. ../../../bullet_svn/src/LinearMath/btTransform.h \
  2139. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  2140. ../../../bullet_svn/src/LinearMath/btVector3.h \
  2141. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  2142. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  2143. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2144. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  2145. ../../../bullet_svn/src/LinearMath/btTransform.h \
  2146. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  2147. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  2148. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  2149. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2150. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  2151. ../../../bullet_svn/src/LinearMath/btScalar.h \
  2152. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  2153. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2154. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  2155. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  2156. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  2157. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2158. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2159. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2160. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  2161. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2162. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2163. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2164. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  2165. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  2166. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  2167. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  2168. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  2169. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  2170. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  2171. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  2172. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  2173. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  2174. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  2175. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  2176. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  2177. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  2178. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  2179. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  2180. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  2181. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  2182. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  2183. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2184. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  2185. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  2186. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  2187. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2188. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  2189. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  2190. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  2191. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  2192. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  2193. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  2194. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  2195. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  2196. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2197. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2198. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  2199. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2200. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  2201. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2202. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2203. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2204. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2205. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2206. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2207. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2208. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2209. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2210. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2211. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2212. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2213. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2214. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  2215. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2216. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2217. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  2218. ../../../bullet_svn/src/LinearMath/btTransform.h \
  2219. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  2220. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  2221. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  2222. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  2223. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  2224. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  2225. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  2226. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2227. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  2228. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2229. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  2230. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  2231. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2232. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  2233. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2234. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2235. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  2236. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  2237. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2238. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2239. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  2240. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  2241. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  2242. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  2243. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2244. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  2245. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2246. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2247. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  2248. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  2249. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2250. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  2251. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  2252. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  2253. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2254. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  2255. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2256. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  2257. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  2258. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  2259. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2260. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  2261. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  2262. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  2263. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2264. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2265. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  2266. ../../src/Scene/SceneNode.h ../../src/Physics/PhyWorld.h \
  2267. ../../src/Util/App.h ../../../SDL-hg/include/SDL.h \
  2268. ../../../SDL-hg/include/SDL_main.h ../../../SDL-hg/include/SDL_stdinc.h \
  2269. ../../../SDL-hg/include/SDL_config.h \
  2270. ../../../SDL-hg/include/SDL_platform.h \
  2271. ../../../SDL-hg/include/begin_code.h \
  2272. ../../../SDL-hg/include/close_code.h \
  2273. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  2274. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  2275. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  2276. ../../../SDL-hg/include/SDL_rwops.h \
  2277. ../../../SDL-hg/include/SDL_cpuinfo.h \
  2278. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  2279. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  2280. ../../../SDL-hg/include/SDL_surface.h \
  2281. ../../../SDL-hg/include/SDL_keyboard.h \
  2282. ../../../SDL-hg/include/SDL_keysym.h \
  2283. ../../../SDL-hg/include/SDL_scancode.h \
  2284. ../../../SDL-hg/include/SDL_mouse.h \
  2285. ../../../SDL-hg/include/SDL_joystick.h \
  2286. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  2287. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  2288. ../../../SDL-hg/include/SDL_version.h \
  2289. ../../../SDL-hg/include/SDL_revision.h \
  2290. ../../../SDL-hg/include/SDL_compat.h
  2291. @echo Compiling ../../src/Scene//SceneNode.cpp...
  2292. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//SceneNode.cpp -o SceneNode.o
  2293. Ui.o: ../../src/Ui//Ui.cpp ../../src/Ui//Ui.h ../../src/Util/Common.h \
  2294. ../../src/Misc/memory.h ../../src/Renderer/MainRenderer.h \
  2295. ../../src/Renderer/Renderer.h ../../src/Math/Math.h \
  2296. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  2297. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  2298. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2299. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2300. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2301. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2302. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2303. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2304. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2305. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2306. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  2307. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  2308. ../../src/Util/Util.h ../../src/Util/Common.h \
  2309. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  2310. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/App.h \
  2311. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  2312. ../../../SDL-hg/include/SDL_stdinc.h \
  2313. ../../../SDL-hg/include/SDL_config.h \
  2314. ../../../SDL-hg/include/SDL_platform.h \
  2315. ../../../SDL-hg/include/begin_code.h \
  2316. ../../../SDL-hg/include/close_code.h \
  2317. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  2318. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  2319. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  2320. ../../../SDL-hg/include/SDL_rwops.h \
  2321. ../../../SDL-hg/include/SDL_cpuinfo.h \
  2322. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  2323. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  2324. ../../../SDL-hg/include/SDL_surface.h \
  2325. ../../../SDL-hg/include/SDL_keyboard.h \
  2326. ../../../SDL-hg/include/SDL_keysym.h \
  2327. ../../../SDL-hg/include/SDL_scancode.h \
  2328. ../../../SDL-hg/include/SDL_mouse.h \
  2329. ../../../SDL-hg/include/SDL_joystick.h \
  2330. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  2331. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  2332. ../../../SDL-hg/include/SDL_version.h \
  2333. ../../../SDL-hg/include/SDL_revision.h \
  2334. ../../../SDL-hg/include/SDL_compat.h ../../src/Resources/Resource.h
  2335. @echo Compiling ../../src/Ui//Ui.cpp...
  2336. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Ui//Ui.cpp -o Ui.o
  2337. Material.o: ../../src/Resources//Material.cpp \
  2338. ../../src/Resources//Material.h ../../src/Util/Common.h \
  2339. ../../src/Misc/memory.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2340. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2341. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2342. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2343. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2344. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2345. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2346. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2347. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2348. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2349. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2350. ../../src/Math/Transform.inl.h ../../src/Resources//Resource.h \
  2351. ../../src/Util/Util.h ../../src/Util/Common.h \
  2352. ../../src/Resources//ShaderProg.h ../../src/Util/Tokenizer/Scanner.h \
  2353. ../../src/Util/Tokenizer/Parser.h ../../src/Util/Tokenizer/Scanner.h \
  2354. ../../src/Resources//Texture.h ../../src/Util/App.h \
  2355. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  2356. ../../../SDL-hg/include/SDL_stdinc.h \
  2357. ../../../SDL-hg/include/SDL_config.h \
  2358. ../../../SDL-hg/include/SDL_platform.h \
  2359. ../../../SDL-hg/include/begin_code.h \
  2360. ../../../SDL-hg/include/close_code.h \
  2361. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  2362. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  2363. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  2364. ../../../SDL-hg/include/SDL_rwops.h \
  2365. ../../../SDL-hg/include/SDL_cpuinfo.h \
  2366. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  2367. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  2368. ../../../SDL-hg/include/SDL_surface.h \
  2369. ../../../SDL-hg/include/SDL_keyboard.h \
  2370. ../../../SDL-hg/include/SDL_keysym.h \
  2371. ../../../SDL-hg/include/SDL_scancode.h \
  2372. ../../../SDL-hg/include/SDL_mouse.h \
  2373. ../../../SDL-hg/include/SDL_joystick.h \
  2374. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  2375. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  2376. ../../../SDL-hg/include/SDL_version.h \
  2377. ../../../SDL-hg/include/SDL_revision.h \
  2378. ../../../SDL-hg/include/SDL_compat.h ../../src/Renderer/MainRenderer.h \
  2379. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  2380. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  2381. ../../src/Renderer/BufferObjects/Vbo.h \
  2382. ../../src/Renderer/BufferObjects/BufferObject.h
  2383. @echo Compiling ../../src/Resources//Material.cpp...
  2384. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Material.cpp -o Material.o
  2385. ShaderProg.o: ../../src/Resources//ShaderProg.cpp \
  2386. ../../src/Resources//ShaderProg.h ../../src/Util/Common.h \
  2387. ../../src/Misc/memory.h ../../src/Resources//Resource.h \
  2388. ../../src/Util/Util.h ../../src/Util/Common.h ../../src/Math/Math.h \
  2389. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  2390. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  2391. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2392. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2393. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2394. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2395. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2396. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2397. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2398. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2399. ../../src/Math/Transform.inl.h ../../src/Renderer/Renderer.h \
  2400. ../../src/Renderer/BufferObjects/Fbo.h ../../src/Resources/Texture.h \
  2401. ../../src/Resources/Resource.h ../../src/Resources/ShaderProg.h \
  2402. ../../src/Renderer/BufferObjects/Vbo.h \
  2403. ../../src/Renderer/BufferObjects/BufferObject.h \
  2404. ../../src/Resources/Helpers/ShaderPrePreprocessor.h \
  2405. ../../src/Resources//Texture.h
  2406. @echo Compiling ../../src/Resources//ShaderProg.cpp...
  2407. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//ShaderProg.cpp -o ShaderProg.o
  2408. Texture.o: ../../src/Resources//Texture.cpp \
  2409. ../../src/Resources//Texture.h ../../src/Util/Common.h \
  2410. ../../src/Misc/memory.h ../../src/Resources//Resource.h \
  2411. ../../src/Util/Util.h ../../src/Util/Common.h \
  2412. ../../src/Renderer/Renderer.h ../../src/Math/Math.h \
  2413. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  2414. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  2415. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2416. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2417. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2418. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2419. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2420. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2421. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2422. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2423. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  2424. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  2425. ../../src/Resources/Resource.h ../../src/Renderer/BufferObjects/Vbo.h \
  2426. ../../src/Renderer/BufferObjects/BufferObject.h \
  2427. ../../src/Resources/Helpers/Image.h
  2428. @echo Compiling ../../src/Resources//Texture.cpp...
  2429. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Texture.cpp -o Texture.o
  2430. SkelAnim.o: ../../src/Resources//SkelAnim.cpp \
  2431. ../../src/Resources//SkelAnim.h ../../src/Util/Common.h \
  2432. ../../src/Misc/memory.h ../../src/Resources//Resource.h \
  2433. ../../src/Util/Util.h ../../src/Util/Common.h ../../src/Math/Math.h \
  2434. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  2435. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  2436. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2437. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2438. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2439. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2440. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2441. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2442. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2443. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2444. ../../src/Math/Transform.inl.h ../../src/Util/Tokenizer/Scanner.h \
  2445. ../../src/Util/Tokenizer/Parser.h ../../src/Util/Tokenizer/Scanner.h
  2446. @echo Compiling ../../src/Resources//SkelAnim.cpp...
  2447. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//SkelAnim.cpp -o SkelAnim.o
  2448. Extension.o: ../../src/Resources//Extension.cpp \
  2449. ../../src/Resources//Extension.h ../../src/Util/Common.h \
  2450. ../../src/Misc/memory.h ../../src/Resources//Resource.h \
  2451. ../../src/Util/Util.h ../../src/Util/Common.h
  2452. @echo Compiling ../../src/Resources//Extension.cpp...
  2453. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Extension.cpp -o Extension.o
  2454. Skeleton.o: ../../src/Resources//Skeleton.cpp \
  2455. ../../src/Resources//Skeleton.h ../../src/Util/Common.h \
  2456. ../../src/Misc/memory.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2457. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2458. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2459. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2460. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2461. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2462. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2463. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2464. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2465. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2466. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2467. ../../src/Math/Transform.inl.h ../../src/Resources//Resource.h \
  2468. ../../src/Util/Util.h ../../src/Util/Common.h \
  2469. ../../src/Util/Tokenizer/Scanner.h ../../src/Util/Tokenizer/Parser.h \
  2470. ../../src/Util/Tokenizer/Scanner.h
  2471. @echo Compiling ../../src/Resources//Skeleton.cpp...
  2472. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Skeleton.cpp -o Skeleton.o
  2473. Resource.o: ../../src/Resources//Resource.cpp \
  2474. ../../src/Resources//Resource.h ../../src/Util/Common.h \
  2475. ../../src/Misc/memory.h ../../src/Util/Util.h ../../src/Util/Common.h \
  2476. ../../src/Resources//Texture.h ../../src/Resources//Material.h \
  2477. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2478. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2479. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2480. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2481. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2482. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2483. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2484. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2485. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2486. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2487. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2488. ../../src/Math/Transform.inl.h ../../src/Resources//ShaderProg.h \
  2489. ../../src/Resources//Mesh.h ../../src/Renderer/BufferObjects/Vbo.h \
  2490. ../../src/Renderer/BufferObjects/BufferObject.h \
  2491. ../../src/Misc/collision.h ../../src/Resources//SkelAnim.h \
  2492. ../../src/Resources//LightProps.h
  2493. @echo Compiling ../../src/Resources//Resource.cpp...
  2494. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Resource.cpp -o Resource.o
  2495. LightProps.o: ../../src/Resources//LightProps.cpp \
  2496. ../../src/Resources//LightProps.h ../../src/Util/Common.h \
  2497. ../../src/Misc/memory.h ../../src/Resources//Resource.h \
  2498. ../../src/Util/Util.h ../../src/Util/Common.h ../../src/Math/Math.h \
  2499. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  2500. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  2501. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2502. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2503. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2504. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2505. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2506. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2507. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2508. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2509. ../../src/Math/Transform.inl.h ../../src/Util/Tokenizer/Parser.h \
  2510. ../../src/Util/Tokenizer/Scanner.h ../../src/Resources//Texture.h
  2511. @echo Compiling ../../src/Resources//LightProps.cpp...
  2512. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//LightProps.cpp -o LightProps.o
  2513. Mesh.o: ../../src/Resources//Mesh.cpp ../../src/Resources//Mesh.h \
  2514. ../../src/Util/Common.h ../../src/Misc/memory.h ../../src/Math/Math.h \
  2515. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  2516. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  2517. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2518. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2519. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2520. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2521. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2522. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2523. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2524. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2525. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Vbo.h \
  2526. ../../src/Renderer/BufferObjects/BufferObject.h \
  2527. ../../src/Resources//Resource.h ../../src/Util/Util.h \
  2528. ../../src/Util/Common.h ../../src/Misc/collision.h \
  2529. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  2530. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  2531. ../../src/Resources/ShaderProg.h ../../src/Util/Tokenizer/Scanner.h \
  2532. ../../src/Util/Tokenizer/Parser.h ../../src/Util/Tokenizer/Scanner.h
  2533. @echo Compiling ../../src/Resources//Mesh.cpp...
  2534. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Mesh.cpp -o Mesh.o
  2535. Input.o: ../../src/Util//Input.cpp ../../../SDL-hg/include/SDL.h \
  2536. ../../../SDL-hg/include/SDL_main.h ../../../SDL-hg/include/SDL_stdinc.h \
  2537. ../../../SDL-hg/include/SDL_config.h \
  2538. ../../../SDL-hg/include/SDL_platform.h \
  2539. ../../../SDL-hg/include/begin_code.h \
  2540. ../../../SDL-hg/include/close_code.h \
  2541. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  2542. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  2543. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  2544. ../../../SDL-hg/include/SDL_rwops.h \
  2545. ../../../SDL-hg/include/SDL_cpuinfo.h \
  2546. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  2547. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  2548. ../../../SDL-hg/include/SDL_surface.h \
  2549. ../../../SDL-hg/include/SDL_keyboard.h \
  2550. ../../../SDL-hg/include/SDL_keysym.h \
  2551. ../../../SDL-hg/include/SDL_scancode.h \
  2552. ../../../SDL-hg/include/SDL_mouse.h \
  2553. ../../../SDL-hg/include/SDL_joystick.h \
  2554. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  2555. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  2556. ../../../SDL-hg/include/SDL_version.h \
  2557. ../../../SDL-hg/include/SDL_revision.h \
  2558. ../../../SDL-hg/include/SDL_compat.h ../../src/Util//Input.h \
  2559. ../../../SDL-hg/include/SDL_scancode.h ../../src/Util//Common.h \
  2560. ../../src/Misc/memory.h ../../src/Util/Common.h ../../src/Util//App.h \
  2561. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2562. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2563. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2564. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2565. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2566. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2567. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2568. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2569. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2570. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2571. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2572. ../../src/Math/Transform.inl.h ../../src/Renderer/Renderer.h \
  2573. ../../src/Renderer/BufferObjects/Fbo.h ../../src/Resources/Texture.h \
  2574. ../../src/Resources/Resource.h ../../src/Util/Util.h \
  2575. ../../src/Util/Common.h ../../src/Resources/ShaderProg.h \
  2576. ../../src/Renderer/BufferObjects/Vbo.h \
  2577. ../../src/Renderer/BufferObjects/BufferObject.h
  2578. @echo Compiling ../../src/Util//Input.cpp...
  2579. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util//Input.cpp -o Input.o
  2580. App.o: ../../src/Util//App.cpp ../../../SDL-hg/include/SDL.h \
  2581. ../../../SDL-hg/include/SDL_main.h ../../../SDL-hg/include/SDL_stdinc.h \
  2582. ../../../SDL-hg/include/SDL_config.h \
  2583. ../../../SDL-hg/include/SDL_platform.h \
  2584. ../../../SDL-hg/include/begin_code.h \
  2585. ../../../SDL-hg/include/close_code.h \
  2586. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  2587. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  2588. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  2589. ../../../SDL-hg/include/SDL_rwops.h \
  2590. ../../../SDL-hg/include/SDL_cpuinfo.h \
  2591. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  2592. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  2593. ../../../SDL-hg/include/SDL_surface.h \
  2594. ../../../SDL-hg/include/SDL_keyboard.h \
  2595. ../../../SDL-hg/include/SDL_keysym.h \
  2596. ../../../SDL-hg/include/SDL_scancode.h \
  2597. ../../../SDL-hg/include/SDL_mouse.h \
  2598. ../../../SDL-hg/include/SDL_joystick.h \
  2599. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  2600. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  2601. ../../../SDL-hg/include/SDL_version.h \
  2602. ../../../SDL-hg/include/SDL_revision.h \
  2603. ../../../SDL-hg/include/SDL_compat.h ../../src/Util//App.h \
  2604. ../../src/Util//Common.h ../../src/Misc/memory.h ../../src/Util/Common.h \
  2605. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  2606. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  2607. ../../src/Util/Util.h ../../src/Util/Common.h ../../src/Math/Math.h \
  2608. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  2609. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  2610. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2611. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2612. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2613. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2614. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2615. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2616. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2617. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2618. ../../src/Math/Transform.inl.h ../../src/Physics/PhyWorld.h \
  2619. ../../src/Physics/PhyCommon.h \
  2620. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  2621. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2622. ../../../bullet_svn/src/LinearMath/btVector3.h \
  2623. ../../../bullet_svn/src/LinearMath/btScalar.h \
  2624. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  2625. ../../../bullet_svn/src/LinearMath/btTransform.h \
  2626. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  2627. ../../../bullet_svn/src/LinearMath/btVector3.h \
  2628. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  2629. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  2630. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2631. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  2632. ../../../bullet_svn/src/LinearMath/btTransform.h \
  2633. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  2634. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  2635. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  2636. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2637. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  2638. ../../../bullet_svn/src/LinearMath/btScalar.h \
  2639. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  2640. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2641. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  2642. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  2643. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  2644. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2645. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2646. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2647. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  2648. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2649. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2650. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2651. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  2652. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  2653. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  2654. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  2655. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  2656. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  2657. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  2658. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  2659. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  2660. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  2661. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  2662. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  2663. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  2664. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  2665. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  2666. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  2667. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  2668. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  2669. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  2670. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2671. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  2672. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  2673. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  2674. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2675. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  2676. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  2677. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  2678. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  2679. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  2680. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  2681. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  2682. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  2683. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2684. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2685. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  2686. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2687. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  2688. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2689. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2690. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2691. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2692. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2693. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2694. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2695. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2696. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2697. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2698. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2699. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2700. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2701. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  2702. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2703. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2704. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  2705. ../../../bullet_svn/src/LinearMath/btTransform.h \
  2706. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  2707. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  2708. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  2709. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  2710. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  2711. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  2712. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  2713. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2714. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  2715. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2716. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  2717. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  2718. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2719. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  2720. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2721. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2722. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  2723. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  2724. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2725. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2726. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  2727. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  2728. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  2729. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  2730. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2731. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  2732. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2733. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2734. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  2735. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  2736. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2737. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  2738. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  2739. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  2740. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2741. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  2742. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2743. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  2744. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  2745. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  2746. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2747. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  2748. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  2749. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  2750. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2751. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2752. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  2753. ../../src/Scene/SceneNode.h ../../src/Physics/PhyWorld.h \
  2754. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h \
  2755. ../../src/Renderer/BufferObjects/Fbo.h ../../src/Resources/ShaderProg.h \
  2756. ../../src/Renderer/BufferObjects/Vbo.h \
  2757. ../../src/Renderer/BufferObjects/BufferObject.h
  2758. @echo Compiling ../../src/Util//App.cpp...
  2759. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util//App.cpp -o App.o
  2760. Common.o: ../../src/Util//Common.cpp ../../src/Util//Common.h \
  2761. ../../src/Misc/memory.h ../../src/Util/Common.h ../../src/Util//App.h \
  2762. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  2763. ../../../SDL-hg/include/SDL_stdinc.h \
  2764. ../../../SDL-hg/include/SDL_config.h \
  2765. ../../../SDL-hg/include/SDL_platform.h \
  2766. ../../../SDL-hg/include/begin_code.h \
  2767. ../../../SDL-hg/include/close_code.h \
  2768. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  2769. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  2770. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  2771. ../../../SDL-hg/include/SDL_rwops.h \
  2772. ../../../SDL-hg/include/SDL_cpuinfo.h \
  2773. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  2774. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  2775. ../../../SDL-hg/include/SDL_surface.h \
  2776. ../../../SDL-hg/include/SDL_keyboard.h \
  2777. ../../../SDL-hg/include/SDL_keysym.h \
  2778. ../../../SDL-hg/include/SDL_scancode.h \
  2779. ../../../SDL-hg/include/SDL_mouse.h \
  2780. ../../../SDL-hg/include/SDL_joystick.h \
  2781. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  2782. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  2783. ../../../SDL-hg/include/SDL_version.h \
  2784. ../../../SDL-hg/include/SDL_revision.h \
  2785. ../../../SDL-hg/include/SDL_compat.h ../../src/Util//Util.h
  2786. @echo Compiling ../../src/Util//Common.cpp...
  2787. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util//Common.cpp -o Common.o
  2788. Util.o: ../../src/Util//Util.cpp ../../src/Util//Util.h \
  2789. ../../src/Util//Common.h ../../src/Misc/memory.h ../../src/Util/Common.h
  2790. @echo Compiling ../../src/Util//Util.cpp...
  2791. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util//Util.cpp -o Util.o
  2792. Controller.o: ../../src/Scene/Controllers//Controller.cpp \
  2793. ../../src/Scene/Controllers//Controller.h ../../src/Util/Common.h \
  2794. ../../src/Misc/memory.h ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  2795. ../../src/Resources/Texture.h ../../src/Resources/Resource.h \
  2796. ../../src/Util/Util.h ../../src/Util/Common.h ../../src/Math/Math.h \
  2797. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  2798. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  2799. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2800. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2801. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2802. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2803. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2804. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2805. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2806. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2807. ../../src/Math/Transform.inl.h ../../src/Physics/PhyWorld.h \
  2808. ../../src/Physics/PhyCommon.h \
  2809. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  2810. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2811. ../../../bullet_svn/src/LinearMath/btVector3.h \
  2812. ../../../bullet_svn/src/LinearMath/btScalar.h \
  2813. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  2814. ../../../bullet_svn/src/LinearMath/btTransform.h \
  2815. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  2816. ../../../bullet_svn/src/LinearMath/btVector3.h \
  2817. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  2818. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  2819. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2820. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  2821. ../../../bullet_svn/src/LinearMath/btTransform.h \
  2822. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  2823. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  2824. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  2825. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2826. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  2827. ../../../bullet_svn/src/LinearMath/btScalar.h \
  2828. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  2829. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2830. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  2831. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  2832. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  2833. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2834. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2835. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2836. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  2837. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2838. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2839. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2840. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  2841. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  2842. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  2843. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  2844. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  2845. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  2846. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  2847. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  2848. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  2849. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  2850. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  2851. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  2852. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  2853. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  2854. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  2855. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  2856. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  2857. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  2858. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  2859. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2860. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  2861. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  2862. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  2863. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2864. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  2865. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  2866. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  2867. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  2868. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  2869. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  2870. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  2871. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  2872. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2873. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2874. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  2875. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2876. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  2877. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2878. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2879. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2880. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2881. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2882. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2883. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2884. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2885. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2886. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2887. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2888. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2889. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2890. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  2891. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2892. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2893. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  2894. ../../../bullet_svn/src/LinearMath/btTransform.h \
  2895. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  2896. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  2897. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  2898. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  2899. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  2900. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  2901. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  2902. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2903. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  2904. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2905. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  2906. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  2907. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2908. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  2909. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2910. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2911. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  2912. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  2913. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2914. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2915. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  2916. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  2917. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  2918. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  2919. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2920. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  2921. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2922. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2923. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  2924. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  2925. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2926. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  2927. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  2928. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  2929. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2930. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  2931. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2932. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  2933. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  2934. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  2935. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  2936. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  2937. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  2938. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  2939. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2940. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2941. ../../src/Physics/PhyConversions.h ../../src/Physics/MotionState.h \
  2942. ../../src/Scene/SceneNode.h ../../src/Physics/PhyWorld.h \
  2943. ../../src/Util/App.h ../../../SDL-hg/include/SDL.h \
  2944. ../../../SDL-hg/include/SDL_main.h ../../../SDL-hg/include/SDL_stdinc.h \
  2945. ../../../SDL-hg/include/SDL_config.h \
  2946. ../../../SDL-hg/include/SDL_platform.h \
  2947. ../../../SDL-hg/include/begin_code.h \
  2948. ../../../SDL-hg/include/close_code.h \
  2949. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  2950. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  2951. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  2952. ../../../SDL-hg/include/SDL_rwops.h \
  2953. ../../../SDL-hg/include/SDL_cpuinfo.h \
  2954. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  2955. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  2956. ../../../SDL-hg/include/SDL_surface.h \
  2957. ../../../SDL-hg/include/SDL_keyboard.h \
  2958. ../../../SDL-hg/include/SDL_keysym.h \
  2959. ../../../SDL-hg/include/SDL_scancode.h \
  2960. ../../../SDL-hg/include/SDL_mouse.h \
  2961. ../../../SDL-hg/include/SDL_joystick.h \
  2962. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  2963. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  2964. ../../../SDL-hg/include/SDL_version.h \
  2965. ../../../SDL-hg/include/SDL_revision.h \
  2966. ../../../SDL-hg/include/SDL_compat.h
  2967. @echo Compiling ../../src/Scene/Controllers//Controller.cpp...
  2968. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/Controllers//Controller.cpp -o Controller.o
  2969. SkelAnimCtrl.o: ../../src/Scene/Controllers//SkelAnimCtrl.cpp \
  2970. ../../src/Scene/Controllers//SkelAnimCtrl.h ../../src/Util/Common.h \
  2971. ../../src/Misc/memory.h ../../src/Scene/Controllers//Controller.h \
  2972. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2973. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2974. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2975. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2976. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2977. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2978. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2979. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2980. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2981. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2982. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2983. ../../src/Math/Transform.inl.h ../../src/Resources/SkelAnim.h \
  2984. ../../src/Resources/Resource.h ../../src/Util/Util.h \
  2985. ../../src/Util/Common.h ../../src/Scene/SkelNode.h \
  2986. ../../src/Scene/SceneNode.h ../../src/Scene/Controllers/Controller.h \
  2987. ../../src/Resources/Skeleton.h ../../src/Util/App.h \
  2988. ../../../SDL-hg/include/SDL.h ../../../SDL-hg/include/SDL_main.h \
  2989. ../../../SDL-hg/include/SDL_stdinc.h \
  2990. ../../../SDL-hg/include/SDL_config.h \
  2991. ../../../SDL-hg/include/SDL_platform.h \
  2992. ../../../SDL-hg/include/begin_code.h \
  2993. ../../../SDL-hg/include/close_code.h \
  2994. ../../../SDL-hg/include/SDL_atomic.h ../../../SDL-hg/include/SDL_audio.h \
  2995. ../../../SDL-hg/include/SDL_error.h ../../../SDL-hg/include/SDL_endian.h \
  2996. ../../../SDL-hg/include/SDL_mutex.h ../../../SDL-hg/include/SDL_thread.h \
  2997. ../../../SDL-hg/include/SDL_rwops.h \
  2998. ../../../SDL-hg/include/SDL_cpuinfo.h \
  2999. ../../../SDL-hg/include/SDL_events.h ../../../SDL-hg/include/SDL_video.h \
  3000. ../../../SDL-hg/include/SDL_pixels.h ../../../SDL-hg/include/SDL_rect.h \
  3001. ../../../SDL-hg/include/SDL_surface.h \
  3002. ../../../SDL-hg/include/SDL_keyboard.h \
  3003. ../../../SDL-hg/include/SDL_keysym.h \
  3004. ../../../SDL-hg/include/SDL_scancode.h \
  3005. ../../../SDL-hg/include/SDL_mouse.h \
  3006. ../../../SDL-hg/include/SDL_joystick.h \
  3007. ../../../SDL-hg/include/SDL_quit.h ../../../SDL-hg/include/SDL_loadso.h \
  3008. ../../../SDL-hg/include/SDL_power.h ../../../SDL-hg/include/SDL_timer.h \
  3009. ../../../SDL-hg/include/SDL_version.h \
  3010. ../../../SDL-hg/include/SDL_revision.h \
  3011. ../../../SDL-hg/include/SDL_compat.h ../../src/Renderer/MainRenderer.h \
  3012. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  3013. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  3014. ../../src/Renderer/BufferObjects/Vbo.h \
  3015. ../../src/Renderer/BufferObjects/BufferObject.h
  3016. @echo Compiling ../../src/Scene/Controllers//SkelAnimCtrl.cpp...
  3017. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/Controllers//SkelAnimCtrl.cpp -o SkelAnimCtrl.o
  3018. PhyWorld.o: ../../src/Physics//PhyWorld.cpp ../../src/Physics//PhyWorld.h \
  3019. ../../src/Util/Common.h ../../src/Misc/memory.h \
  3020. ../../src/Physics//PhyCommon.h \
  3021. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  3022. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3023. ../../../bullet_svn/src/LinearMath/btVector3.h \
  3024. ../../../bullet_svn/src/LinearMath/btScalar.h \
  3025. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  3026. ../../../bullet_svn/src/LinearMath/btTransform.h \
  3027. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  3028. ../../../bullet_svn/src/LinearMath/btVector3.h \
  3029. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  3030. ../../../bullet_svn/src/LinearMath/btQuadWord.h \
  3031. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3032. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  3033. ../../../bullet_svn/src/LinearMath/btTransform.h \
  3034. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  3035. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  3036. ../../../bullet_svn/src/LinearMath/btAlignedAllocator.h \
  3037. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3038. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDispatcher.h \
  3039. ../../../bullet_svn/src/LinearMath/btScalar.h \
  3040. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  3041. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3042. ../../../bullet_svn/src/LinearMath/btTransformUtil.h \
  3043. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btManifoldResult.h \
  3044. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  3045. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3046. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3047. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3048. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  3049. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3050. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  3051. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3052. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  3053. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  3054. ../../../bullet_svn/src/LinearMath/btMatrix3x3.h \
  3055. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  3056. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexShape.h \
  3057. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionShape.h \
  3058. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCollisionMargin.h \
  3059. ../../../bullet_svn/src/LinearMath/btAabbUtil2.h \
  3060. ../../../bullet_svn/src/LinearMath/btMinMax.h \
  3061. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btSphereShape.h \
  3062. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCapsuleShape.h \
  3063. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCylinderShape.h \
  3064. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBoxShape.h \
  3065. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConeShape.h \
  3066. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  3067. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConcaveShape.h \
  3068. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleCallback.h \
  3069. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexHullShape.h \
  3070. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMesh.h \
  3071. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3072. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  3073. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  3074. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  3075. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3076. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  3077. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  3078. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  3079. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  3080. ../../../bullet_svn/src/LinearMath/btAlignedObjectArray.h \
  3081. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  3082. ../../../bullet_svn/src/LinearMath/btStackAlloc.h \
  3083. ../../../bullet_svn/src/LinearMath/btHashMap.h \
  3084. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3085. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3086. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btCompoundShape.h \
  3087. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  3088. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btEmptyShape.h \
  3089. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  3090. ../../../bullet_svn/src/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  3091. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  3092. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  3093. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  3094. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3095. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  3096. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  3097. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3098. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  3099. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3100. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  3101. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3102. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvt.h \
  3103. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  3104. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3105. ../../../bullet_svn/src/LinearMath/btQuaternion.h \
  3106. ../../../bullet_svn/src/LinearMath/btTransform.h \
  3107. ../../../bullet_svn/src/LinearMath/btDefaultMotionState.h \
  3108. ../../../bullet_svn/src/LinearMath/btMotionState.h \
  3109. ../../../bullet_svn/src/LinearMath/btQuickprof.h \
  3110. ../../../bullet_svn/src/LinearMath/btIDebugDraw.h \
  3111. ../../../bullet_svn/src/LinearMath/btSerializer.h \
  3112. ../../../bullet_svn/src/btBulletDynamicsCommon.h \
  3113. ../../../bullet_svn/src/btBulletCollisionCommon.h \
  3114. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3115. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDynamicsWorld.h \
  3116. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3117. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  3118. ../../../bullet_svn/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  3119. ../../../bullet_svn/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3120. ../../../bullet_svn/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  3121. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  3122. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3123. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  3124. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  3125. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  3126. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3127. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  3128. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSolverBody.h \
  3129. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  3130. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  3131. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3132. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  3133. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3134. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3135. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  3136. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  3137. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3138. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  3139. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  3140. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  3141. ../../../bullet_svn/src/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3142. ../../../bullet_svn/src/BulletDynamics/Vehicle/btRaycastVehicle.h \
  3143. ../../../bullet_svn/src/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3144. ../../../bullet_svn/src/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  3145. ../../../bullet_svn/src/BulletDynamics/Vehicle/btWheelInfo.h \
  3146. ../../../bullet_svn/src/BulletDynamics/Dynamics/btActionInterface.h \
  3147. ../../../bullet_svn/src/BulletDynamics/Dynamics/btRigidBody.h \
  3148. ../../../bullet_svn/src/BulletDynamics/Character/btKinematicCharacterController.h \
  3149. ../../../bullet_svn/src/BulletDynamics/Character/btCharacterControllerInterface.h \
  3150. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btGhostObject.h \
  3151. ../../../bullet_svn/src/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  3152. ../../../bullet_svn/src/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3153. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3154. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  3155. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  3156. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3157. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3158. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3159. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3160. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3161. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3162. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3163. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3164. ../../src/Math/Transform.inl.h ../../src/Physics//PhyConversions.h \
  3165. ../../src/Physics//MotionState.h ../../src/Scene/SceneNode.h
  3166. @echo Compiling ../../src/Physics//PhyWorld.cpp...
  3167. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Physics//PhyWorld.cpp -o PhyWorld.o
  3168. ShaderPrePreprocessor.o: \
  3169. ../../src/Resources/Helpers//ShaderPrePreprocessor.cpp \
  3170. ../../src/Resources/Helpers//ShaderPrePreprocessor.h \
  3171. ../../src/Util/Common.h ../../src/Misc/memory.h \
  3172. ../../src/Util/Tokenizer/Scanner.h ../../src/Util/Tokenizer/Parser.h \
  3173. ../../src/Util/Tokenizer/Scanner.h ../../src/Util/Util.h \
  3174. ../../src/Util/Common.h
  3175. @echo Compiling ../../src/Resources/Helpers//ShaderPrePreprocessor.cpp...
  3176. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Helpers//ShaderPrePreprocessor.cpp -o ShaderPrePreprocessor.o
  3177. Image.o: ../../src/Resources/Helpers//Image.cpp \
  3178. ../../src/Resources/Helpers//Image.h ../../src/Util/Common.h \
  3179. ../../src/Misc/memory.h ../../src/Util/Util.h ../../src/Util/Common.h
  3180. @echo Compiling ../../src/Resources/Helpers//Image.cpp...
  3181. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Helpers//Image.cpp -o Image.o
  3182. clean:
  3183. rm -f *.o
  3184. rm -f *.gch
  3185. rm -f *~
  3186. rm -f $(EXECUTABLE)