Makefile 239 KB

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