Makefile 339 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310
  1. # Generated by gBuildSystem, command: ../../gbs/gbs.py
  2. CXX = g++
  3. CFLAGS = -DDEBUG_ENABLED=1 -DPLATFORM_LINUX -DREVISION=\"`svnversion -c ../..`\" -c -pedantic-errors -pedantic -ansi -Wall -Wextra -W -Wno-long-long -pipe -g3 -pg -fsingle-precision-constant
  4. PHFLAGS =
  5. LFLAGS = -rdynamic -pg -L../../extern/lib-x86-64-linux -Wl,-Bstatic -lBulletSoftBody -lBulletDynamics -lBulletCollision -lLinearMath -lGLEW -lGLU -Wl,-Bdynamic -lGL -ljpeg -lSDL -lpng -lpython2.6 -lboost_system -lboost_python -lboost_filesystem -lboost_thread
  6. EXECUTABLE = anki
  7. INCPATH = -I./ -I../../src -I../../src/Resources -I../../src/Resources/Core -I../../src/Resources/Helpers -I../../src/Physics -I../../src/Math -I../../src/Misc -I../../src/Ui -I../../src/Core -I../../src/Scene -I../../src/Scene/Controllers -I../../src/Util -I../../src/Input -I../../src/Renderer -I../../src/Renderer/BufferObjects -I../../src/Collision -I../../src/Scripting -I../../src/Scripting/Math -I../../src/Scripting/Core -I../../src/Scripting/Scene -I../../src/Scripting/Util -I../../src/Scripting/Renderer -I../../extern/include -I../../extern/include/bullet -I/usr/include/python2.6
  8. SOURCES = ../../src/Main.cpp ../../src/Resources/ShaderProg.cpp ../../src/Resources/Mesh.cpp ../../src/Resources/DummyRsrc.cpp ../../src/Resources/Skin.cpp ../../src/Resources/SkelAnim.cpp ../../src/Resources/LightData.cpp ../../src/Resources/Script.cpp ../../src/Resources/Skeleton.cpp ../../src/Resources/ParticleEmitterProps.cpp ../../src/Resources/Texture.cpp ../../src/Resources/MtlUserDefinedVar.cpp ../../src/Resources/ModelPatch.cpp ../../src/Resources/Extension.cpp ../../src/Resources/SProgUniVar.cpp ../../src/Resources/Model.cpp ../../src/Resources/Material.cpp ../../src/Resources/Core/ResourceManager.cpp ../../src/Resources/Helpers/Image.cpp ../../src/Resources/Helpers/ShaderPrePreprocessor.cpp ../../src/Resources/Helpers/MeshData.cpp ../../src/Physics/Physics.cpp ../../src/Physics/RigidBody.cpp ../../src/Physics/PhyCharacter.cpp ../../src/Misc/skybox.cpp ../../src/Misc/map.cpp ../../src/Misc/PropertyTree.cpp ../../src/Misc/TestHeader.cpp ../../src/Ui/Ui.cpp ../../src/Core/Object.cpp ../../src/Core/Logger.cpp ../../src/Core/App.cpp ../../src/Core/StdinListener.cpp ../../src/Scene/ModelNodePatch.cpp ../../src/Scene/Camera.cpp ../../src/Scene/SpotLight.cpp ../../src/Scene/Light.cpp ../../src/Scene/Scene.cpp ../../src/Scene/SceneNode.cpp ../../src/Scene/ModelNode.cpp ../../src/Scene/ParticleEmitter.cpp ../../src/Scene/Controllers/SkelAnimModelNodeCtrl.cpp ../../src/Scene/Controllers/Controller.cpp ../../src/Util/BinaryStream.cpp ../../src/Util/Scanner.cpp ../../src/Util/Util.cpp ../../src/Util/Exception.cpp ../../src/Input/Input.cpp ../../src/Renderer/SceneDbgDrawer.cpp ../../src/Renderer/SkinsDeformer.cpp ../../src/Renderer/Renderer.cpp ../../src/Renderer/Hdr.cpp ../../src/Renderer/Bs.cpp ../../src/Renderer/Sm.cpp ../../src/Renderer/Dbg.cpp ../../src/Renderer/Smo.cpp ../../src/Renderer/Pps.cpp ../../src/Renderer/PhyDbgDrawer.cpp ../../src/Renderer/Ms.cpp ../../src/Renderer/MainRenderer.cpp ../../src/Renderer/SceneDrawer.cpp ../../src/Renderer/Is.cpp ../../src/Renderer/Ssao.cpp ../../src/Renderer/Ez.cpp ../../src/Renderer/BufferObjects/Vao.cpp ../../src/Renderer/BufferObjects/BufferObject.cpp ../../src/Collision/Plane.cpp ../../src/Collision/Sphere.cpp ../../src/Scripting/ScriptingEngine.cpp ../../src/Scripting/BoostPythonInterfaces.cpp ../../src/Scripting/Math/Vec4.bpi.cpp ../../src/Scripting/Math/Vec3.bpi.cpp ../../src/Scripting/Math/Vec2.bpi.cpp ../../src/Scripting/Core/Logger.bpi.cpp ../../src/Scripting/Core/App.bpi.cpp ../../src/Scripting/Scene/Scene.bpi.cpp ../../src/Scripting/Renderer/MainRenderer.bpi.cpp ../../src/Scripting/Renderer/Dbg.bpi.cpp ../../src/Scripting/Renderer/Hdr.bpi.cpp ../../src/Scripting/Renderer/Pps.bpi.cpp ../../src/Scripting/Renderer/Renderer.bpi.cpp
  9. OBJECTS = Main.o ShaderProg.o Mesh.o DummyRsrc.o Skin.o SkelAnim.o LightData.o Script.o Skeleton.o ParticleEmitterProps.o Texture.o MtlUserDefinedVar.o ModelPatch.o Extension.o SProgUniVar.o Model.o Material.o ResourceManager.o Image.o ShaderPrePreprocessor.o MeshData.o Physics.o RigidBody.o PhyCharacter.o skybox.o map.o PropertyTree.o TestHeader.o Ui.o Object.o Logger.o App.o StdinListener.o ModelNodePatch.o Camera.o SpotLight.o Light.o Scene.o SceneNode.o ModelNode.o ParticleEmitter.o SkelAnimModelNodeCtrl.o Controller.o BinaryStream.o Scanner.o Util.o Exception.o Input.o SceneDbgDrawer.o SkinsDeformer.o Renderer.o Hdr.o Bs.o Sm.o Dbg.o Smo.o Pps.o PhyDbgDrawer.o Ms.o MainRenderer.o SceneDrawer.o Is.o Ssao.o Ez.o Vao.o BufferObject.o Plane.o Sphere.o ScriptingEngine.o BoostPythonInterfaces.o Vec4.bpi.o Vec3.bpi.o Vec2.bpi.o Logger.bpi.o App.bpi.o Scene.bpi.o MainRenderer.bpi.o Dbg.bpi.o Hdr.bpi.o Pps.bpi.o Renderer.bpi.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. Main.o: ../../src/Main.cpp ../../src/Input/Input.h \
  17. ../../extern/include/SDL/SDL_scancode.h \
  18. ../../extern/include/SDL/SDL_stdinc.h \
  19. ../../extern/include/SDL/SDL_config.h \
  20. ../../extern/include/SDL/SDL_platform.h \
  21. ../../extern/include/SDL/begin_code.h \
  22. ../../extern/include/SDL/close_code.h ../../src/Math/Math.h \
  23. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  24. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  25. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  26. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  27. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  28. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  29. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  30. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  31. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  32. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  33. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  34. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  35. ../../src/Util/Singleton.h ../../src/Scene/Camera.h \
  36. ../../src/Collision/Collision.h ../../src/Collision/Plane.h \
  37. ../../src/Collision/CollisionShape.h ../../src/Util/Properties.h \
  38. ../../src/Collision/Sphere.h ../../src/Scene/SceneNode.h \
  39. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Core/Object.h \
  40. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  41. ../../extern/include/GL/glew.h ../../src/Resources/Texture.h \
  42. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  43. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  44. ../../src/Resources/SProgAttribVar.h \
  45. ../../src/Renderer/BufferObjects/Vbo.h \
  46. ../../src/Renderer/BufferObjects/BufferObject.h \
  47. ../../src/Renderer/BufferObjects/Vao.h ../../src/Misc/GlException.h \
  48. ../../src/Resources/Core/RsrcPtr.h \
  49. ../../src/Resources/Core/ResourceManager.h \
  50. ../../src/Resources/Core/ResourceManager.inl.h \
  51. ../../src/Resources/Core/RsrcPtr.inl.h \
  52. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Ms.h \
  53. ../../src/Renderer/RenderingPass.h ../../src/Renderer/Ez.h \
  54. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  55. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  56. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  57. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  58. ../../src/Ui/Ui.h ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  59. ../../extern/include/SDL/SDL_main.h \
  60. ../../extern/include/SDL/SDL_atomic.h \
  61. ../../extern/include/SDL/SDL_audio.h \
  62. ../../extern/include/SDL/SDL_error.h \
  63. ../../extern/include/SDL/SDL_endian.h \
  64. ../../extern/include/SDL/SDL_mutex.h \
  65. ../../extern/include/SDL/SDL_thread.h \
  66. ../../extern/include/SDL/SDL_rwops.h \
  67. ../../extern/include/SDL/SDL_clipboard.h \
  68. ../../extern/include/SDL/SDL_cpuinfo.h \
  69. ../../extern/include/SDL/SDL_events.h \
  70. ../../extern/include/SDL/SDL_video.h \
  71. ../../extern/include/SDL/SDL_pixels.h \
  72. ../../extern/include/SDL/SDL_rect.h \
  73. ../../extern/include/SDL/SDL_surface.h \
  74. ../../extern/include/SDL/SDL_keyboard.h \
  75. ../../extern/include/SDL/SDL_keysym.h \
  76. ../../extern/include/SDL/SDL_scancode.h \
  77. ../../extern/include/SDL/SDL_mouse.h \
  78. ../../extern/include/SDL/SDL_joystick.h \
  79. ../../extern/include/SDL/SDL_quit.h \
  80. ../../extern/include/SDL/SDL_gesture.h \
  81. ../../extern/include/SDL/SDL_touch.h \
  82. ../../extern/include/SDL/SDL_loadso.h \
  83. ../../extern/include/SDL/SDL_power.h \
  84. ../../extern/include/SDL/SDL_timer.h \
  85. ../../extern/include/SDL/SDL_version.h \
  86. ../../extern/include/SDL/SDL_revision.h \
  87. ../../extern/include/SDL/SDL_compat.h ../../src/Resources/Mesh.h \
  88. ../../src/Scene/Light.h ../../src/Scene/Camera.h \
  89. ../../src/Resources/LightData.h ../../src/Resources/Texture.h \
  90. ../../src/Scene/PointLight.h ../../src/Scene/Light.h \
  91. ../../src/Scene/SpotLight.h ../../src/Resources/Material.h \
  92. ../../src/Resources/ShaderProg.h ../../src/Resources/MtlUserDefinedVar.h \
  93. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  94. ../../src/Physics/Physics.h \
  95. ../../extern/include/bullet/btBulletCollisionCommon.h \
  96. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  97. ../../extern/include/bullet/LinearMath/btVector3.h \
  98. ../../extern/include/bullet/LinearMath/btScalar.h \
  99. ../../extern/include/bullet/LinearMath/btMinMax.h \
  100. ../../extern/include/bullet/LinearMath/btScalar.h \
  101. ../../extern/include/bullet/LinearMath/btTransform.h \
  102. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  103. ../../extern/include/bullet/LinearMath/btVector3.h \
  104. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  105. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  106. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  107. ../../extern/include/bullet/LinearMath/btMotionState.h \
  108. ../../extern/include/bullet/LinearMath/btTransform.h \
  109. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  110. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  111. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  112. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  113. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  114. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  115. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  116. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  117. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  118. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  119. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  120. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  121. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  122. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  123. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  124. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  125. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  126. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  127. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  128. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  129. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  130. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  131. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  132. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  133. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  134. ../../extern/include/bullet/LinearMath/btMinMax.h \
  135. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  136. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  137. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  138. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  139. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  140. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  141. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  142. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  143. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  144. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  145. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  146. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  147. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  148. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  149. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  150. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  151. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  152. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  153. ../../extern/include/bullet/LinearMath/btHashMap.h \
  154. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  155. ../../extern/include/bullet/LinearMath/btSerializer.h \
  156. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  157. ../../extern/include/bullet/LinearMath/btHashMap.h \
  158. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  159. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  160. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  161. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  162. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  163. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  164. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  165. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  166. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  167. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  168. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  169. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  170. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  171. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  172. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  173. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  174. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  175. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  176. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  177. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  178. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  179. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  180. ../../extern/include/bullet/LinearMath/btTransform.h \
  181. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  182. ../../extern/include/bullet/LinearMath/btMotionState.h \
  183. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  184. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  185. ../../extern/include/bullet/LinearMath/btSerializer.h \
  186. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  187. ../../extern/include/bullet/btBulletCollisionCommon.h \
  188. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  189. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  190. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  191. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  192. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  193. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  194. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  195. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  196. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  197. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  198. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  199. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  200. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  201. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  202. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  203. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  204. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  205. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  206. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  207. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  208. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  209. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  210. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  211. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  212. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  213. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  214. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  215. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  216. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  217. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  218. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  219. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  220. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  221. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  222. ../../src/Physics/BtAndAnkiConvertors.h \
  223. ../../src/Renderer/PhyDbgDrawer.h \
  224. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  225. ../../src/Util/Scanner.h ../../src/Util/StdTypes.h ../../src/Misc/map.h \
  226. ../../src/Resources/SkelAnim.h ../../src/Misc/Parser.h \
  227. ../../src/Misc/Parser.inl.h ../../src/Misc/Parser.h \
  228. ../../src/Scene/ParticleEmitter.h ../../src/Scene/GhostNode.h \
  229. ../../src/Resources/ParticleEmitterProps.h \
  230. ../../src/Physics/PhyCharacter.h ../../src/Physics/Physics.h \
  231. ../../src/Renderer/RendererInitializer.h \
  232. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h \
  233. ../../src/Physics/RigidBody.h ../../src/Scripting/ScriptingEngine.h \
  234. ../../src/Core/StdinListener.h ../../src/Scene/ModelNode.h \
  235. ../../src/Scene/ModelNodePatch.h ../../src/Resources/ModelPatch.h \
  236. ../../src/Scene/SceneNodePatch.h \
  237. ../../src/Scene/Controllers/SkelAnimModelNodeCtrl.h \
  238. ../../src/Scene/Controllers/Controller.h ../../src/Resources/Model.h \
  239. ../../src/Resources/ModelPatch.h ../../src/Core/Logger.h \
  240. ../../src/Util/Util.h ../../src/Util/Vec.h
  241. @echo Compiling ../../src/Main.cpp...
  242. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Main.cpp -o Main.o
  243. ShaderProg.o: ../../src/Resources/ShaderProg.cpp \
  244. ../../src/Resources/ShaderProg.h ../../extern/include/GL/glew.h \
  245. ../../src/Util/CharPtrHashMap.h ../../src/Util/Exception.h \
  246. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  247. ../../src/Util/Properties.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  248. ../../src/Math/MathCommon.h ../../src/Util/StdTypes.h \
  249. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  250. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  251. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  252. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  253. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  254. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  255. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  256. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  257. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  258. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  259. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  260. ../../src/Resources/Helpers/ShaderPrePreprocessor.h ../../src/Core/App.h \
  261. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  262. ../../extern/include/SDL/SDL_stdinc.h \
  263. ../../extern/include/SDL/SDL_config.h \
  264. ../../extern/include/SDL/SDL_platform.h \
  265. ../../extern/include/SDL/begin_code.h \
  266. ../../extern/include/SDL/close_code.h \
  267. ../../extern/include/SDL/SDL_atomic.h \
  268. ../../extern/include/SDL/SDL_audio.h \
  269. ../../extern/include/SDL/SDL_error.h \
  270. ../../extern/include/SDL/SDL_endian.h \
  271. ../../extern/include/SDL/SDL_mutex.h \
  272. ../../extern/include/SDL/SDL_thread.h \
  273. ../../extern/include/SDL/SDL_rwops.h \
  274. ../../extern/include/SDL/SDL_clipboard.h \
  275. ../../extern/include/SDL/SDL_cpuinfo.h \
  276. ../../extern/include/SDL/SDL_events.h \
  277. ../../extern/include/SDL/SDL_video.h \
  278. ../../extern/include/SDL/SDL_pixels.h \
  279. ../../extern/include/SDL/SDL_rect.h \
  280. ../../extern/include/SDL/SDL_surface.h \
  281. ../../extern/include/SDL/SDL_keyboard.h \
  282. ../../extern/include/SDL/SDL_keysym.h \
  283. ../../extern/include/SDL/SDL_scancode.h \
  284. ../../extern/include/SDL/SDL_mouse.h \
  285. ../../extern/include/SDL/SDL_joystick.h \
  286. ../../extern/include/SDL/SDL_quit.h \
  287. ../../extern/include/SDL/SDL_gesture.h \
  288. ../../extern/include/SDL/SDL_touch.h \
  289. ../../extern/include/SDL/SDL_loadso.h \
  290. ../../extern/include/SDL/SDL_power.h \
  291. ../../extern/include/SDL/SDL_timer.h \
  292. ../../extern/include/SDL/SDL_version.h \
  293. ../../extern/include/SDL/SDL_revision.h \
  294. ../../extern/include/SDL/SDL_compat.h ../../src/Util/Singleton.h \
  295. ../../src/Misc/GlException.h ../../src/Core/Logger.h \
  296. ../../src/Util/Util.h ../../src/Util/Vec.h ../../src/Util/StdTypes.h
  297. @echo Compiling ../../src/Resources/ShaderProg.cpp...
  298. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/ShaderProg.cpp -o ShaderProg.o
  299. Mesh.o: ../../src/Resources/Mesh.cpp ../../src/Resources/Mesh.h \
  300. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  301. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  302. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  303. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  304. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  305. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  306. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  307. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  308. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  309. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  310. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  311. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  312. ../../src/Resources/Core/RsrcPtr.h \
  313. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  314. ../../src/Resources/Core/ResourceManager.inl.h \
  315. ../../src/Resources/Core/RsrcPtr.inl.h \
  316. ../../src/Resources/Core/RsrcPtr.h \
  317. ../../src/Renderer/BufferObjects/Vbo.h \
  318. ../../src/Renderer/BufferObjects/BufferObject.h \
  319. ../../extern/include/GL/glew.h ../../src/Util/Properties.h \
  320. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h \
  321. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  322. ../../src/Resources/SProgVar.h ../../src/Resources/SProgAttribVar.h \
  323. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  324. ../../src/Resources/MtlUserDefinedVar.h \
  325. ../../src/Resources/Helpers/MeshData.h
  326. @echo Compiling ../../src/Resources/Mesh.cpp...
  327. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Mesh.cpp -o Mesh.o
  328. DummyRsrc.o: ../../src/Resources/DummyRsrc.cpp \
  329. ../../src/Resources/DummyRsrc.h
  330. @echo Compiling ../../src/Resources/DummyRsrc.cpp...
  331. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/DummyRsrc.cpp -o DummyRsrc.o
  332. Skin.o: ../../src/Resources/Skin.cpp ../../src/Resources/Skin.h \
  333. ../../src/Resources/Core/RsrcPtr.h \
  334. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  335. ../../src/Resources/Core/ResourceManager.inl.h \
  336. ../../src/Util/Exception.h ../../src/Resources/Core/RsrcPtr.inl.h \
  337. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/Model.h \
  338. ../../src/Renderer/BufferObjects/Vao.h ../../extern/include/GL/glew.h \
  339. ../../src/Util/StdTypes.h ../../src/Resources/ShaderProg.h \
  340. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  341. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  342. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  343. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  344. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  345. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  346. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  347. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  348. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  349. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  350. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  351. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  352. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  353. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Core/Object.h \
  354. ../../src/Misc/GlException.h ../../src/Resources/ModelPatch.h \
  355. ../../src/Resources/Skeleton.h ../../src/Resources/SkelAnim.h \
  356. ../../src/Resources/Mesh.h ../../src/Renderer/BufferObjects/Vbo.h \
  357. ../../src/Renderer/BufferObjects/BufferObject.h
  358. @echo Compiling ../../src/Resources/Skin.cpp...
  359. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Skin.cpp -o Skin.o
  360. SkelAnim.o: ../../src/Resources/SkelAnim.cpp \
  361. ../../src/Resources/SkelAnim.h ../../src/Math/Math.h \
  362. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  363. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  364. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  365. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  366. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  367. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  368. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  369. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  370. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  371. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  372. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  373. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  374. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Misc/Parser.h \
  375. ../../src/Util/Scanner.h ../../src/Util/StdTypes.h \
  376. ../../src/Misc/Parser.inl.h ../../src/Misc/Parser.h
  377. @echo Compiling ../../src/Resources/SkelAnim.cpp...
  378. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/SkelAnim.cpp -o SkelAnim.o
  379. LightData.o: ../../src/Resources/LightData.cpp \
  380. ../../src/Resources/LightData.h ../../src/Math/Math.h \
  381. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  382. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  383. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  384. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  385. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  386. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  387. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  388. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  389. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  390. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  391. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  392. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  393. ../../src/Resources/Core/RsrcPtr.h \
  394. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  395. ../../src/Resources/Core/ResourceManager.inl.h \
  396. ../../src/Resources/Core/RsrcPtr.inl.h \
  397. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/Texture.h \
  398. ../../src/Util/Properties.h ../../src/Misc/Parser.h \
  399. ../../src/Util/Scanner.h ../../src/Util/StdTypes.h \
  400. ../../src/Misc/Parser.inl.h ../../src/Misc/Parser.h
  401. @echo Compiling ../../src/Resources/LightData.cpp...
  402. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/LightData.cpp -o LightData.o
  403. Script.o: ../../src/Resources/Script.cpp ../../src/Resources/Script.h \
  404. ../../src/Util/Util.h ../../src/Util/Vec.h ../../src/Util/Exception.h \
  405. ../../src/Util/StdTypes.h ../../src/Util/Exception.h
  406. @echo Compiling ../../src/Resources/Script.cpp...
  407. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Script.cpp -o Script.o
  408. Skeleton.o: ../../src/Resources/Skeleton.cpp \
  409. ../../src/Resources/Skeleton.h ../../src/Math/Math.h \
  410. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  411. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  412. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  413. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  414. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  415. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  416. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  417. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  418. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  419. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  420. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  421. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  422. ../../src/Util/Properties.h ../../src/Util/Vec.h \
  423. ../../src/Util/Exception.h ../../src/Util/BinaryStream.h \
  424. ../../src/Util/StdTypes.h
  425. @echo Compiling ../../src/Resources/Skeleton.cpp...
  426. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Skeleton.cpp -o Skeleton.o
  427. ParticleEmitterProps.o: ../../src/Resources/ParticleEmitterProps.cpp \
  428. ../../src/Resources/ParticleEmitterProps.h ../../src/Math/Math.h \
  429. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  430. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  431. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  432. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  433. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  434. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  435. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  436. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  437. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  438. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  439. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  440. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h
  441. @echo Compiling ../../src/Resources/ParticleEmitterProps.cpp...
  442. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/ParticleEmitterProps.cpp -o ParticleEmitterProps.o
  443. Texture.o: ../../src/Resources/Texture.cpp ../../extern/include/GL/glew.h \
  444. ../../src/Resources/Texture.h ../../src/Util/StdTypes.h \
  445. ../../src/Util/Exception.h ../../src/Resources/Helpers/Image.h \
  446. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  447. ../../src/Util/Properties.h ../../src/Misc/GlException.h \
  448. ../../src/Core/Logger.h ../../src/Util/Singleton.h ../../src/Math/Math.h \
  449. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  450. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  451. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  452. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  453. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  454. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  455. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  456. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  457. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  458. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  459. ../../src/Math/Transform.inl.h
  460. @echo Compiling ../../src/Resources/Texture.cpp...
  461. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Texture.cpp -o Texture.o
  462. MtlUserDefinedVar.o: ../../src/Resources/MtlUserDefinedVar.cpp \
  463. ../../src/Resources/MtlUserDefinedVar.h ../../src/Util/Properties.h \
  464. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  465. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  466. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  467. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  468. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  469. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  470. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  471. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  472. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  473. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  474. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  475. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  476. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  477. ../../extern/include/GL/glew.h ../../src/Resources/Core/RsrcPtr.h \
  478. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  479. ../../src/Resources/Core/ResourceManager.inl.h \
  480. ../../src/Resources/Core/RsrcPtr.inl.h \
  481. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/Texture.h
  482. @echo Compiling ../../src/Resources/MtlUserDefinedVar.cpp...
  483. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/MtlUserDefinedVar.cpp -o MtlUserDefinedVar.o
  484. ModelPatch.o: ../../src/Resources/ModelPatch.cpp \
  485. ../../src/Resources/ModelPatch.h ../../src/Resources/Core/RsrcPtr.h \
  486. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  487. ../../src/Resources/Core/ResourceManager.inl.h \
  488. ../../src/Util/Exception.h ../../src/Resources/Core/RsrcPtr.inl.h \
  489. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/Mesh.h \
  490. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  491. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  492. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  493. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  494. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  495. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  496. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  497. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  498. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  499. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  500. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  501. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Vbo.h \
  502. ../../src/Renderer/BufferObjects/BufferObject.h \
  503. ../../extern/include/GL/glew.h ../../src/Util/Properties.h \
  504. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h \
  505. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  506. ../../src/Resources/SProgVar.h ../../src/Resources/SProgAttribVar.h \
  507. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  508. ../../src/Resources/MtlUserDefinedVar.h
  509. @echo Compiling ../../src/Resources/ModelPatch.cpp...
  510. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/ModelPatch.cpp -o ModelPatch.o
  511. Extension.o: ../../src/Resources/Extension.cpp \
  512. ../../src/Resources/Extension.h ../../src/Util/StdTypes.h \
  513. ../../src/Util/Exception.h
  514. @echo Compiling ../../src/Resources/Extension.cpp...
  515. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Extension.cpp -o Extension.o
  516. SProgUniVar.o: ../../src/Resources/SProgUniVar.cpp \
  517. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  518. ../../extern/include/GL/glew.h ../../src/Util/Properties.h \
  519. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  520. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  521. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  522. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  523. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  524. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  525. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  526. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  527. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  528. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  529. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  530. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  531. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  532. ../../src/Resources/SProgAttribVar.h ../../src/Util/Vec.h \
  533. ../../src/Util/Exception.h ../../src/Resources/Texture.h
  534. @echo Compiling ../../src/Resources/SProgUniVar.cpp...
  535. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/SProgUniVar.cpp -o SProgUniVar.o
  536. Model.o: ../../src/Resources/Model.cpp ../../src/Resources/Model.h \
  537. ../../src/Resources/Core/RsrcPtr.h \
  538. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  539. ../../src/Resources/Core/ResourceManager.inl.h \
  540. ../../src/Util/Exception.h ../../src/Resources/Core/RsrcPtr.inl.h \
  541. ../../src/Resources/Core/RsrcPtr.h \
  542. ../../src/Renderer/BufferObjects/Vao.h ../../extern/include/GL/glew.h \
  543. ../../src/Util/StdTypes.h ../../src/Resources/ShaderProg.h \
  544. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  545. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  546. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  547. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  548. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  549. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  550. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  551. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  552. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  553. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  554. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  555. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  556. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  557. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Core/Object.h \
  558. ../../src/Misc/GlException.h ../../src/Resources/ModelPatch.h \
  559. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h \
  560. ../../src/Resources/MtlUserDefinedVar.h ../../src/Resources/Mesh.h \
  561. ../../src/Renderer/BufferObjects/Vbo.h \
  562. ../../src/Renderer/BufferObjects/BufferObject.h \
  563. ../../src/Resources/SkelAnim.h ../../src/Resources/Helpers/MeshData.h \
  564. ../../src/Resources/Skeleton.h
  565. @echo Compiling ../../src/Resources/Model.cpp...
  566. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Model.cpp -o Model.o
  567. Material.o: ../../src/Resources/Material.cpp \
  568. ../../src/Resources/Material.h ../../src/Math/Math.h \
  569. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  570. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  571. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  572. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  573. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  574. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  575. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  576. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  577. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  578. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  579. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  580. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  581. ../../src/Resources/ShaderProg.h ../../extern/include/GL/glew.h \
  582. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  583. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  584. ../../src/Resources/SProgAttribVar.h ../../src/Util/Vec.h \
  585. ../../src/Util/Exception.h ../../src/Resources/Core/RsrcPtr.h \
  586. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  587. ../../src/Resources/Core/ResourceManager.inl.h \
  588. ../../src/Resources/Core/RsrcPtr.inl.h \
  589. ../../src/Resources/Core/RsrcPtr.h \
  590. ../../src/Resources/MtlUserDefinedVar.h ../../src/Misc/Parser.h \
  591. ../../src/Util/Scanner.h ../../src/Util/StdTypes.h \
  592. ../../src/Misc/Parser.inl.h ../../src/Misc/Parser.h \
  593. ../../src/Resources/Texture.h ../../src/Core/App.h \
  594. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  595. ../../extern/include/SDL/SDL_stdinc.h \
  596. ../../extern/include/SDL/SDL_config.h \
  597. ../../extern/include/SDL/SDL_platform.h \
  598. ../../extern/include/SDL/begin_code.h \
  599. ../../extern/include/SDL/close_code.h \
  600. ../../extern/include/SDL/SDL_atomic.h \
  601. ../../extern/include/SDL/SDL_audio.h \
  602. ../../extern/include/SDL/SDL_error.h \
  603. ../../extern/include/SDL/SDL_endian.h \
  604. ../../extern/include/SDL/SDL_mutex.h \
  605. ../../extern/include/SDL/SDL_thread.h \
  606. ../../extern/include/SDL/SDL_rwops.h \
  607. ../../extern/include/SDL/SDL_clipboard.h \
  608. ../../extern/include/SDL/SDL_cpuinfo.h \
  609. ../../extern/include/SDL/SDL_events.h \
  610. ../../extern/include/SDL/SDL_video.h \
  611. ../../extern/include/SDL/SDL_pixels.h \
  612. ../../extern/include/SDL/SDL_rect.h \
  613. ../../extern/include/SDL/SDL_surface.h \
  614. ../../extern/include/SDL/SDL_keyboard.h \
  615. ../../extern/include/SDL/SDL_keysym.h \
  616. ../../extern/include/SDL/SDL_scancode.h \
  617. ../../extern/include/SDL/SDL_mouse.h \
  618. ../../extern/include/SDL/SDL_joystick.h \
  619. ../../extern/include/SDL/SDL_quit.h \
  620. ../../extern/include/SDL/SDL_gesture.h \
  621. ../../extern/include/SDL/SDL_touch.h \
  622. ../../extern/include/SDL/SDL_loadso.h \
  623. ../../extern/include/SDL/SDL_power.h \
  624. ../../extern/include/SDL/SDL_timer.h \
  625. ../../extern/include/SDL/SDL_version.h \
  626. ../../extern/include/SDL/SDL_revision.h \
  627. ../../extern/include/SDL/SDL_compat.h ../../src/Misc/PropertyTree.h
  628. @echo Compiling ../../src/Resources/Material.cpp...
  629. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Material.cpp -o Material.o
  630. ResourceManager.o: ../../src/Resources/Core/ResourceManager.cpp \
  631. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  632. ../../src/Resources/Core/ResourceManager.inl.h \
  633. ../../src/Util/Exception.h ../../src/Resources/Texture.h \
  634. ../../src/Util/StdTypes.h ../../src/Resources/Material.h \
  635. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  636. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  637. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  638. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  639. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  640. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  641. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  642. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  643. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  644. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  645. ../../src/Math/Transform.inl.h ../../src/Resources/ShaderProg.h \
  646. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  647. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  648. ../../src/Util/Properties.h ../../src/Resources/SProgAttribVar.h \
  649. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  650. ../../src/Resources/Core/RsrcPtr.h \
  651. ../../src/Resources/Core/RsrcPtr.inl.h \
  652. ../../src/Resources/Core/RsrcPtr.h \
  653. ../../src/Resources/MtlUserDefinedVar.h ../../src/Resources/ShaderProg.h \
  654. ../../src/Resources/Mesh.h ../../src/Renderer/BufferObjects/Vbo.h \
  655. ../../src/Renderer/BufferObjects/BufferObject.h \
  656. ../../src/Resources/Skeleton.h ../../src/Resources/SkelAnim.h \
  657. ../../src/Resources/LightData.h ../../src/Resources/Texture.h \
  658. ../../src/Resources/ParticleEmitterProps.h ../../src/Resources/Script.h \
  659. ../../src/Resources/Model.h ../../src/Renderer/BufferObjects/Vao.h \
  660. ../../src/Core/Object.h ../../src/Misc/GlException.h \
  661. ../../src/Resources/ModelPatch.h ../../src/Resources/Skin.h \
  662. ../../src/Resources/Model.h ../../src/Resources/DummyRsrc.h
  663. @echo Compiling ../../src/Resources/Core/ResourceManager.cpp...
  664. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Core/ResourceManager.cpp -o ResourceManager.o
  665. Image.o: ../../src/Resources/Helpers/Image.cpp \
  666. ../../src/Resources/Helpers/Image.h ../../src/Util/Vec.h \
  667. ../../src/Util/Exception.h ../../src/Util/Properties.h \
  668. ../../src/Util/StdTypes.h ../../src/Util/Exception.h
  669. @echo Compiling ../../src/Resources/Helpers/Image.cpp...
  670. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Helpers/Image.cpp -o Image.o
  671. ShaderPrePreprocessor.o: \
  672. ../../src/Resources/Helpers/ShaderPrePreprocessor.cpp \
  673. ../../src/Resources/Helpers/ShaderPrePreprocessor.h ../../src/Util/Vec.h \
  674. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  675. ../../src/Util/Properties.h ../../src/Misc/Parser.h \
  676. ../../src/Util/Exception.h ../../src/Util/Scanner.h \
  677. ../../src/Util/StdTypes.h ../../src/Misc/Parser.inl.h \
  678. ../../src/Misc/Parser.h ../../src/Util/Util.h ../../src/Util/Vec.h
  679. @echo Compiling ../../src/Resources/Helpers/ShaderPrePreprocessor.cpp...
  680. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Helpers/ShaderPrePreprocessor.cpp -o ShaderPrePreprocessor.o
  681. MeshData.o: ../../src/Resources/Helpers/MeshData.cpp \
  682. ../../src/Resources/Helpers/MeshData.h ../../src/Math/Math.h \
  683. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  684. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  685. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  686. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  687. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  688. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  689. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  690. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  691. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  692. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  693. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  694. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  695. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  696. ../../src/Util/Properties.h ../../src/Util/BinaryStream.h \
  697. ../../src/Util/StdTypes.h
  698. @echo Compiling ../../src/Resources/Helpers/MeshData.cpp...
  699. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Helpers/MeshData.cpp -o MeshData.o
  700. Physics.o: ../../src/Physics/Physics.cpp \
  701. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btGhostObject.h \
  702. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  703. ../../extern/include/bullet/LinearMath/btTransform.h \
  704. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  705. ../../extern/include/bullet/LinearMath/btVector3.h \
  706. ../../extern/include/bullet/LinearMath/btScalar.h \
  707. ../../extern/include/bullet/LinearMath/btMinMax.h \
  708. ../../extern/include/bullet/LinearMath/btScalar.h \
  709. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  710. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  711. ../../extern/include/bullet/LinearMath/btMotionState.h \
  712. ../../extern/include/bullet/LinearMath/btTransform.h \
  713. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  714. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  715. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  716. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  717. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  718. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  719. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  720. ../../extern/include/bullet/LinearMath/btVector3.h \
  721. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  722. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  723. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  724. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  725. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  726. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  727. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  728. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  729. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  730. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  731. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  732. ../../src/Physics/Physics.h \
  733. ../../extern/include/bullet/btBulletCollisionCommon.h \
  734. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  735. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  736. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  737. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  738. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  739. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  740. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  741. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  742. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  743. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  744. ../../extern/include/bullet/LinearMath/btMinMax.h \
  745. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  746. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  747. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  748. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  749. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  750. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  751. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  752. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  753. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  754. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  755. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  756. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  757. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  758. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  759. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  760. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  761. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  762. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  763. ../../extern/include/bullet/LinearMath/btHashMap.h \
  764. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  765. ../../extern/include/bullet/LinearMath/btSerializer.h \
  766. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  767. ../../extern/include/bullet/LinearMath/btHashMap.h \
  768. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  769. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  770. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  771. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  772. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  773. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  774. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  775. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  776. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  777. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  778. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  779. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  780. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  781. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  782. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  783. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  784. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  785. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  786. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  787. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  788. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  789. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  790. ../../extern/include/bullet/LinearMath/btTransform.h \
  791. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  792. ../../extern/include/bullet/LinearMath/btMotionState.h \
  793. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  794. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  795. ../../extern/include/bullet/LinearMath/btSerializer.h \
  796. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  797. ../../extern/include/bullet/btBulletCollisionCommon.h \
  798. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  799. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  800. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  801. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  802. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  803. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  804. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  805. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  806. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  807. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  808. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  809. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  810. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  811. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  812. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  813. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  814. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  815. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  816. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  817. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  818. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  819. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  820. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  821. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  822. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  823. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  824. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  825. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  826. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  827. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  828. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  829. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  830. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  831. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  832. ../../src/Core/Object.h ../../src/Util/Vec.h ../../src/Util/Exception.h \
  833. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Math/Math.h \
  834. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  835. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  836. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  837. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  838. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  839. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  840. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  841. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  842. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  843. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  844. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  845. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  846. ../../src/Renderer/PhyDbgDrawer.h \
  847. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  848. ../../src/Physics/PhyCharacter.h ../../src/Physics/MotionState.h \
  849. ../../src/Scene/SceneNode.h ../../src/Util/Properties.h
  850. @echo Compiling ../../src/Physics/Physics.cpp...
  851. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Physics/Physics.cpp -o Physics.o
  852. RigidBody.o: ../../src/Physics/RigidBody.cpp \
  853. ../../src/Physics/RigidBody.h \
  854. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  855. ../../extern/include/bullet/btBulletCollisionCommon.h \
  856. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  857. ../../extern/include/bullet/LinearMath/btVector3.h \
  858. ../../extern/include/bullet/LinearMath/btScalar.h \
  859. ../../extern/include/bullet/LinearMath/btMinMax.h \
  860. ../../extern/include/bullet/LinearMath/btScalar.h \
  861. ../../extern/include/bullet/LinearMath/btTransform.h \
  862. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  863. ../../extern/include/bullet/LinearMath/btVector3.h \
  864. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  865. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  866. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  867. ../../extern/include/bullet/LinearMath/btMotionState.h \
  868. ../../extern/include/bullet/LinearMath/btTransform.h \
  869. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  870. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  871. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  872. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  873. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  874. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  875. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  876. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  877. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  878. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  879. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  880. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  881. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  882. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  883. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  884. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  885. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  886. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  887. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  888. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  889. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  890. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  891. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  892. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  893. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  894. ../../extern/include/bullet/LinearMath/btMinMax.h \
  895. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  896. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  897. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  898. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  899. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  900. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  901. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  902. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  903. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  904. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  905. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  906. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  907. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  908. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  909. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  910. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  911. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  912. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  913. ../../extern/include/bullet/LinearMath/btHashMap.h \
  914. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  915. ../../extern/include/bullet/LinearMath/btSerializer.h \
  916. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  917. ../../extern/include/bullet/LinearMath/btHashMap.h \
  918. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  919. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  920. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  921. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  922. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  923. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  924. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  925. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  926. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  927. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  928. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  929. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  930. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  931. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  932. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  933. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  934. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  935. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  936. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  937. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  938. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  939. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  940. ../../extern/include/bullet/LinearMath/btTransform.h \
  941. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  942. ../../extern/include/bullet/LinearMath/btMotionState.h \
  943. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  944. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  945. ../../extern/include/bullet/LinearMath/btSerializer.h \
  946. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  947. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  948. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  949. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  950. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  951. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  952. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  953. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  954. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  955. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  956. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  957. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  958. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  959. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  960. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  961. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  962. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  963. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  964. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  965. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  966. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  967. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  968. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  969. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  970. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  971. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  972. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  973. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  974. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  975. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  976. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  977. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  978. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  979. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  980. ../../extern/include/bullet/btBulletCollisionCommon.h \
  981. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  982. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  983. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  984. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  985. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  986. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  987. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  988. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  989. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  990. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  991. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  992. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  993. ../../src/Core/Object.h ../../src/Util/Vec.h ../../src/Util/Exception.h \
  994. ../../src/Physics/Physics.h ../../src/Physics/BtAndAnkiConvertors.h \
  995. ../../src/Renderer/PhyDbgDrawer.h \
  996. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  997. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  998. ../../src/Resources/Texture.h ../../src/Resources/Core/RsrcPtr.h \
  999. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  1000. ../../src/Resources/Core/ResourceManager.inl.h \
  1001. ../../src/Resources/Core/RsrcPtr.inl.h \
  1002. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/ShaderProg.h \
  1003. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  1004. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  1005. ../../src/Util/Properties.h ../../src/Resources/SProgAttribVar.h \
  1006. ../../src/Physics/Physics.h ../../src/Physics/MotionState.h \
  1007. ../../src/Scene/SceneNode.h
  1008. @echo Compiling ../../src/Physics/RigidBody.cpp...
  1009. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Physics/RigidBody.cpp -o RigidBody.o
  1010. PhyCharacter.o: ../../src/Physics/PhyCharacter.cpp \
  1011. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1012. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1013. ../../extern/include/bullet/LinearMath/btVector3.h \
  1014. ../../extern/include/bullet/LinearMath/btScalar.h \
  1015. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1016. ../../extern/include/bullet/LinearMath/btScalar.h \
  1017. ../../extern/include/bullet/LinearMath/btTransform.h \
  1018. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1019. ../../extern/include/bullet/LinearMath/btVector3.h \
  1020. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1021. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  1022. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1023. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1024. ../../extern/include/bullet/LinearMath/btTransform.h \
  1025. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1026. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1027. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1028. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1029. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1030. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1031. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1032. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  1033. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1034. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1035. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1036. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1037. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1038. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1039. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1040. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1041. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1042. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1043. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1044. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1045. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1046. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  1047. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  1048. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1049. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  1050. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1051. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  1052. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1053. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  1054. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1055. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  1056. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1057. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  1058. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1059. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1060. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1061. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1062. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1063. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1064. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1065. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1066. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1067. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1068. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1069. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1070. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1071. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1072. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  1073. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1074. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1075. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1076. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  1077. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1078. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  1079. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1080. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1081. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1082. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1083. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1084. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1085. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1086. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1087. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1088. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1089. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1090. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1091. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1092. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  1093. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1094. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1095. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1096. ../../extern/include/bullet/LinearMath/btTransform.h \
  1097. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  1098. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1099. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  1100. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1101. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1102. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  1103. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1104. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1105. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1106. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1107. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1108. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1109. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1110. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1111. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1112. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1113. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1114. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1115. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1116. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1117. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1118. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1119. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1120. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1121. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1122. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1123. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1124. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1125. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1126. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1127. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1128. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1129. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1130. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1131. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1132. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1133. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1134. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1135. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  1136. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  1137. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1138. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btGhostObject.h \
  1139. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1140. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1141. ../../extern/include/bullet/BulletDynamics/Character/btKinematicCharacterController.h \
  1142. ../../extern/include/bullet/BulletDynamics/Character/btCharacterControllerInterface.h \
  1143. ../../src/Physics/PhyCharacter.h ../../src/Physics/Physics.h \
  1144. ../../src/Core/Object.h ../../src/Util/Vec.h ../../src/Util/Exception.h \
  1145. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Math/Math.h \
  1146. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  1147. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  1148. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  1149. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1150. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1151. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1152. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1153. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1154. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1155. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1156. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1157. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  1158. ../../src/Renderer/PhyDbgDrawer.h \
  1159. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1160. ../../src/Physics/MotionState.h ../../src/Scene/SceneNode.h \
  1161. ../../src/Util/Properties.h ../../src/Physics/RigidBody.h
  1162. @echo Compiling ../../src/Physics/PhyCharacter.cpp...
  1163. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Physics/PhyCharacter.cpp -o PhyCharacter.o
  1164. skybox.o: ../../src/Misc/skybox.cpp ../../src/Misc/skybox.h \
  1165. ../../src/Resources/Texture.h ../../src/Util/StdTypes.h \
  1166. ../../src/Util/Exception.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  1167. ../../src/Math/MathCommon.h ../../src/Math/Vec2.inl.h \
  1168. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  1169. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1170. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1171. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1172. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1173. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1174. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1175. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1176. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1177. ../../src/Math/Transform.inl.h ../../src/Resources/Core/RsrcPtr.h \
  1178. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  1179. ../../src/Resources/Core/ResourceManager.inl.h \
  1180. ../../src/Resources/Core/RsrcPtr.inl.h \
  1181. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/ShaderProg.h \
  1182. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  1183. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  1184. ../../src/Util/Properties.h ../../src/Resources/SProgAttribVar.h \
  1185. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  1186. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  1187. ../../src/Renderer/BufferObjects/Vbo.h \
  1188. ../../src/Renderer/BufferObjects/BufferObject.h \
  1189. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  1190. ../../src/Misc/GlException.h ../../src/Renderer/Ms.h \
  1191. ../../src/Renderer/RenderingPass.h ../../src/Renderer/Ez.h \
  1192. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  1193. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  1194. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  1195. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  1196. ../../src/Scene/Camera.h ../../src/Collision/Collision.h \
  1197. ../../src/Collision/Plane.h ../../src/Collision/CollisionShape.h \
  1198. ../../src/Collision/Sphere.h ../../src/Scene/SceneNode.h \
  1199. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  1200. ../../src/Physics/Physics.h \
  1201. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1202. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1203. ../../extern/include/bullet/LinearMath/btVector3.h \
  1204. ../../extern/include/bullet/LinearMath/btScalar.h \
  1205. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1206. ../../extern/include/bullet/LinearMath/btScalar.h \
  1207. ../../extern/include/bullet/LinearMath/btTransform.h \
  1208. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1209. ../../extern/include/bullet/LinearMath/btVector3.h \
  1210. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1211. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  1212. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1213. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1214. ../../extern/include/bullet/LinearMath/btTransform.h \
  1215. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1216. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1217. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1218. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1219. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1220. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1221. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1222. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  1223. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1224. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1225. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1226. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1227. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1228. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1229. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1230. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1231. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1232. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1233. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1234. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1235. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1236. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  1237. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  1238. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1239. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  1240. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1241. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  1242. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1243. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  1244. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1245. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  1246. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1247. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  1248. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1249. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1250. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1251. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1252. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1253. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1254. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1255. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1256. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1257. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1258. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1259. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1260. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1261. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1262. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  1263. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1264. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1265. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1266. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  1267. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1268. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  1269. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1270. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1271. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1272. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1273. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1274. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1275. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1276. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1277. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1278. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1279. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1280. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1281. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1282. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  1283. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1284. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1285. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1286. ../../extern/include/bullet/LinearMath/btTransform.h \
  1287. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  1288. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1289. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  1290. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1291. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1292. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  1293. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1294. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1295. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1296. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1297. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1298. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1299. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1300. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1301. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1302. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1303. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1304. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1305. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1306. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1307. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1308. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1309. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1310. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1311. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1312. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1313. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1314. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1315. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1316. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1317. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1318. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1319. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1320. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1321. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1322. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1323. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1324. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1325. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  1326. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  1327. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1328. ../../src/Physics/BtAndAnkiConvertors.h \
  1329. ../../src/Renderer/PhyDbgDrawer.h \
  1330. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1331. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  1332. ../../extern/include/SDL/SDL_main.h \
  1333. ../../extern/include/SDL/SDL_stdinc.h \
  1334. ../../extern/include/SDL/SDL_config.h \
  1335. ../../extern/include/SDL/SDL_platform.h \
  1336. ../../extern/include/SDL/begin_code.h \
  1337. ../../extern/include/SDL/close_code.h \
  1338. ../../extern/include/SDL/SDL_atomic.h \
  1339. ../../extern/include/SDL/SDL_audio.h \
  1340. ../../extern/include/SDL/SDL_error.h \
  1341. ../../extern/include/SDL/SDL_endian.h \
  1342. ../../extern/include/SDL/SDL_mutex.h \
  1343. ../../extern/include/SDL/SDL_thread.h \
  1344. ../../extern/include/SDL/SDL_rwops.h \
  1345. ../../extern/include/SDL/SDL_clipboard.h \
  1346. ../../extern/include/SDL/SDL_cpuinfo.h \
  1347. ../../extern/include/SDL/SDL_events.h \
  1348. ../../extern/include/SDL/SDL_video.h \
  1349. ../../extern/include/SDL/SDL_pixels.h \
  1350. ../../extern/include/SDL/SDL_rect.h \
  1351. ../../extern/include/SDL/SDL_surface.h \
  1352. ../../extern/include/SDL/SDL_keyboard.h \
  1353. ../../extern/include/SDL/SDL_keysym.h \
  1354. ../../extern/include/SDL/SDL_scancode.h \
  1355. ../../extern/include/SDL/SDL_mouse.h \
  1356. ../../extern/include/SDL/SDL_joystick.h \
  1357. ../../extern/include/SDL/SDL_quit.h \
  1358. ../../extern/include/SDL/SDL_gesture.h \
  1359. ../../extern/include/SDL/SDL_touch.h \
  1360. ../../extern/include/SDL/SDL_loadso.h \
  1361. ../../extern/include/SDL/SDL_power.h \
  1362. ../../extern/include/SDL/SDL_timer.h \
  1363. ../../extern/include/SDL/SDL_version.h \
  1364. ../../extern/include/SDL/SDL_revision.h \
  1365. ../../extern/include/SDL/SDL_compat.h ../../src/Renderer/MainRenderer.h \
  1366. ../../src/Renderer/Renderer.h
  1367. @echo Compiling ../../src/Misc/skybox.cpp...
  1368. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc/skybox.cpp -o skybox.o
  1369. map.o: ../../src/Misc/map.cpp
  1370. @echo Compiling ../../src/Misc/map.cpp...
  1371. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc/map.cpp -o map.o
  1372. PropertyTree.o: ../../src/Misc/PropertyTree.cpp \
  1373. ../../src/Misc/PropertyTree.h ../../src/Math/Math.h \
  1374. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  1375. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  1376. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  1377. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1378. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1379. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1380. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1381. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1382. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1383. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1384. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1385. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h
  1386. @echo Compiling ../../src/Misc/PropertyTree.cpp...
  1387. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc/PropertyTree.cpp -o PropertyTree.o
  1388. TestHeader.o: ../../src/Misc/TestHeader.cpp ../../src/Resources/Model.h \
  1389. ../../src/Resources/Core/RsrcPtr.h \
  1390. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  1391. ../../src/Resources/Core/ResourceManager.inl.h \
  1392. ../../src/Util/Exception.h ../../src/Resources/Core/RsrcPtr.inl.h \
  1393. ../../src/Resources/Core/RsrcPtr.h \
  1394. ../../src/Renderer/BufferObjects/Vao.h ../../extern/include/GL/glew.h \
  1395. ../../src/Util/StdTypes.h ../../src/Resources/ShaderProg.h \
  1396. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  1397. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  1398. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  1399. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  1400. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1401. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1402. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1403. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1404. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1405. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1406. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1407. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1408. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  1409. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Core/Object.h \
  1410. ../../src/Misc/GlException.h ../../src/Resources/ModelPatch.h
  1411. @echo Compiling ../../src/Misc/TestHeader.cpp...
  1412. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc/TestHeader.cpp -o TestHeader.o
  1413. Ui.o: ../../src/Ui/Ui.cpp
  1414. @echo Compiling ../../src/Ui/Ui.cpp...
  1415. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Ui/Ui.cpp -o Ui.o
  1416. Object.o: ../../src/Core/Object.cpp ../../src/Core/Object.h \
  1417. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  1418. ../../src/Util/Exception.h
  1419. @echo Compiling ../../src/Core/Object.cpp...
  1420. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Core/Object.cpp -o Object.o
  1421. Logger.o: ../../src/Core/Logger.cpp ../../src/Core/Logger.h \
  1422. ../../src/Util/Singleton.h
  1423. @echo Compiling ../../src/Core/Logger.cpp...
  1424. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Core/Logger.cpp -o Logger.o
  1425. App.o: ../../src/Core/App.cpp ../../extern/include/GL/glew.h \
  1426. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  1427. ../../extern/include/SDL/SDL_stdinc.h \
  1428. ../../extern/include/SDL/SDL_config.h \
  1429. ../../extern/include/SDL/SDL_platform.h \
  1430. ../../extern/include/SDL/begin_code.h \
  1431. ../../extern/include/SDL/close_code.h \
  1432. ../../extern/include/SDL/SDL_atomic.h \
  1433. ../../extern/include/SDL/SDL_audio.h \
  1434. ../../extern/include/SDL/SDL_error.h \
  1435. ../../extern/include/SDL/SDL_endian.h \
  1436. ../../extern/include/SDL/SDL_mutex.h \
  1437. ../../extern/include/SDL/SDL_thread.h \
  1438. ../../extern/include/SDL/SDL_rwops.h \
  1439. ../../extern/include/SDL/SDL_clipboard.h \
  1440. ../../extern/include/SDL/SDL_cpuinfo.h \
  1441. ../../extern/include/SDL/SDL_events.h \
  1442. ../../extern/include/SDL/SDL_video.h \
  1443. ../../extern/include/SDL/SDL_pixels.h \
  1444. ../../extern/include/SDL/SDL_rect.h \
  1445. ../../extern/include/SDL/SDL_surface.h \
  1446. ../../extern/include/SDL/SDL_keyboard.h \
  1447. ../../extern/include/SDL/SDL_keysym.h \
  1448. ../../extern/include/SDL/SDL_scancode.h \
  1449. ../../extern/include/SDL/SDL_mouse.h \
  1450. ../../extern/include/SDL/SDL_joystick.h \
  1451. ../../extern/include/SDL/SDL_quit.h \
  1452. ../../extern/include/SDL/SDL_gesture.h \
  1453. ../../extern/include/SDL/SDL_touch.h \
  1454. ../../extern/include/SDL/SDL_loadso.h \
  1455. ../../extern/include/SDL/SDL_power.h \
  1456. ../../extern/include/SDL/SDL_timer.h \
  1457. ../../extern/include/SDL/SDL_version.h \
  1458. ../../extern/include/SDL/SDL_revision.h \
  1459. ../../extern/include/SDL/SDL_compat.h ../../src/Core/App.h \
  1460. ../../src/Util/StdTypes.h ../../src/Util/Properties.h \
  1461. ../../src/Util/Exception.h ../../src/Util/Singleton.h \
  1462. ../../src/Scene/Scene.h ../../src/Core/Object.h ../../src/Util/Vec.h \
  1463. ../../src/Util/Exception.h ../../src/Misc/skybox.h \
  1464. ../../src/Resources/Texture.h ../../src/Math/Math.h \
  1465. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  1466. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  1467. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1468. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1469. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1470. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1471. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1472. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1473. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1474. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1475. ../../src/Math/Transform.inl.h ../../src/Resources/Core/RsrcPtr.h \
  1476. ../../src/Resources/Core/ResourceManager.h \
  1477. ../../src/Resources/Core/ResourceManager.inl.h \
  1478. ../../src/Resources/Core/RsrcPtr.inl.h \
  1479. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/ShaderProg.h \
  1480. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  1481. ../../src/Resources/SProgVar.h ../../src/Resources/SProgAttribVar.h \
  1482. ../../src/Physics/Physics.h \
  1483. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1484. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1485. ../../extern/include/bullet/LinearMath/btVector3.h \
  1486. ../../extern/include/bullet/LinearMath/btScalar.h \
  1487. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1488. ../../extern/include/bullet/LinearMath/btScalar.h \
  1489. ../../extern/include/bullet/LinearMath/btTransform.h \
  1490. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1491. ../../extern/include/bullet/LinearMath/btVector3.h \
  1492. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1493. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  1494. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1495. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1496. ../../extern/include/bullet/LinearMath/btTransform.h \
  1497. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1498. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1499. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1500. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1501. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1502. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1503. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1504. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  1505. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1506. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1507. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1508. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1509. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1510. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1511. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1512. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1513. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1514. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1515. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1516. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1517. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1518. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  1519. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  1520. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1521. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  1522. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1523. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  1524. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1525. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  1526. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1527. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  1528. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1529. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  1530. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1531. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1532. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1533. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1534. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1535. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1536. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1537. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1538. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1539. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1540. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1541. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1542. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1543. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1544. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  1545. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1546. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1547. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1548. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  1549. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1550. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  1551. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1552. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1553. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1554. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1555. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1556. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1557. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1558. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1559. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1560. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1561. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1562. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1563. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1564. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  1565. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1566. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1567. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1568. ../../extern/include/bullet/LinearMath/btTransform.h \
  1569. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  1570. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1571. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  1572. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1573. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1574. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  1575. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1576. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1577. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1578. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1579. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1580. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1581. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1582. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1583. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1584. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1585. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1586. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1587. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1588. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1589. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1590. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1591. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1592. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1593. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1594. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1595. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1596. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1597. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1598. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1599. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1600. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1601. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1602. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1603. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1604. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1605. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1606. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1607. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  1608. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  1609. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1610. ../../src/Physics/BtAndAnkiConvertors.h \
  1611. ../../src/Renderer/PhyDbgDrawer.h \
  1612. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1613. ../../src/Renderer/RendererInitializer.h \
  1614. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h \
  1615. ../../src/Renderer/BufferObjects/Fbo.h \
  1616. ../../src/Renderer/BufferObjects/Vbo.h \
  1617. ../../src/Renderer/BufferObjects/BufferObject.h \
  1618. ../../src/Renderer/BufferObjects/Vao.h ../../src/Misc/GlException.h \
  1619. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingPass.h \
  1620. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  1621. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  1622. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  1623. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h \
  1624. ../../src/Renderer/SceneDbgDrawer.h \
  1625. ../../src/Scripting/ScriptingEngine.h ../../src/Core/StdinListener.h \
  1626. ../../src/Input/Input.h ../../extern/include/SDL/SDL_scancode.h \
  1627. ../../src/Core/Logger.h
  1628. @echo Compiling ../../src/Core/App.cpp...
  1629. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Core/App.cpp -o App.o
  1630. StdinListener.o: ../../src/Core/StdinListener.cpp \
  1631. ../../src/Core/StdinListener.h ../../src/Util/Singleton.h
  1632. @echo Compiling ../../src/Core/StdinListener.cpp...
  1633. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Core/StdinListener.cpp -o StdinListener.o
  1634. ModelNodePatch.o: ../../src/Scene/ModelNodePatch.cpp \
  1635. ../../src/Scene/ModelNodePatch.h ../../src/Renderer/BufferObjects/Vao.h \
  1636. ../../extern/include/GL/glew.h ../../src/Util/StdTypes.h \
  1637. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  1638. ../../src/Util/Exception.h ../../src/Resources/SProgUniVar.h \
  1639. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  1640. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  1641. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  1642. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1643. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1644. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1645. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1646. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1647. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1648. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1649. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1650. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  1651. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Core/Object.h \
  1652. ../../src/Misc/GlException.h ../../src/Renderer/BufferObjects/Vbo.h \
  1653. ../../src/Renderer/BufferObjects/BufferObject.h \
  1654. ../../src/Resources/Mesh.h ../../src/Resources/Core/RsrcPtr.h \
  1655. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  1656. ../../src/Resources/Core/ResourceManager.inl.h \
  1657. ../../src/Resources/Core/RsrcPtr.inl.h \
  1658. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/ModelPatch.h \
  1659. ../../src/Scene/SceneNodePatch.h ../../src/Scene/SceneNode.h \
  1660. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h \
  1661. ../../src/Resources/MtlUserDefinedVar.h \
  1662. ../../src/Resources/Helpers/MeshData.h ../../src/Scene/ModelNode.h
  1663. @echo Compiling ../../src/Scene/ModelNodePatch.cpp...
  1664. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/ModelNodePatch.cpp -o ModelNodePatch.o
  1665. Camera.o: ../../src/Scene/Camera.cpp ../../src/Scene/Camera.h \
  1666. ../../src/Collision/Collision.h ../../src/Collision/Plane.h \
  1667. ../../src/Collision/CollisionShape.h ../../src/Util/Properties.h \
  1668. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  1669. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  1670. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  1671. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1672. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1673. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1674. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1675. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1676. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1677. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1678. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1679. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  1680. ../../src/Collision/Sphere.h ../../src/Scene/SceneNode.h \
  1681. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Core/Object.h
  1682. @echo Compiling ../../src/Scene/Camera.cpp...
  1683. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/Camera.cpp -o Camera.o
  1684. SpotLight.o: ../../src/Scene/SpotLight.cpp ../../src/Scene/SpotLight.h \
  1685. ../../src/Scene/Light.h ../../src/Resources/Texture.h \
  1686. ../../src/Util/StdTypes.h ../../src/Util/Exception.h \
  1687. ../../src/Scene/SceneNode.h ../../src/Util/Vec.h \
  1688. ../../src/Util/Exception.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  1689. ../../src/Math/MathCommon.h ../../src/Math/Vec2.inl.h \
  1690. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  1691. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1692. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1693. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1694. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1695. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1696. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1697. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1698. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1699. ../../src/Math/Transform.inl.h ../../src/Core/Object.h \
  1700. ../../src/Util/Properties.h ../../src/Scene/Camera.h \
  1701. ../../src/Collision/Collision.h ../../src/Collision/Plane.h \
  1702. ../../src/Collision/CollisionShape.h ../../src/Collision/Sphere.h \
  1703. ../../src/Resources/Core/RsrcPtr.h \
  1704. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  1705. ../../src/Resources/Core/ResourceManager.inl.h \
  1706. ../../src/Resources/Core/RsrcPtr.inl.h \
  1707. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/LightData.h \
  1708. ../../src/Resources/Texture.h
  1709. @echo Compiling ../../src/Scene/SpotLight.cpp...
  1710. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/SpotLight.cpp -o SpotLight.o
  1711. Light.o: ../../src/Scene/Light.cpp ../../src/Scene/Light.h \
  1712. ../../src/Resources/Texture.h ../../src/Util/StdTypes.h \
  1713. ../../src/Util/Exception.h ../../src/Scene/SceneNode.h \
  1714. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Math/Math.h \
  1715. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  1716. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  1717. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1718. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1719. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1720. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1721. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1722. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1723. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1724. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1725. ../../src/Math/Transform.inl.h ../../src/Core/Object.h \
  1726. ../../src/Util/Properties.h ../../src/Scene/Camera.h \
  1727. ../../src/Collision/Collision.h ../../src/Collision/Plane.h \
  1728. ../../src/Collision/CollisionShape.h ../../src/Collision/Sphere.h \
  1729. ../../src/Resources/Core/RsrcPtr.h \
  1730. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  1731. ../../src/Resources/Core/ResourceManager.inl.h \
  1732. ../../src/Resources/Core/RsrcPtr.inl.h \
  1733. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/LightData.h \
  1734. ../../src/Resources/Texture.h
  1735. @echo Compiling ../../src/Scene/Light.cpp...
  1736. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/Light.cpp -o Light.o
  1737. Scene.o: ../../src/Scene/Scene.cpp ../../src/Util/Exception.h \
  1738. ../../src/Scene/Scene.h ../../src/Core/Object.h ../../src/Util/Vec.h \
  1739. ../../src/Util/Exception.h ../../src/Misc/skybox.h \
  1740. ../../src/Resources/Texture.h ../../src/Util/StdTypes.h \
  1741. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  1742. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  1743. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1744. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1745. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1746. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1747. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1748. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1749. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1750. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1751. ../../src/Math/Transform.inl.h ../../src/Resources/Core/RsrcPtr.h \
  1752. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  1753. ../../src/Resources/Core/ResourceManager.inl.h \
  1754. ../../src/Resources/Core/RsrcPtr.inl.h \
  1755. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/ShaderProg.h \
  1756. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  1757. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  1758. ../../src/Util/Properties.h ../../src/Resources/SProgAttribVar.h \
  1759. ../../src/Physics/Physics.h \
  1760. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1761. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1762. ../../extern/include/bullet/LinearMath/btVector3.h \
  1763. ../../extern/include/bullet/LinearMath/btScalar.h \
  1764. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1765. ../../extern/include/bullet/LinearMath/btScalar.h \
  1766. ../../extern/include/bullet/LinearMath/btTransform.h \
  1767. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1768. ../../extern/include/bullet/LinearMath/btVector3.h \
  1769. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1770. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  1771. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1772. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1773. ../../extern/include/bullet/LinearMath/btTransform.h \
  1774. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1775. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1776. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1777. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1778. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1779. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1780. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1781. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  1782. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1783. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1784. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1785. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1786. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1787. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1788. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1789. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1790. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1791. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1792. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1793. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1794. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1795. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  1796. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  1797. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1798. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  1799. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1800. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  1801. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1802. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  1803. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1804. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  1805. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1806. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  1807. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1808. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1809. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1810. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1811. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1812. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1813. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1814. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1815. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1816. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1817. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1818. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1819. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1820. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1821. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  1822. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1823. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1824. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1825. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  1826. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1827. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  1828. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1829. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1830. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1831. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1832. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1833. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1834. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1835. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1836. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1837. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1838. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1839. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1840. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1841. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  1842. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1843. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1844. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1845. ../../extern/include/bullet/LinearMath/btTransform.h \
  1846. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  1847. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1848. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  1849. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1850. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1851. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  1852. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1853. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1854. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1855. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1856. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1857. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1858. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1859. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1860. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1861. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1862. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1863. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1864. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1865. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1866. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1867. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1868. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1869. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1870. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1871. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1872. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1873. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1874. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1875. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1876. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1877. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1878. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1879. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1880. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1881. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1882. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1883. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1884. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  1885. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  1886. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1887. ../../src/Physics/BtAndAnkiConvertors.h \
  1888. ../../src/Renderer/PhyDbgDrawer.h \
  1889. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1890. ../../src/Scene/Camera.h ../../src/Collision/Collision.h \
  1891. ../../src/Collision/Plane.h ../../src/Collision/CollisionShape.h \
  1892. ../../src/Collision/Sphere.h ../../src/Scene/SceneNode.h \
  1893. ../../src/Scene/Light.h ../../src/Resources/LightData.h \
  1894. ../../src/Resources/Texture.h ../../src/Scene/Controllers/Controller.h \
  1895. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h \
  1896. ../../src/Resources/MtlUserDefinedVar.h \
  1897. ../../src/Scene/ParticleEmitter.h ../../src/Scene/GhostNode.h \
  1898. ../../src/Resources/ParticleEmitterProps.h ../../src/Scene/ModelNode.h \
  1899. ../../src/Scene/ModelNodePatch.h ../../src/Renderer/BufferObjects/Vao.h \
  1900. ../../src/Misc/GlException.h ../../src/Renderer/BufferObjects/Vbo.h \
  1901. ../../src/Renderer/BufferObjects/BufferObject.h \
  1902. ../../src/Resources/Mesh.h ../../src/Resources/ModelPatch.h \
  1903. ../../src/Scene/SceneNodePatch.h
  1904. @echo Compiling ../../src/Scene/Scene.cpp...
  1905. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/Scene.cpp -o Scene.o
  1906. SceneNode.o: ../../src/Scene/SceneNode.cpp ../../src/Scene/SceneNode.h \
  1907. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Math/Math.h \
  1908. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  1909. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  1910. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  1911. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1912. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1913. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1914. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1915. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1916. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1917. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1918. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1919. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  1920. ../../src/Core/Object.h ../../src/Util/Properties.h \
  1921. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  1922. ../../extern/include/GL/glew.h ../../src/Resources/Texture.h \
  1923. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  1924. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  1925. ../../src/Resources/SProgAttribVar.h \
  1926. ../../src/Renderer/BufferObjects/Vbo.h \
  1927. ../../src/Renderer/BufferObjects/BufferObject.h \
  1928. ../../src/Renderer/BufferObjects/Vao.h ../../src/Misc/GlException.h \
  1929. ../../src/Resources/Core/RsrcPtr.h \
  1930. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  1931. ../../src/Resources/Core/ResourceManager.inl.h \
  1932. ../../src/Resources/Core/RsrcPtr.inl.h \
  1933. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Ms.h \
  1934. ../../src/Renderer/RenderingPass.h ../../src/Renderer/Ez.h \
  1935. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  1936. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  1937. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  1938. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  1939. ../../src/Scene/Controllers/Controller.h ../../src/Scene/Scene.h \
  1940. ../../src/Misc/skybox.h ../../src/Physics/Physics.h \
  1941. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1942. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1943. ../../extern/include/bullet/LinearMath/btVector3.h \
  1944. ../../extern/include/bullet/LinearMath/btScalar.h \
  1945. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1946. ../../extern/include/bullet/LinearMath/btScalar.h \
  1947. ../../extern/include/bullet/LinearMath/btTransform.h \
  1948. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1949. ../../extern/include/bullet/LinearMath/btVector3.h \
  1950. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1951. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  1952. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1953. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1954. ../../extern/include/bullet/LinearMath/btTransform.h \
  1955. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1956. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1957. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1958. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1959. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1960. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1961. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1962. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  1963. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1964. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1965. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1966. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1967. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1968. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1969. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1970. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1971. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1972. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1973. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1974. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1975. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1976. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  1977. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  1978. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1979. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  1980. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1981. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  1982. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1983. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  1984. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1985. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  1986. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1987. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  1988. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1989. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1990. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1991. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1992. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1993. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1994. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1995. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1996. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1997. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1998. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1999. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2000. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2001. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2002. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  2003. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2004. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2005. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2006. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  2007. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2008. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  2009. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2010. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2011. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2012. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2013. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2014. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2015. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2016. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2017. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2018. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2019. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2020. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2021. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2022. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  2023. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2024. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2025. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2026. ../../extern/include/bullet/LinearMath/btTransform.h \
  2027. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  2028. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2029. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  2030. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2031. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2032. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  2033. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2034. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2035. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  2036. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2037. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  2038. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  2039. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2040. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  2041. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2042. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2043. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  2044. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  2045. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2046. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2047. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  2048. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  2049. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  2050. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  2051. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2052. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  2053. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2054. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2055. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  2056. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  2057. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2058. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  2059. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  2060. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  2061. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2062. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  2063. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2064. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  2065. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  2066. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  2067. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2068. ../../src/Physics/BtAndAnkiConvertors.h \
  2069. ../../src/Renderer/PhyDbgDrawer.h \
  2070. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2071. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  2072. ../../extern/include/SDL/SDL_main.h \
  2073. ../../extern/include/SDL/SDL_stdinc.h \
  2074. ../../extern/include/SDL/SDL_config.h \
  2075. ../../extern/include/SDL/SDL_platform.h \
  2076. ../../extern/include/SDL/begin_code.h \
  2077. ../../extern/include/SDL/close_code.h \
  2078. ../../extern/include/SDL/SDL_atomic.h \
  2079. ../../extern/include/SDL/SDL_audio.h \
  2080. ../../extern/include/SDL/SDL_error.h \
  2081. ../../extern/include/SDL/SDL_endian.h \
  2082. ../../extern/include/SDL/SDL_mutex.h \
  2083. ../../extern/include/SDL/SDL_thread.h \
  2084. ../../extern/include/SDL/SDL_rwops.h \
  2085. ../../extern/include/SDL/SDL_clipboard.h \
  2086. ../../extern/include/SDL/SDL_cpuinfo.h \
  2087. ../../extern/include/SDL/SDL_events.h \
  2088. ../../extern/include/SDL/SDL_video.h \
  2089. ../../extern/include/SDL/SDL_pixels.h \
  2090. ../../extern/include/SDL/SDL_rect.h \
  2091. ../../extern/include/SDL/SDL_surface.h \
  2092. ../../extern/include/SDL/SDL_keyboard.h \
  2093. ../../extern/include/SDL/SDL_keysym.h \
  2094. ../../extern/include/SDL/SDL_scancode.h \
  2095. ../../extern/include/SDL/SDL_mouse.h \
  2096. ../../extern/include/SDL/SDL_joystick.h \
  2097. ../../extern/include/SDL/SDL_quit.h \
  2098. ../../extern/include/SDL/SDL_gesture.h \
  2099. ../../extern/include/SDL/SDL_touch.h \
  2100. ../../extern/include/SDL/SDL_loadso.h \
  2101. ../../extern/include/SDL/SDL_power.h \
  2102. ../../extern/include/SDL/SDL_timer.h \
  2103. ../../extern/include/SDL/SDL_version.h \
  2104. ../../extern/include/SDL/SDL_revision.h \
  2105. ../../extern/include/SDL/SDL_compat.h
  2106. @echo Compiling ../../src/Scene/SceneNode.cpp...
  2107. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/SceneNode.cpp -o SceneNode.o
  2108. ModelNode.o: ../../src/Scene/ModelNode.cpp ../../src/Scene/ModelNode.h \
  2109. ../../src/Scene/SceneNode.h ../../src/Util/Vec.h \
  2110. ../../src/Util/Exception.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2111. ../../src/Math/MathCommon.h ../../src/Util/StdTypes.h \
  2112. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  2113. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2114. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2115. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2116. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2117. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2118. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2119. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2120. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2121. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  2122. ../../src/Core/Object.h ../../src/Util/Properties.h \
  2123. ../../src/Resources/Core/RsrcPtr.h \
  2124. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  2125. ../../src/Resources/Core/ResourceManager.inl.h \
  2126. ../../src/Resources/Core/RsrcPtr.inl.h \
  2127. ../../src/Resources/Core/RsrcPtr.h ../../src/Scene/ModelNodePatch.h \
  2128. ../../src/Renderer/BufferObjects/Vao.h ../../extern/include/GL/glew.h \
  2129. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  2130. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  2131. ../../src/Resources/SProgAttribVar.h ../../src/Misc/GlException.h \
  2132. ../../src/Renderer/BufferObjects/Vbo.h \
  2133. ../../src/Renderer/BufferObjects/BufferObject.h \
  2134. ../../src/Resources/Mesh.h ../../src/Resources/ModelPatch.h \
  2135. ../../src/Scene/SceneNodePatch.h ../../src/Resources/Model.h \
  2136. ../../src/Resources/ModelPatch.h ../../src/Resources/Skeleton.h
  2137. @echo Compiling ../../src/Scene/ModelNode.cpp...
  2138. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/ModelNode.cpp -o ModelNode.o
  2139. ParticleEmitter.o: ../../src/Scene/ParticleEmitter.cpp \
  2140. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2141. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2142. ../../extern/include/bullet/LinearMath/btVector3.h \
  2143. ../../extern/include/bullet/LinearMath/btScalar.h \
  2144. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2145. ../../extern/include/bullet/LinearMath/btScalar.h \
  2146. ../../extern/include/bullet/LinearMath/btTransform.h \
  2147. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2148. ../../extern/include/bullet/LinearMath/btVector3.h \
  2149. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2150. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  2151. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2152. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2153. ../../extern/include/bullet/LinearMath/btTransform.h \
  2154. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2155. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2156. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2157. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2158. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  2159. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  2160. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2161. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  2162. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  2163. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  2164. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2165. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2166. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2167. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  2168. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2169. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2170. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2171. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2172. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  2173. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2174. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  2175. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  2176. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  2177. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  2178. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  2179. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2180. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  2181. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  2182. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  2183. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2184. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  2185. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  2186. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  2187. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  2188. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  2189. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  2190. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2191. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  2192. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  2193. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  2194. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2195. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  2196. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  2197. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  2198. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2199. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2200. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2201. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  2202. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2203. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2204. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2205. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  2206. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2207. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  2208. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2209. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2210. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2211. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2212. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2213. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2214. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2215. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2216. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2217. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2218. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2219. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2220. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2221. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  2222. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2223. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2224. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2225. ../../extern/include/bullet/LinearMath/btTransform.h \
  2226. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  2227. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2228. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  2229. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2230. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2231. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  2232. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2233. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2234. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  2235. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2236. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  2237. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  2238. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2239. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  2240. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2241. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2242. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  2243. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  2244. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2245. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2246. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  2247. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  2248. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  2249. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  2250. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2251. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  2252. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2253. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2254. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  2255. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  2256. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2257. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  2258. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  2259. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  2260. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2261. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  2262. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2263. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  2264. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  2265. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  2266. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2267. ../../src/Scene/ParticleEmitter.h ../../src/Scene/SceneNode.h \
  2268. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Math/Math.h \
  2269. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  2270. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  2271. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  2272. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2273. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2274. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2275. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2276. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2277. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2278. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2279. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2280. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  2281. ../../src/Core/Object.h ../../src/Util/Properties.h \
  2282. ../../src/Scene/GhostNode.h ../../src/Resources/ParticleEmitterProps.h \
  2283. ../../src/Resources/Core/RsrcPtr.h \
  2284. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  2285. ../../src/Resources/Core/ResourceManager.inl.h \
  2286. ../../src/Resources/Core/RsrcPtr.inl.h \
  2287. ../../src/Resources/Core/RsrcPtr.h ../../src/Physics/RigidBody.h \
  2288. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h \
  2289. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  2290. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  2291. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  2292. ../../src/Resources/SProgVar.h ../../src/Resources/SProgAttribVar.h \
  2293. ../../src/Renderer/BufferObjects/Vbo.h \
  2294. ../../src/Renderer/BufferObjects/BufferObject.h \
  2295. ../../src/Renderer/BufferObjects/Vao.h ../../src/Misc/GlException.h \
  2296. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingPass.h \
  2297. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  2298. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  2299. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  2300. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h \
  2301. ../../src/Renderer/SceneDbgDrawer.h ../../src/Core/App.h \
  2302. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  2303. ../../extern/include/SDL/SDL_stdinc.h \
  2304. ../../extern/include/SDL/SDL_config.h \
  2305. ../../extern/include/SDL/SDL_platform.h \
  2306. ../../extern/include/SDL/begin_code.h \
  2307. ../../extern/include/SDL/close_code.h \
  2308. ../../extern/include/SDL/SDL_atomic.h \
  2309. ../../extern/include/SDL/SDL_audio.h \
  2310. ../../extern/include/SDL/SDL_error.h \
  2311. ../../extern/include/SDL/SDL_endian.h \
  2312. ../../extern/include/SDL/SDL_mutex.h \
  2313. ../../extern/include/SDL/SDL_thread.h \
  2314. ../../extern/include/SDL/SDL_rwops.h \
  2315. ../../extern/include/SDL/SDL_clipboard.h \
  2316. ../../extern/include/SDL/SDL_cpuinfo.h \
  2317. ../../extern/include/SDL/SDL_events.h \
  2318. ../../extern/include/SDL/SDL_video.h \
  2319. ../../extern/include/SDL/SDL_pixels.h \
  2320. ../../extern/include/SDL/SDL_rect.h \
  2321. ../../extern/include/SDL/SDL_surface.h \
  2322. ../../extern/include/SDL/SDL_keyboard.h \
  2323. ../../extern/include/SDL/SDL_keysym.h \
  2324. ../../extern/include/SDL/SDL_scancode.h \
  2325. ../../extern/include/SDL/SDL_mouse.h \
  2326. ../../extern/include/SDL/SDL_joystick.h \
  2327. ../../extern/include/SDL/SDL_quit.h \
  2328. ../../extern/include/SDL/SDL_gesture.h \
  2329. ../../extern/include/SDL/SDL_touch.h \
  2330. ../../extern/include/SDL/SDL_loadso.h \
  2331. ../../extern/include/SDL/SDL_power.h \
  2332. ../../extern/include/SDL/SDL_timer.h \
  2333. ../../extern/include/SDL/SDL_version.h \
  2334. ../../extern/include/SDL/SDL_revision.h \
  2335. ../../extern/include/SDL/SDL_compat.h ../../src/Scene/Scene.h \
  2336. ../../src/Misc/skybox.h ../../src/Physics/Physics.h \
  2337. ../../src/Physics/BtAndAnkiConvertors.h \
  2338. ../../src/Renderer/PhyDbgDrawer.h \
  2339. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2340. ../../src/Util/Util.h ../../src/Util/Vec.h ../../src/Util/StdTypes.h
  2341. @echo Compiling ../../src/Scene/ParticleEmitter.cpp...
  2342. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/ParticleEmitter.cpp -o ParticleEmitter.o
  2343. SkelAnimModelNodeCtrl.o: \
  2344. ../../src/Scene/Controllers/SkelAnimModelNodeCtrl.cpp \
  2345. ../../src/Scene/Controllers/SkelAnimModelNodeCtrl.h ../../src/Util/Vec.h \
  2346. ../../src/Util/Exception.h ../../src/Scene/Controllers/Controller.h \
  2347. ../../src/Util/Properties.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2348. ../../src/Math/MathCommon.h ../../src/Util/StdTypes.h \
  2349. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  2350. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2351. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2352. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2353. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2354. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2355. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2356. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2357. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2358. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  2359. ../../src/Resources/Core/RsrcPtr.h \
  2360. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  2361. ../../src/Resources/Core/ResourceManager.inl.h \
  2362. ../../src/Resources/Core/RsrcPtr.inl.h \
  2363. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/SkelAnim.h \
  2364. ../../src/Resources/Skeleton.h ../../src/Core/App.h \
  2365. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  2366. ../../extern/include/SDL/SDL_stdinc.h \
  2367. ../../extern/include/SDL/SDL_config.h \
  2368. ../../extern/include/SDL/SDL_platform.h \
  2369. ../../extern/include/SDL/begin_code.h \
  2370. ../../extern/include/SDL/close_code.h \
  2371. ../../extern/include/SDL/SDL_atomic.h \
  2372. ../../extern/include/SDL/SDL_audio.h \
  2373. ../../extern/include/SDL/SDL_error.h \
  2374. ../../extern/include/SDL/SDL_endian.h \
  2375. ../../extern/include/SDL/SDL_mutex.h \
  2376. ../../extern/include/SDL/SDL_thread.h \
  2377. ../../extern/include/SDL/SDL_rwops.h \
  2378. ../../extern/include/SDL/SDL_clipboard.h \
  2379. ../../extern/include/SDL/SDL_cpuinfo.h \
  2380. ../../extern/include/SDL/SDL_events.h \
  2381. ../../extern/include/SDL/SDL_video.h \
  2382. ../../extern/include/SDL/SDL_pixels.h \
  2383. ../../extern/include/SDL/SDL_rect.h \
  2384. ../../extern/include/SDL/SDL_surface.h \
  2385. ../../extern/include/SDL/SDL_keyboard.h \
  2386. ../../extern/include/SDL/SDL_keysym.h \
  2387. ../../extern/include/SDL/SDL_scancode.h \
  2388. ../../extern/include/SDL/SDL_mouse.h \
  2389. ../../extern/include/SDL/SDL_joystick.h \
  2390. ../../extern/include/SDL/SDL_quit.h \
  2391. ../../extern/include/SDL/SDL_gesture.h \
  2392. ../../extern/include/SDL/SDL_touch.h \
  2393. ../../extern/include/SDL/SDL_loadso.h \
  2394. ../../extern/include/SDL/SDL_power.h \
  2395. ../../extern/include/SDL/SDL_timer.h \
  2396. ../../extern/include/SDL/SDL_version.h \
  2397. ../../extern/include/SDL/SDL_revision.h \
  2398. ../../extern/include/SDL/SDL_compat.h ../../src/Scene/ModelNode.h \
  2399. ../../src/Scene/SceneNode.h ../../src/Core/Object.h \
  2400. ../../src/Scene/ModelNodePatch.h ../../src/Renderer/BufferObjects/Vao.h \
  2401. ../../extern/include/GL/glew.h ../../src/Resources/ShaderProg.h \
  2402. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  2403. ../../src/Resources/SProgVar.h ../../src/Resources/SProgAttribVar.h \
  2404. ../../src/Misc/GlException.h ../../src/Renderer/BufferObjects/Vbo.h \
  2405. ../../src/Renderer/BufferObjects/BufferObject.h \
  2406. ../../src/Resources/Mesh.h ../../src/Resources/ModelPatch.h \
  2407. ../../src/Scene/SceneNodePatch.h ../../src/Resources/Model.h \
  2408. ../../src/Resources/ModelPatch.h ../../src/Renderer/MainRenderer.h \
  2409. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  2410. ../../src/Resources/Texture.h ../../src/Renderer/Ms.h \
  2411. ../../src/Renderer/RenderingPass.h ../../src/Renderer/Ez.h \
  2412. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  2413. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  2414. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  2415. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h
  2416. @echo Compiling ../../src/Scene/Controllers/SkelAnimModelNodeCtrl.cpp...
  2417. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/Controllers/SkelAnimModelNodeCtrl.cpp -o SkelAnimModelNodeCtrl.o
  2418. Controller.o: ../../src/Scene/Controllers/Controller.cpp \
  2419. ../../src/Scene/Controllers/Controller.h ../../src/Util/Properties.h \
  2420. ../../src/Scene/Scene.h ../../src/Core/Object.h ../../src/Util/Vec.h \
  2421. ../../src/Util/Exception.h ../../src/Misc/skybox.h \
  2422. ../../src/Resources/Texture.h ../../src/Util/StdTypes.h \
  2423. ../../src/Util/Exception.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2424. ../../src/Math/MathCommon.h ../../src/Math/Vec2.inl.h \
  2425. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  2426. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2427. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2428. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2429. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2430. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2431. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2432. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2433. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2434. ../../src/Math/Transform.inl.h ../../src/Resources/Core/RsrcPtr.h \
  2435. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  2436. ../../src/Resources/Core/ResourceManager.inl.h \
  2437. ../../src/Resources/Core/RsrcPtr.inl.h \
  2438. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/ShaderProg.h \
  2439. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  2440. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  2441. ../../src/Resources/SProgAttribVar.h ../../src/Physics/Physics.h \
  2442. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2443. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2444. ../../extern/include/bullet/LinearMath/btVector3.h \
  2445. ../../extern/include/bullet/LinearMath/btScalar.h \
  2446. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2447. ../../extern/include/bullet/LinearMath/btScalar.h \
  2448. ../../extern/include/bullet/LinearMath/btTransform.h \
  2449. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2450. ../../extern/include/bullet/LinearMath/btVector3.h \
  2451. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2452. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  2453. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2454. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2455. ../../extern/include/bullet/LinearMath/btTransform.h \
  2456. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2457. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2458. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2459. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2460. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  2461. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  2462. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2463. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  2464. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  2465. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  2466. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2467. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2468. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2469. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  2470. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2471. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2472. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2473. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2474. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  2475. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2476. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  2477. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  2478. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  2479. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  2480. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  2481. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2482. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  2483. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  2484. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  2485. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2486. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  2487. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  2488. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  2489. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  2490. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  2491. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  2492. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2493. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  2494. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  2495. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  2496. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2497. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  2498. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  2499. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  2500. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2501. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2502. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2503. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  2504. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2505. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2506. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2507. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  2508. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2509. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  2510. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2511. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2512. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2513. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2514. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2515. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2516. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2517. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2518. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2519. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2520. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2521. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2522. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2523. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  2524. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2525. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2526. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2527. ../../extern/include/bullet/LinearMath/btTransform.h \
  2528. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  2529. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2530. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  2531. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2532. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2533. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  2534. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2535. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2536. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  2537. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2538. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  2539. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  2540. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2541. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  2542. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2543. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2544. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  2545. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  2546. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2547. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2548. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  2549. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  2550. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  2551. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  2552. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2553. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  2554. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2555. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2556. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  2557. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  2558. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2559. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  2560. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  2561. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  2562. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2563. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  2564. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2565. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  2566. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  2567. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  2568. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2569. ../../src/Physics/BtAndAnkiConvertors.h \
  2570. ../../src/Renderer/PhyDbgDrawer.h \
  2571. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2572. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  2573. ../../extern/include/SDL/SDL_main.h \
  2574. ../../extern/include/SDL/SDL_stdinc.h \
  2575. ../../extern/include/SDL/SDL_config.h \
  2576. ../../extern/include/SDL/SDL_platform.h \
  2577. ../../extern/include/SDL/begin_code.h \
  2578. ../../extern/include/SDL/close_code.h \
  2579. ../../extern/include/SDL/SDL_atomic.h \
  2580. ../../extern/include/SDL/SDL_audio.h \
  2581. ../../extern/include/SDL/SDL_error.h \
  2582. ../../extern/include/SDL/SDL_endian.h \
  2583. ../../extern/include/SDL/SDL_mutex.h \
  2584. ../../extern/include/SDL/SDL_thread.h \
  2585. ../../extern/include/SDL/SDL_rwops.h \
  2586. ../../extern/include/SDL/SDL_clipboard.h \
  2587. ../../extern/include/SDL/SDL_cpuinfo.h \
  2588. ../../extern/include/SDL/SDL_events.h \
  2589. ../../extern/include/SDL/SDL_video.h \
  2590. ../../extern/include/SDL/SDL_pixels.h \
  2591. ../../extern/include/SDL/SDL_rect.h \
  2592. ../../extern/include/SDL/SDL_surface.h \
  2593. ../../extern/include/SDL/SDL_keyboard.h \
  2594. ../../extern/include/SDL/SDL_keysym.h \
  2595. ../../extern/include/SDL/SDL_scancode.h \
  2596. ../../extern/include/SDL/SDL_mouse.h \
  2597. ../../extern/include/SDL/SDL_joystick.h \
  2598. ../../extern/include/SDL/SDL_quit.h \
  2599. ../../extern/include/SDL/SDL_gesture.h \
  2600. ../../extern/include/SDL/SDL_touch.h \
  2601. ../../extern/include/SDL/SDL_loadso.h \
  2602. ../../extern/include/SDL/SDL_power.h \
  2603. ../../extern/include/SDL/SDL_timer.h \
  2604. ../../extern/include/SDL/SDL_version.h \
  2605. ../../extern/include/SDL/SDL_revision.h \
  2606. ../../extern/include/SDL/SDL_compat.h
  2607. @echo Compiling ../../src/Scene/Controllers/Controller.cpp...
  2608. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/Controllers/Controller.cpp -o Controller.o
  2609. BinaryStream.o: ../../src/Util/BinaryStream.cpp \
  2610. ../../src/Util/BinaryStream.h ../../src/Util/Exception.h \
  2611. ../../src/Util/StdTypes.h
  2612. @echo Compiling ../../src/Util/BinaryStream.cpp...
  2613. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util/BinaryStream.cpp -o BinaryStream.o
  2614. Scanner.o: ../../src/Util/Scanner.cpp ../../src/Util/Scanner.h \
  2615. ../../src/Util/StdTypes.h ../../src/Util/Exception.h
  2616. @echo Compiling ../../src/Util/Scanner.cpp...
  2617. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util/Scanner.cpp -o Scanner.o
  2618. Util.o: ../../src/Util/Util.cpp ../../src/Util/Util.h \
  2619. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  2620. ../../src/Util/StdTypes.h
  2621. @echo Compiling ../../src/Util/Util.cpp...
  2622. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util/Util.cpp -o Util.o
  2623. Exception.o: ../../src/Util/Exception.cpp ../../src/Util/Exception.h
  2624. @echo Compiling ../../src/Util/Exception.cpp...
  2625. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util/Exception.cpp -o Exception.o
  2626. Input.o: ../../src/Input/Input.cpp ../../src/Input/Input.h \
  2627. ../../extern/include/SDL/SDL_scancode.h \
  2628. ../../extern/include/SDL/SDL_stdinc.h \
  2629. ../../extern/include/SDL/SDL_config.h \
  2630. ../../extern/include/SDL/SDL_platform.h \
  2631. ../../extern/include/SDL/begin_code.h \
  2632. ../../extern/include/SDL/close_code.h ../../src/Math/Math.h \
  2633. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  2634. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  2635. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  2636. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2637. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2638. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2639. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2640. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2641. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2642. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2643. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2644. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  2645. ../../src/Util/Singleton.h ../../extern/include/SDL/SDL.h \
  2646. ../../extern/include/SDL/SDL_main.h \
  2647. ../../extern/include/SDL/SDL_atomic.h \
  2648. ../../extern/include/SDL/SDL_audio.h \
  2649. ../../extern/include/SDL/SDL_error.h \
  2650. ../../extern/include/SDL/SDL_endian.h \
  2651. ../../extern/include/SDL/SDL_mutex.h \
  2652. ../../extern/include/SDL/SDL_thread.h \
  2653. ../../extern/include/SDL/SDL_rwops.h \
  2654. ../../extern/include/SDL/SDL_clipboard.h \
  2655. ../../extern/include/SDL/SDL_cpuinfo.h \
  2656. ../../extern/include/SDL/SDL_events.h \
  2657. ../../extern/include/SDL/SDL_video.h \
  2658. ../../extern/include/SDL/SDL_pixels.h \
  2659. ../../extern/include/SDL/SDL_rect.h \
  2660. ../../extern/include/SDL/SDL_surface.h \
  2661. ../../extern/include/SDL/SDL_keyboard.h \
  2662. ../../extern/include/SDL/SDL_keysym.h \
  2663. ../../extern/include/SDL/SDL_scancode.h \
  2664. ../../extern/include/SDL/SDL_mouse.h \
  2665. ../../extern/include/SDL/SDL_joystick.h \
  2666. ../../extern/include/SDL/SDL_quit.h \
  2667. ../../extern/include/SDL/SDL_gesture.h \
  2668. ../../extern/include/SDL/SDL_touch.h \
  2669. ../../extern/include/SDL/SDL_loadso.h \
  2670. ../../extern/include/SDL/SDL_power.h \
  2671. ../../extern/include/SDL/SDL_timer.h \
  2672. ../../extern/include/SDL/SDL_version.h \
  2673. ../../extern/include/SDL/SDL_revision.h \
  2674. ../../extern/include/SDL/SDL_compat.h ../../src/Core/App.h \
  2675. ../../src/Util/Properties.h ../../src/Core/Logger.h
  2676. @echo Compiling ../../src/Input/Input.cpp...
  2677. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Input/Input.cpp -o Input.o
  2678. SceneDbgDrawer.o: ../../src/Renderer/SceneDbgDrawer.cpp \
  2679. ../../src/Renderer/SceneDbgDrawer.h ../../src/Renderer/Dbg.h \
  2680. ../../src/Renderer/RenderingPass.h \
  2681. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  2682. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  2683. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  2684. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  2685. ../../src/Util/Properties.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2686. ../../src/Math/MathCommon.h ../../src/Math/Vec2.inl.h \
  2687. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  2688. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2689. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2690. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2691. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2692. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2693. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2694. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2695. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2696. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  2697. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  2698. ../../src/Resources/Core/RsrcPtr.h \
  2699. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  2700. ../../src/Resources/Core/ResourceManager.inl.h \
  2701. ../../src/Resources/Core/RsrcPtr.inl.h \
  2702. ../../src/Resources/Core/RsrcPtr.h \
  2703. ../../src/Renderer/BufferObjects/Vbo.h \
  2704. ../../src/Renderer/BufferObjects/BufferObject.h \
  2705. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  2706. ../../src/Misc/GlException.h ../../src/Scene/Camera.h \
  2707. ../../src/Collision/Collision.h ../../src/Collision/Plane.h \
  2708. ../../src/Collision/CollisionShape.h ../../src/Collision/Sphere.h \
  2709. ../../src/Scene/SceneNode.h ../../src/Scene/Light.h \
  2710. ../../src/Resources/Texture.h ../../src/Scene/Camera.h \
  2711. ../../src/Resources/LightData.h ../../src/Resources/Texture.h \
  2712. ../../src/Scene/ParticleEmitter.h \
  2713. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2714. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2715. ../../extern/include/bullet/LinearMath/btVector3.h \
  2716. ../../extern/include/bullet/LinearMath/btScalar.h \
  2717. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2718. ../../extern/include/bullet/LinearMath/btScalar.h \
  2719. ../../extern/include/bullet/LinearMath/btTransform.h \
  2720. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2721. ../../extern/include/bullet/LinearMath/btVector3.h \
  2722. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2723. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  2724. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2725. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2726. ../../extern/include/bullet/LinearMath/btTransform.h \
  2727. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2728. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2729. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2730. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2731. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  2732. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  2733. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2734. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  2735. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  2736. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  2737. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2738. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2739. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2740. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  2741. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2742. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2743. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2744. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2745. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  2746. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2747. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  2748. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  2749. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  2750. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  2751. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  2752. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2753. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  2754. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  2755. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  2756. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2757. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  2758. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  2759. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  2760. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  2761. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  2762. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  2763. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2764. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  2765. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  2766. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  2767. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2768. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  2769. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  2770. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  2771. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2772. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2773. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2774. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  2775. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2776. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2777. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2778. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  2779. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2780. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  2781. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2782. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2783. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2784. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2785. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2786. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2787. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2788. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2789. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2790. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2791. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2792. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2793. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2794. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  2795. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2796. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2797. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2798. ../../extern/include/bullet/LinearMath/btTransform.h \
  2799. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  2800. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2801. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  2802. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2803. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2804. ../../src/Scene/GhostNode.h ../../src/Resources/ParticleEmitterProps.h
  2805. @echo Compiling ../../src/Renderer/SceneDbgDrawer.cpp...
  2806. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/SceneDbgDrawer.cpp -o SceneDbgDrawer.o
  2807. SkinsDeformer.o: ../../src/Renderer/SkinsDeformer.cpp \
  2808. ../../src/Renderer/SkinsDeformer.h ../../src/Resources/Core/RsrcPtr.h \
  2809. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  2810. ../../src/Resources/Core/ResourceManager.inl.h \
  2811. ../../src/Util/Exception.h ../../src/Resources/Core/RsrcPtr.inl.h \
  2812. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/ShaderProg.h \
  2813. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  2814. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  2815. ../../src/Util/Properties.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2816. ../../src/Math/MathCommon.h ../../src/Util/StdTypes.h \
  2817. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  2818. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2819. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2820. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2821. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2822. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2823. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2824. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2825. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2826. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  2827. ../../src/Util/Vec.h ../../src/Util/Exception.h
  2828. @echo Compiling ../../src/Renderer/SkinsDeformer.cpp...
  2829. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/SkinsDeformer.cpp -o SkinsDeformer.o
  2830. Renderer.o: ../../src/Renderer/Renderer.cpp ../../src/Renderer/Renderer.h \
  2831. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  2832. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  2833. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  2834. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2835. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2836. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2837. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2838. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2839. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2840. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2841. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2842. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  2843. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  2844. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  2845. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  2846. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  2847. ../../src/Resources/SProgAttribVar.h ../../src/Util/Vec.h \
  2848. ../../src/Util/Exception.h ../../src/Renderer/BufferObjects/Vbo.h \
  2849. ../../src/Renderer/BufferObjects/BufferObject.h \
  2850. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  2851. ../../src/Misc/GlException.h ../../src/Resources/Core/RsrcPtr.h \
  2852. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  2853. ../../src/Resources/Core/ResourceManager.inl.h \
  2854. ../../src/Resources/Core/RsrcPtr.inl.h \
  2855. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Ms.h \
  2856. ../../src/Renderer/RenderingPass.h ../../src/Renderer/Ez.h \
  2857. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  2858. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  2859. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  2860. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  2861. ../../src/Scene/Camera.h ../../src/Collision/Collision.h \
  2862. ../../src/Collision/Plane.h ../../src/Collision/CollisionShape.h \
  2863. ../../src/Collision/Sphere.h ../../src/Scene/SceneNode.h \
  2864. ../../src/Renderer/RendererInitializer.h ../../src/Resources/Material.h \
  2865. ../../src/Resources/ShaderProg.h ../../src/Resources/MtlUserDefinedVar.h \
  2866. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  2867. ../../extern/include/SDL/SDL_main.h \
  2868. ../../extern/include/SDL/SDL_stdinc.h \
  2869. ../../extern/include/SDL/SDL_config.h \
  2870. ../../extern/include/SDL/SDL_platform.h \
  2871. ../../extern/include/SDL/begin_code.h \
  2872. ../../extern/include/SDL/close_code.h \
  2873. ../../extern/include/SDL/SDL_atomic.h \
  2874. ../../extern/include/SDL/SDL_audio.h \
  2875. ../../extern/include/SDL/SDL_error.h \
  2876. ../../extern/include/SDL/SDL_endian.h \
  2877. ../../extern/include/SDL/SDL_mutex.h \
  2878. ../../extern/include/SDL/SDL_thread.h \
  2879. ../../extern/include/SDL/SDL_rwops.h \
  2880. ../../extern/include/SDL/SDL_clipboard.h \
  2881. ../../extern/include/SDL/SDL_cpuinfo.h \
  2882. ../../extern/include/SDL/SDL_events.h \
  2883. ../../extern/include/SDL/SDL_video.h \
  2884. ../../extern/include/SDL/SDL_pixels.h \
  2885. ../../extern/include/SDL/SDL_rect.h \
  2886. ../../extern/include/SDL/SDL_surface.h \
  2887. ../../extern/include/SDL/SDL_keyboard.h \
  2888. ../../extern/include/SDL/SDL_keysym.h \
  2889. ../../extern/include/SDL/SDL_scancode.h \
  2890. ../../extern/include/SDL/SDL_mouse.h \
  2891. ../../extern/include/SDL/SDL_joystick.h \
  2892. ../../extern/include/SDL/SDL_quit.h \
  2893. ../../extern/include/SDL/SDL_gesture.h \
  2894. ../../extern/include/SDL/SDL_touch.h \
  2895. ../../extern/include/SDL/SDL_loadso.h \
  2896. ../../extern/include/SDL/SDL_power.h \
  2897. ../../extern/include/SDL/SDL_timer.h \
  2898. ../../extern/include/SDL/SDL_version.h \
  2899. ../../extern/include/SDL/SDL_revision.h \
  2900. ../../extern/include/SDL/SDL_compat.h ../../src/Scene/Scene.h \
  2901. ../../src/Misc/skybox.h ../../src/Physics/Physics.h \
  2902. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2903. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2904. ../../extern/include/bullet/LinearMath/btVector3.h \
  2905. ../../extern/include/bullet/LinearMath/btScalar.h \
  2906. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2907. ../../extern/include/bullet/LinearMath/btScalar.h \
  2908. ../../extern/include/bullet/LinearMath/btTransform.h \
  2909. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2910. ../../extern/include/bullet/LinearMath/btVector3.h \
  2911. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2912. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  2913. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2914. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2915. ../../extern/include/bullet/LinearMath/btTransform.h \
  2916. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2917. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2918. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2919. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2920. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  2921. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  2922. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2923. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  2924. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  2925. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  2926. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2927. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2928. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2929. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  2930. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2931. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2932. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2933. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2934. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  2935. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2936. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  2937. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  2938. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  2939. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  2940. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  2941. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2942. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  2943. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  2944. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  2945. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2946. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  2947. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  2948. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  2949. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  2950. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  2951. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  2952. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2953. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  2954. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  2955. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  2956. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2957. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  2958. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  2959. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  2960. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2961. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2962. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2963. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  2964. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2965. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2966. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2967. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  2968. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2969. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  2970. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2971. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2972. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2973. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2974. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2975. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2976. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2977. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2978. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2979. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2980. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2981. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2982. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2983. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  2984. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2985. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2986. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2987. ../../extern/include/bullet/LinearMath/btTransform.h \
  2988. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  2989. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2990. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  2991. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2992. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2993. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  2994. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2995. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2996. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  2997. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2998. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  2999. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  3000. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3001. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  3002. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3003. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3004. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  3005. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  3006. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3007. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3008. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  3009. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  3010. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  3011. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  3012. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3013. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  3014. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3015. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3016. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  3017. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  3018. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3019. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  3020. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  3021. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  3022. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3023. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  3024. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3025. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  3026. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  3027. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  3028. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3029. ../../src/Physics/BtAndAnkiConvertors.h \
  3030. ../../src/Renderer/PhyDbgDrawer.h \
  3031. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3032. ../../src/Scene/ModelNode.h ../../src/Scene/ModelNodePatch.h \
  3033. ../../src/Resources/Mesh.h ../../src/Resources/ModelPatch.h \
  3034. ../../src/Scene/SceneNodePatch.h ../../src/Resources/Model.h \
  3035. ../../src/Resources/ModelPatch.h
  3036. @echo Compiling ../../src/Renderer/Renderer.cpp...
  3037. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/Renderer.cpp -o Renderer.o
  3038. Hdr.o: ../../src/Renderer/Hdr.cpp ../../src/Renderer/Hdr.h \
  3039. ../../src/Renderer/RenderingPass.h \
  3040. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  3041. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  3042. ../../src/Resources/Texture.h ../../src/Resources/Core/RsrcPtr.h \
  3043. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  3044. ../../src/Resources/Core/ResourceManager.inl.h \
  3045. ../../src/Resources/Core/RsrcPtr.inl.h \
  3046. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Properties.h \
  3047. ../../src/Renderer/Renderer.h ../../src/Math/Math.h \
  3048. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  3049. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  3050. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3051. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3052. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3053. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3054. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3055. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3056. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3057. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3058. ../../src/Math/Transform.inl.h ../../src/Resources/ShaderProg.h \
  3059. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  3060. ../../src/Resources/SProgVar.h ../../src/Resources/SProgAttribVar.h \
  3061. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  3062. ../../src/Renderer/BufferObjects/Vbo.h \
  3063. ../../src/Renderer/BufferObjects/BufferObject.h \
  3064. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  3065. ../../src/Misc/GlException.h ../../src/Renderer/Ms.h \
  3066. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  3067. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  3068. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  3069. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  3070. ../../src/Renderer/RendererInitializer.h
  3071. @echo Compiling ../../src/Renderer/Hdr.cpp...
  3072. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/Hdr.cpp -o Hdr.o
  3073. Bs.o: ../../src/Renderer/Bs.cpp ../../src/Renderer/Bs.h \
  3074. ../../src/Renderer/RenderingPass.h \
  3075. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  3076. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  3077. ../../src/Resources/Core/RsrcPtr.h \
  3078. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  3079. ../../src/Resources/Core/ResourceManager.inl.h \
  3080. ../../src/Resources/Core/RsrcPtr.inl.h \
  3081. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/Texture.h \
  3082. ../../src/Renderer/Renderer.h ../../src/Math/Math.h \
  3083. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  3084. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  3085. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3086. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3087. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3088. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3089. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3090. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3091. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3092. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3093. ../../src/Math/Transform.inl.h ../../src/Resources/ShaderProg.h \
  3094. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  3095. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  3096. ../../src/Resources/SProgAttribVar.h ../../src/Util/Vec.h \
  3097. ../../src/Util/Exception.h ../../src/Renderer/BufferObjects/Vbo.h \
  3098. ../../src/Renderer/BufferObjects/BufferObject.h \
  3099. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  3100. ../../src/Misc/GlException.h ../../src/Renderer/Ms.h \
  3101. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  3102. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  3103. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  3104. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  3105. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  3106. ../../extern/include/SDL/SDL_main.h \
  3107. ../../extern/include/SDL/SDL_stdinc.h \
  3108. ../../extern/include/SDL/SDL_config.h \
  3109. ../../extern/include/SDL/SDL_platform.h \
  3110. ../../extern/include/SDL/begin_code.h \
  3111. ../../extern/include/SDL/close_code.h \
  3112. ../../extern/include/SDL/SDL_atomic.h \
  3113. ../../extern/include/SDL/SDL_audio.h \
  3114. ../../extern/include/SDL/SDL_error.h \
  3115. ../../extern/include/SDL/SDL_endian.h \
  3116. ../../extern/include/SDL/SDL_mutex.h \
  3117. ../../extern/include/SDL/SDL_thread.h \
  3118. ../../extern/include/SDL/SDL_rwops.h \
  3119. ../../extern/include/SDL/SDL_clipboard.h \
  3120. ../../extern/include/SDL/SDL_cpuinfo.h \
  3121. ../../extern/include/SDL/SDL_events.h \
  3122. ../../extern/include/SDL/SDL_video.h \
  3123. ../../extern/include/SDL/SDL_pixels.h \
  3124. ../../extern/include/SDL/SDL_rect.h \
  3125. ../../extern/include/SDL/SDL_surface.h \
  3126. ../../extern/include/SDL/SDL_keyboard.h \
  3127. ../../extern/include/SDL/SDL_keysym.h \
  3128. ../../extern/include/SDL/SDL_scancode.h \
  3129. ../../extern/include/SDL/SDL_mouse.h \
  3130. ../../extern/include/SDL/SDL_joystick.h \
  3131. ../../extern/include/SDL/SDL_quit.h \
  3132. ../../extern/include/SDL/SDL_gesture.h \
  3133. ../../extern/include/SDL/SDL_touch.h \
  3134. ../../extern/include/SDL/SDL_loadso.h \
  3135. ../../extern/include/SDL/SDL_power.h \
  3136. ../../extern/include/SDL/SDL_timer.h \
  3137. ../../extern/include/SDL/SDL_version.h \
  3138. ../../extern/include/SDL/SDL_revision.h \
  3139. ../../extern/include/SDL/SDL_compat.h ../../src/Scene/Scene.h \
  3140. ../../src/Misc/skybox.h ../../src/Physics/Physics.h \
  3141. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3142. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3143. ../../extern/include/bullet/LinearMath/btVector3.h \
  3144. ../../extern/include/bullet/LinearMath/btScalar.h \
  3145. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3146. ../../extern/include/bullet/LinearMath/btScalar.h \
  3147. ../../extern/include/bullet/LinearMath/btTransform.h \
  3148. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3149. ../../extern/include/bullet/LinearMath/btVector3.h \
  3150. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3151. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  3152. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3153. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3154. ../../extern/include/bullet/LinearMath/btTransform.h \
  3155. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3156. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3157. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3158. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3159. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  3160. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  3161. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3162. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  3163. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  3164. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  3165. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3166. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3167. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3168. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  3169. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3170. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  3171. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3172. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3173. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  3174. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3175. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  3176. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  3177. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  3178. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  3179. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  3180. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3181. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  3182. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  3183. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  3184. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3185. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  3186. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  3187. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  3188. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  3189. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  3190. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  3191. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3192. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  3193. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  3194. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  3195. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3196. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  3197. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  3198. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  3199. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3200. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3201. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3202. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  3203. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3204. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3205. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3206. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  3207. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  3208. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  3209. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  3210. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  3211. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  3212. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  3213. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  3214. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3215. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  3216. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  3217. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3218. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  3219. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3220. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  3221. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3222. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  3223. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  3224. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3225. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3226. ../../extern/include/bullet/LinearMath/btTransform.h \
  3227. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  3228. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3229. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  3230. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3231. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3232. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  3233. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3234. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3235. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  3236. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3237. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  3238. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  3239. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3240. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  3241. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3242. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3243. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  3244. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  3245. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3246. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3247. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  3248. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  3249. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  3250. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  3251. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3252. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  3253. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3254. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3255. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  3256. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  3257. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3258. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  3259. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  3260. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  3261. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3262. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  3263. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3264. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  3265. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  3266. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  3267. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3268. ../../src/Physics/BtAndAnkiConvertors.h \
  3269. ../../src/Renderer/PhyDbgDrawer.h \
  3270. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3271. ../../src/Resources/Model.h ../../src/Resources/ModelPatch.h \
  3272. ../../src/Scene/ModelNode.h ../../src/Scene/SceneNode.h \
  3273. ../../src/Scene/ModelNodePatch.h ../../src/Resources/Mesh.h \
  3274. ../../src/Resources/ModelPatch.h ../../src/Scene/SceneNodePatch.h \
  3275. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h \
  3276. ../../src/Resources/MtlUserDefinedVar.h
  3277. @echo Compiling ../../src/Renderer/Bs.cpp...
  3278. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/Bs.cpp -o Bs.o
  3279. Sm.o: ../../src/Renderer/Sm.cpp ../../src/Renderer/Sm.h \
  3280. ../../src/Renderer/RenderingPass.h \
  3281. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  3282. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  3283. ../../src/Resources/Texture.h ../../src/Util/Properties.h \
  3284. ../../src/Renderer/Renderer.h ../../src/Math/Math.h \
  3285. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  3286. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  3287. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3288. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3289. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3290. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3291. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3292. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3293. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3294. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3295. ../../src/Math/Transform.inl.h ../../src/Resources/ShaderProg.h \
  3296. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  3297. ../../src/Resources/SProgVar.h ../../src/Resources/SProgAttribVar.h \
  3298. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  3299. ../../src/Renderer/BufferObjects/Vbo.h \
  3300. ../../src/Renderer/BufferObjects/BufferObject.h \
  3301. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  3302. ../../src/Misc/GlException.h ../../src/Resources/Core/RsrcPtr.h \
  3303. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  3304. ../../src/Resources/Core/ResourceManager.inl.h \
  3305. ../../src/Resources/Core/RsrcPtr.inl.h \
  3306. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Ms.h \
  3307. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Smo.h \
  3308. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  3309. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  3310. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  3311. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  3312. ../../extern/include/SDL/SDL_main.h \
  3313. ../../extern/include/SDL/SDL_stdinc.h \
  3314. ../../extern/include/SDL/SDL_config.h \
  3315. ../../extern/include/SDL/SDL_platform.h \
  3316. ../../extern/include/SDL/begin_code.h \
  3317. ../../extern/include/SDL/close_code.h \
  3318. ../../extern/include/SDL/SDL_atomic.h \
  3319. ../../extern/include/SDL/SDL_audio.h \
  3320. ../../extern/include/SDL/SDL_error.h \
  3321. ../../extern/include/SDL/SDL_endian.h \
  3322. ../../extern/include/SDL/SDL_mutex.h \
  3323. ../../extern/include/SDL/SDL_thread.h \
  3324. ../../extern/include/SDL/SDL_rwops.h \
  3325. ../../extern/include/SDL/SDL_clipboard.h \
  3326. ../../extern/include/SDL/SDL_cpuinfo.h \
  3327. ../../extern/include/SDL/SDL_events.h \
  3328. ../../extern/include/SDL/SDL_video.h \
  3329. ../../extern/include/SDL/SDL_pixels.h \
  3330. ../../extern/include/SDL/SDL_rect.h \
  3331. ../../extern/include/SDL/SDL_surface.h \
  3332. ../../extern/include/SDL/SDL_keyboard.h \
  3333. ../../extern/include/SDL/SDL_keysym.h \
  3334. ../../extern/include/SDL/SDL_scancode.h \
  3335. ../../extern/include/SDL/SDL_mouse.h \
  3336. ../../extern/include/SDL/SDL_joystick.h \
  3337. ../../extern/include/SDL/SDL_quit.h \
  3338. ../../extern/include/SDL/SDL_gesture.h \
  3339. ../../extern/include/SDL/SDL_touch.h \
  3340. ../../extern/include/SDL/SDL_loadso.h \
  3341. ../../extern/include/SDL/SDL_power.h \
  3342. ../../extern/include/SDL/SDL_timer.h \
  3343. ../../extern/include/SDL/SDL_version.h \
  3344. ../../extern/include/SDL/SDL_revision.h \
  3345. ../../extern/include/SDL/SDL_compat.h ../../src/Scene/Scene.h \
  3346. ../../src/Misc/skybox.h ../../src/Physics/Physics.h \
  3347. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3348. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3349. ../../extern/include/bullet/LinearMath/btVector3.h \
  3350. ../../extern/include/bullet/LinearMath/btScalar.h \
  3351. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3352. ../../extern/include/bullet/LinearMath/btScalar.h \
  3353. ../../extern/include/bullet/LinearMath/btTransform.h \
  3354. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3355. ../../extern/include/bullet/LinearMath/btVector3.h \
  3356. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3357. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  3358. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3359. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3360. ../../extern/include/bullet/LinearMath/btTransform.h \
  3361. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3362. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3363. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3364. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3365. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  3366. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  3367. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3368. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  3369. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  3370. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  3371. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3372. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3373. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3374. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  3375. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3376. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  3377. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3378. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3379. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  3380. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3381. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  3382. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  3383. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  3384. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  3385. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  3386. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3387. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  3388. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  3389. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  3390. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3391. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  3392. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  3393. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  3394. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  3395. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  3396. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  3397. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3398. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  3399. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  3400. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  3401. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3402. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  3403. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  3404. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  3405. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3406. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3407. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3408. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  3409. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3410. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3411. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3412. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  3413. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  3414. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  3415. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  3416. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  3417. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  3418. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  3419. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  3420. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3421. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  3422. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  3423. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3424. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  3425. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3426. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  3427. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3428. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  3429. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  3430. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3431. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3432. ../../extern/include/bullet/LinearMath/btTransform.h \
  3433. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  3434. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3435. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  3436. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3437. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3438. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  3439. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3440. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3441. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  3442. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3443. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  3444. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  3445. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3446. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  3447. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3448. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3449. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  3450. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  3451. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3452. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3453. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  3454. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  3455. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  3456. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  3457. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3458. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  3459. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3460. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3461. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  3462. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  3463. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3464. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  3465. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  3466. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  3467. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3468. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  3469. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3470. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  3471. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  3472. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  3473. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3474. ../../src/Physics/BtAndAnkiConvertors.h \
  3475. ../../src/Renderer/PhyDbgDrawer.h \
  3476. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3477. ../../src/Resources/LightData.h ../../src/Resources/Texture.h \
  3478. ../../src/Scene/Camera.h ../../src/Collision/Collision.h \
  3479. ../../src/Collision/Plane.h ../../src/Collision/CollisionShape.h \
  3480. ../../src/Collision/Sphere.h ../../src/Scene/SceneNode.h \
  3481. ../../src/Renderer/RendererInitializer.h
  3482. @echo Compiling ../../src/Renderer/Sm.cpp...
  3483. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/Sm.cpp -o Sm.o
  3484. Dbg.o: ../../src/Renderer/Dbg.cpp ../../src/Renderer/Dbg.h \
  3485. ../../src/Renderer/RenderingPass.h \
  3486. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  3487. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  3488. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  3489. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  3490. ../../src/Util/Properties.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3491. ../../src/Math/MathCommon.h ../../src/Math/Vec2.inl.h \
  3492. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  3493. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3494. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3495. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3496. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3497. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3498. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3499. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3500. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3501. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  3502. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  3503. ../../src/Resources/Core/RsrcPtr.h \
  3504. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  3505. ../../src/Resources/Core/ResourceManager.inl.h \
  3506. ../../src/Resources/Core/RsrcPtr.inl.h \
  3507. ../../src/Resources/Core/RsrcPtr.h \
  3508. ../../src/Renderer/BufferObjects/Vbo.h \
  3509. ../../src/Renderer/BufferObjects/BufferObject.h \
  3510. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  3511. ../../src/Misc/GlException.h ../../src/Renderer/SceneDbgDrawer.h \
  3512. ../../src/Renderer/Renderer.h ../../src/Resources/Texture.h \
  3513. ../../src/Renderer/Ms.h ../../src/Renderer/Ez.h ../../src/Renderer/Is.h \
  3514. ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  3515. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  3516. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h ../../src/Core/App.h \
  3517. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  3518. ../../extern/include/SDL/SDL_stdinc.h \
  3519. ../../extern/include/SDL/SDL_config.h \
  3520. ../../extern/include/SDL/SDL_platform.h \
  3521. ../../extern/include/SDL/begin_code.h \
  3522. ../../extern/include/SDL/close_code.h \
  3523. ../../extern/include/SDL/SDL_atomic.h \
  3524. ../../extern/include/SDL/SDL_audio.h \
  3525. ../../extern/include/SDL/SDL_error.h \
  3526. ../../extern/include/SDL/SDL_endian.h \
  3527. ../../extern/include/SDL/SDL_mutex.h \
  3528. ../../extern/include/SDL/SDL_thread.h \
  3529. ../../extern/include/SDL/SDL_rwops.h \
  3530. ../../extern/include/SDL/SDL_clipboard.h \
  3531. ../../extern/include/SDL/SDL_cpuinfo.h \
  3532. ../../extern/include/SDL/SDL_events.h \
  3533. ../../extern/include/SDL/SDL_video.h \
  3534. ../../extern/include/SDL/SDL_pixels.h \
  3535. ../../extern/include/SDL/SDL_rect.h \
  3536. ../../extern/include/SDL/SDL_surface.h \
  3537. ../../extern/include/SDL/SDL_keyboard.h \
  3538. ../../extern/include/SDL/SDL_keysym.h \
  3539. ../../extern/include/SDL/SDL_scancode.h \
  3540. ../../extern/include/SDL/SDL_mouse.h \
  3541. ../../extern/include/SDL/SDL_joystick.h \
  3542. ../../extern/include/SDL/SDL_quit.h \
  3543. ../../extern/include/SDL/SDL_gesture.h \
  3544. ../../extern/include/SDL/SDL_touch.h \
  3545. ../../extern/include/SDL/SDL_loadso.h \
  3546. ../../extern/include/SDL/SDL_power.h \
  3547. ../../extern/include/SDL/SDL_timer.h \
  3548. ../../extern/include/SDL/SDL_version.h \
  3549. ../../extern/include/SDL/SDL_revision.h \
  3550. ../../extern/include/SDL/SDL_compat.h ../../src/Scene/Scene.h \
  3551. ../../src/Misc/skybox.h ../../src/Physics/Physics.h \
  3552. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3553. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3554. ../../extern/include/bullet/LinearMath/btVector3.h \
  3555. ../../extern/include/bullet/LinearMath/btScalar.h \
  3556. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3557. ../../extern/include/bullet/LinearMath/btScalar.h \
  3558. ../../extern/include/bullet/LinearMath/btTransform.h \
  3559. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3560. ../../extern/include/bullet/LinearMath/btVector3.h \
  3561. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3562. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  3563. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3564. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3565. ../../extern/include/bullet/LinearMath/btTransform.h \
  3566. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3567. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3568. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3569. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3570. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  3571. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  3572. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3573. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  3574. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  3575. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  3576. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3577. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3578. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3579. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  3580. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3581. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  3582. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3583. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3584. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  3585. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3586. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  3587. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  3588. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  3589. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  3590. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  3591. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3592. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  3593. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  3594. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  3595. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3596. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  3597. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  3598. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  3599. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  3600. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  3601. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  3602. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3603. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  3604. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  3605. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  3606. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3607. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  3608. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  3609. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  3610. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3611. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3612. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3613. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  3614. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3615. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3616. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3617. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  3618. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  3619. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  3620. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  3621. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  3622. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  3623. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  3624. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  3625. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3626. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  3627. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  3628. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3629. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  3630. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3631. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  3632. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3633. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  3634. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  3635. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3636. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3637. ../../extern/include/bullet/LinearMath/btTransform.h \
  3638. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  3639. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3640. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  3641. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3642. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3643. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  3644. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3645. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3646. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  3647. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3648. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  3649. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  3650. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3651. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  3652. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3653. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3654. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  3655. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  3656. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3657. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3658. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  3659. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  3660. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  3661. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  3662. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3663. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  3664. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3665. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3666. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  3667. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  3668. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3669. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  3670. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  3671. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  3672. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3673. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  3674. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3675. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  3676. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  3677. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  3678. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3679. ../../src/Physics/BtAndAnkiConvertors.h \
  3680. ../../src/Renderer/PhyDbgDrawer.h \
  3681. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3682. ../../src/Scene/Camera.h ../../src/Collision/Collision.h \
  3683. ../../src/Collision/Plane.h ../../src/Collision/CollisionShape.h \
  3684. ../../src/Collision/Sphere.h ../../src/Scene/SceneNode.h \
  3685. ../../src/Scene/Light.h ../../src/Scene/Camera.h \
  3686. ../../src/Resources/LightData.h ../../src/Resources/Texture.h \
  3687. ../../src/Renderer/RendererInitializer.h \
  3688. ../../src/Scene/ParticleEmitter.h ../../src/Scene/GhostNode.h \
  3689. ../../src/Resources/ParticleEmitterProps.h
  3690. @echo Compiling ../../src/Renderer/Dbg.cpp...
  3691. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/Dbg.cpp -o Dbg.o
  3692. Smo.o: ../../src/Renderer/Smo.cpp ../../src/Renderer/Smo.h \
  3693. ../../src/Renderer/RenderingPass.h \
  3694. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  3695. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  3696. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  3697. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  3698. ../../src/Util/Properties.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3699. ../../src/Math/MathCommon.h ../../src/Math/Vec2.inl.h \
  3700. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  3701. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3702. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3703. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3704. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3705. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3706. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3707. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3708. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3709. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  3710. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  3711. ../../src/Resources/Core/RsrcPtr.h \
  3712. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  3713. ../../src/Resources/Core/ResourceManager.inl.h \
  3714. ../../src/Resources/Core/RsrcPtr.inl.h \
  3715. ../../src/Resources/Core/RsrcPtr.h \
  3716. ../../src/Renderer/BufferObjects/Vbo.h \
  3717. ../../src/Renderer/BufferObjects/BufferObject.h \
  3718. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  3719. ../../src/Misc/GlException.h ../../src/Renderer/Renderer.h \
  3720. ../../src/Resources/Texture.h ../../src/Renderer/Ms.h \
  3721. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  3722. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  3723. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  3724. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  3725. ../../src/Scene/Light.h ../../src/Scene/SceneNode.h \
  3726. ../../src/Scene/Camera.h ../../src/Collision/Collision.h \
  3727. ../../src/Collision/Plane.h ../../src/Collision/CollisionShape.h \
  3728. ../../src/Collision/Sphere.h ../../src/Resources/LightData.h \
  3729. ../../src/Resources/Texture.h ../../src/Scene/PointLight.h \
  3730. ../../src/Scene/Light.h ../../src/Scene/SpotLight.h \
  3731. ../../src/Scene/Camera.h
  3732. @echo Compiling ../../src/Renderer/Smo.cpp...
  3733. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/Smo.cpp -o Smo.o
  3734. Pps.o: ../../src/Renderer/Pps.cpp ../../src/Renderer/Pps.h \
  3735. ../../src/Renderer/RenderingPass.h \
  3736. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  3737. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  3738. ../../src/Resources/Texture.h ../../src/Resources/Core/RsrcPtr.h \
  3739. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  3740. ../../src/Resources/Core/ResourceManager.inl.h \
  3741. ../../src/Resources/Core/RsrcPtr.inl.h \
  3742. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Hdr.h \
  3743. ../../src/Util/Properties.h ../../src/Renderer/Ssao.h \
  3744. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  3745. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  3746. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  3747. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  3748. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3749. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3750. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3751. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3752. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3753. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3754. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3755. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3756. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  3757. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  3758. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Vbo.h \
  3759. ../../src/Renderer/BufferObjects/BufferObject.h \
  3760. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  3761. ../../src/Misc/GlException.h ../../src/Renderer/Ms.h \
  3762. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  3763. ../../src/Renderer/Smo.h ../../src/Renderer/Bs.h \
  3764. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h
  3765. @echo Compiling ../../src/Renderer/Pps.cpp...
  3766. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/Pps.cpp -o Pps.o
  3767. PhyDbgDrawer.o: ../../src/Renderer/PhyDbgDrawer.cpp \
  3768. ../../src/Renderer/PhyDbgDrawer.h \
  3769. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3770. ../../extern/include/bullet/LinearMath/btVector3.h \
  3771. ../../extern/include/bullet/LinearMath/btScalar.h \
  3772. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3773. ../../extern/include/bullet/LinearMath/btScalar.h \
  3774. ../../extern/include/bullet/LinearMath/btTransform.h \
  3775. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3776. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3777. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  3778. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h \
  3779. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  3780. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  3781. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  3782. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3783. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3784. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3785. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3786. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3787. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3788. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3789. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3790. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  3791. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  3792. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  3793. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  3794. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  3795. ../../src/Resources/SProgAttribVar.h ../../src/Util/Vec.h \
  3796. ../../src/Util/Exception.h ../../src/Renderer/BufferObjects/Vbo.h \
  3797. ../../src/Renderer/BufferObjects/BufferObject.h \
  3798. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  3799. ../../src/Misc/GlException.h ../../src/Resources/Core/RsrcPtr.h \
  3800. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  3801. ../../src/Resources/Core/ResourceManager.inl.h \
  3802. ../../src/Resources/Core/RsrcPtr.inl.h \
  3803. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Ms.h \
  3804. ../../src/Renderer/RenderingPass.h ../../src/Renderer/Ez.h \
  3805. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  3806. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  3807. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  3808. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  3809. ../../src/Physics/BtAndAnkiConvertors.h \
  3810. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3811. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3812. ../../extern/include/bullet/LinearMath/btVector3.h \
  3813. ../../extern/include/bullet/LinearMath/btTransform.h \
  3814. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3815. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3816. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3817. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3818. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3819. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3820. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  3821. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  3822. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3823. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  3824. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  3825. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  3826. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3827. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3828. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3829. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  3830. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3831. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  3832. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3833. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3834. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  3835. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3836. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  3837. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  3838. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  3839. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  3840. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  3841. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3842. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  3843. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  3844. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  3845. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3846. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  3847. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  3848. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  3849. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  3850. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  3851. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  3852. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3853. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  3854. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  3855. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  3856. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3857. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  3858. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  3859. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  3860. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3861. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3862. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3863. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  3864. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3865. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3866. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3867. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  3868. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  3869. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  3870. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  3871. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  3872. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  3873. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  3874. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  3875. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3876. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  3877. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  3878. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3879. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  3880. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3881. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  3882. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3883. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  3884. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  3885. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3886. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3887. ../../extern/include/bullet/LinearMath/btTransform.h \
  3888. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  3889. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3890. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  3891. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3892. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3893. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  3894. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3895. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3896. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  3897. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3898. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  3899. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  3900. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3901. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  3902. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3903. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3904. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  3905. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  3906. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3907. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3908. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  3909. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  3910. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  3911. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  3912. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3913. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  3914. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3915. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3916. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  3917. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  3918. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3919. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  3920. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  3921. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  3922. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3923. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  3924. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3925. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  3926. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  3927. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  3928. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3929. ../../src/Core/Logger.h
  3930. @echo Compiling ../../src/Renderer/PhyDbgDrawer.cpp...
  3931. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/PhyDbgDrawer.cpp -o PhyDbgDrawer.o
  3932. Ms.o: ../../src/Renderer/Ms.cpp ../../src/Renderer/Ms.h \
  3933. ../../src/Renderer/RenderingPass.h ../../src/Resources/Texture.h \
  3934. ../../src/Util/StdTypes.h ../../src/Util/Exception.h \
  3935. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  3936. ../../src/Util/Properties.h ../../src/Renderer/Ez.h \
  3937. ../../src/Renderer/Renderer.h ../../src/Math/Math.h \
  3938. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  3939. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  3940. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3941. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3942. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3943. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3944. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3945. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3946. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3947. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3948. ../../src/Math/Transform.inl.h ../../src/Resources/ShaderProg.h \
  3949. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  3950. ../../src/Resources/SProgVar.h ../../src/Resources/SProgAttribVar.h \
  3951. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  3952. ../../src/Renderer/BufferObjects/Vbo.h \
  3953. ../../src/Renderer/BufferObjects/BufferObject.h \
  3954. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  3955. ../../src/Misc/GlException.h ../../src/Resources/Core/RsrcPtr.h \
  3956. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  3957. ../../src/Resources/Core/ResourceManager.inl.h \
  3958. ../../src/Resources/Core/RsrcPtr.inl.h \
  3959. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Is.h \
  3960. ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  3961. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  3962. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  3963. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  3964. ../../src/Scene/Camera.h ../../src/Collision/Collision.h \
  3965. ../../src/Collision/Plane.h ../../src/Collision/CollisionShape.h \
  3966. ../../src/Collision/Sphere.h ../../src/Scene/SceneNode.h \
  3967. ../../src/Scene/ModelNode.h ../../src/Scene/ModelNodePatch.h \
  3968. ../../src/Resources/Mesh.h ../../src/Resources/ModelPatch.h \
  3969. ../../src/Scene/SceneNodePatch.h
  3970. @echo Compiling ../../src/Renderer/Ms.cpp...
  3971. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/Ms.cpp -o Ms.o
  3972. MainRenderer.o: ../../src/Renderer/MainRenderer.cpp \
  3973. ../../src/Misc/GlException.h ../../extern/include/GL/glew.h \
  3974. ../../src/Util/Exception.h ../../src/Renderer/MainRenderer.h \
  3975. ../../src/Renderer/Renderer.h ../../src/Math/Math.h \
  3976. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  3977. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  3978. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  3979. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3980. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3981. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3982. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3983. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3984. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3985. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3986. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3987. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  3988. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  3989. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  3990. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  3991. ../../src/Resources/SProgAttribVar.h ../../src/Util/Vec.h \
  3992. ../../src/Util/Exception.h ../../src/Renderer/BufferObjects/Vbo.h \
  3993. ../../src/Renderer/BufferObjects/BufferObject.h \
  3994. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  3995. ../../src/Resources/Core/RsrcPtr.h \
  3996. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  3997. ../../src/Resources/Core/ResourceManager.inl.h \
  3998. ../../src/Resources/Core/RsrcPtr.inl.h \
  3999. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Ms.h \
  4000. ../../src/Renderer/RenderingPass.h ../../src/Renderer/Ez.h \
  4001. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  4002. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  4003. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  4004. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  4005. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  4006. ../../extern/include/SDL/SDL_main.h \
  4007. ../../extern/include/SDL/SDL_stdinc.h \
  4008. ../../extern/include/SDL/SDL_config.h \
  4009. ../../extern/include/SDL/SDL_platform.h \
  4010. ../../extern/include/SDL/begin_code.h \
  4011. ../../extern/include/SDL/close_code.h \
  4012. ../../extern/include/SDL/SDL_atomic.h \
  4013. ../../extern/include/SDL/SDL_audio.h \
  4014. ../../extern/include/SDL/SDL_error.h \
  4015. ../../extern/include/SDL/SDL_endian.h \
  4016. ../../extern/include/SDL/SDL_mutex.h \
  4017. ../../extern/include/SDL/SDL_thread.h \
  4018. ../../extern/include/SDL/SDL_rwops.h \
  4019. ../../extern/include/SDL/SDL_clipboard.h \
  4020. ../../extern/include/SDL/SDL_cpuinfo.h \
  4021. ../../extern/include/SDL/SDL_events.h \
  4022. ../../extern/include/SDL/SDL_video.h \
  4023. ../../extern/include/SDL/SDL_pixels.h \
  4024. ../../extern/include/SDL/SDL_rect.h \
  4025. ../../extern/include/SDL/SDL_surface.h \
  4026. ../../extern/include/SDL/SDL_keyboard.h \
  4027. ../../extern/include/SDL/SDL_keysym.h \
  4028. ../../extern/include/SDL/SDL_scancode.h \
  4029. ../../extern/include/SDL/SDL_mouse.h \
  4030. ../../extern/include/SDL/SDL_joystick.h \
  4031. ../../extern/include/SDL/SDL_quit.h \
  4032. ../../extern/include/SDL/SDL_gesture.h \
  4033. ../../extern/include/SDL/SDL_touch.h \
  4034. ../../extern/include/SDL/SDL_loadso.h \
  4035. ../../extern/include/SDL/SDL_power.h \
  4036. ../../extern/include/SDL/SDL_timer.h \
  4037. ../../extern/include/SDL/SDL_version.h \
  4038. ../../extern/include/SDL/SDL_revision.h \
  4039. ../../extern/include/SDL/SDL_compat.h \
  4040. ../../src/Renderer/RendererInitializer.h ../../src/Core/Logger.h
  4041. @echo Compiling ../../src/Renderer/MainRenderer.cpp...
  4042. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/MainRenderer.cpp -o MainRenderer.o
  4043. SceneDrawer.o: ../../src/Renderer/SceneDrawer.cpp \
  4044. ../../src/Renderer/SceneDrawer.h ../../src/Math/Math.h \
  4045. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  4046. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  4047. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  4048. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4049. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4050. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4051. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4052. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4053. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4054. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4055. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4056. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  4057. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h \
  4058. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  4059. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  4060. ../../src/Util/Properties.h ../../src/Resources/SProgAttribVar.h \
  4061. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  4062. ../../src/Resources/Core/RsrcPtr.h \
  4063. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  4064. ../../src/Resources/Core/ResourceManager.inl.h \
  4065. ../../src/Resources/Core/RsrcPtr.inl.h \
  4066. ../../src/Resources/Core/RsrcPtr.h \
  4067. ../../src/Resources/MtlUserDefinedVar.h ../../src/Scene/SceneNodePatch.h \
  4068. ../../src/Scene/SceneNode.h ../../src/Core/Object.h \
  4069. ../../src/Scene/Camera.h ../../src/Collision/Collision.h \
  4070. ../../src/Collision/Plane.h ../../src/Collision/CollisionShape.h \
  4071. ../../src/Collision/Sphere.h ../../src/Renderer/Renderer.h \
  4072. ../../src/Renderer/BufferObjects/Fbo.h ../../src/Resources/Texture.h \
  4073. ../../src/Resources/ShaderProg.h ../../src/Renderer/BufferObjects/Vbo.h \
  4074. ../../src/Renderer/BufferObjects/BufferObject.h \
  4075. ../../src/Renderer/BufferObjects/Vao.h ../../src/Misc/GlException.h \
  4076. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingPass.h \
  4077. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  4078. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  4079. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  4080. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h \
  4081. ../../src/Renderer/SceneDbgDrawer.h
  4082. @echo Compiling ../../src/Renderer/SceneDrawer.cpp...
  4083. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/SceneDrawer.cpp -o SceneDrawer.o
  4084. Is.o: ../../src/Renderer/Is.cpp ../../src/Renderer/Is.h \
  4085. ../../src/Renderer/RenderingPass.h \
  4086. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  4087. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  4088. ../../src/Resources/Texture.h ../../src/Resources/Core/RsrcPtr.h \
  4089. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  4090. ../../src/Resources/Core/ResourceManager.inl.h \
  4091. ../../src/Resources/Core/RsrcPtr.inl.h \
  4092. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/ShaderProg.h \
  4093. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  4094. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  4095. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  4096. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  4097. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4098. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4099. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4100. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4101. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4102. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4103. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4104. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4105. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  4106. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  4107. ../../src/Renderer/BufferObjects/Vbo.h \
  4108. ../../src/Renderer/BufferObjects/BufferObject.h \
  4109. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  4110. ../../src/Misc/GlException.h ../../src/Renderer/Sm.h \
  4111. ../../src/Renderer/Smo.h ../../src/Renderer/Renderer.h \
  4112. ../../src/Renderer/Ms.h ../../src/Renderer/Ez.h ../../src/Renderer/Pps.h \
  4113. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  4114. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h \
  4115. ../../src/Renderer/SceneDbgDrawer.h ../../src/Scene/Camera.h \
  4116. ../../src/Collision/Collision.h ../../src/Collision/Plane.h \
  4117. ../../src/Collision/CollisionShape.h ../../src/Collision/Sphere.h \
  4118. ../../src/Scene/SceneNode.h ../../src/Scene/Light.h \
  4119. ../../src/Scene/Camera.h ../../src/Resources/LightData.h \
  4120. ../../src/Resources/Texture.h ../../src/Scene/PointLight.h \
  4121. ../../src/Scene/Light.h ../../src/Scene/SpotLight.h ../../src/Core/App.h \
  4122. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  4123. ../../extern/include/SDL/SDL_stdinc.h \
  4124. ../../extern/include/SDL/SDL_config.h \
  4125. ../../extern/include/SDL/SDL_platform.h \
  4126. ../../extern/include/SDL/begin_code.h \
  4127. ../../extern/include/SDL/close_code.h \
  4128. ../../extern/include/SDL/SDL_atomic.h \
  4129. ../../extern/include/SDL/SDL_audio.h \
  4130. ../../extern/include/SDL/SDL_error.h \
  4131. ../../extern/include/SDL/SDL_endian.h \
  4132. ../../extern/include/SDL/SDL_mutex.h \
  4133. ../../extern/include/SDL/SDL_thread.h \
  4134. ../../extern/include/SDL/SDL_rwops.h \
  4135. ../../extern/include/SDL/SDL_clipboard.h \
  4136. ../../extern/include/SDL/SDL_cpuinfo.h \
  4137. ../../extern/include/SDL/SDL_events.h \
  4138. ../../extern/include/SDL/SDL_video.h \
  4139. ../../extern/include/SDL/SDL_pixels.h \
  4140. ../../extern/include/SDL/SDL_rect.h \
  4141. ../../extern/include/SDL/SDL_surface.h \
  4142. ../../extern/include/SDL/SDL_keyboard.h \
  4143. ../../extern/include/SDL/SDL_keysym.h \
  4144. ../../extern/include/SDL/SDL_scancode.h \
  4145. ../../extern/include/SDL/SDL_mouse.h \
  4146. ../../extern/include/SDL/SDL_joystick.h \
  4147. ../../extern/include/SDL/SDL_quit.h \
  4148. ../../extern/include/SDL/SDL_gesture.h \
  4149. ../../extern/include/SDL/SDL_touch.h \
  4150. ../../extern/include/SDL/SDL_loadso.h \
  4151. ../../extern/include/SDL/SDL_power.h \
  4152. ../../extern/include/SDL/SDL_timer.h \
  4153. ../../extern/include/SDL/SDL_version.h \
  4154. ../../extern/include/SDL/SDL_revision.h \
  4155. ../../extern/include/SDL/SDL_compat.h ../../src/Scene/Scene.h \
  4156. ../../src/Misc/skybox.h ../../src/Physics/Physics.h \
  4157. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4158. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4159. ../../extern/include/bullet/LinearMath/btVector3.h \
  4160. ../../extern/include/bullet/LinearMath/btScalar.h \
  4161. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4162. ../../extern/include/bullet/LinearMath/btScalar.h \
  4163. ../../extern/include/bullet/LinearMath/btTransform.h \
  4164. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4165. ../../extern/include/bullet/LinearMath/btVector3.h \
  4166. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4167. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  4168. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4169. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4170. ../../extern/include/bullet/LinearMath/btTransform.h \
  4171. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4172. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4173. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4174. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4175. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  4176. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  4177. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4178. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  4179. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  4180. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  4181. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4182. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4183. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4184. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  4185. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4186. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  4187. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4188. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4189. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  4190. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4191. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  4192. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  4193. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  4194. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  4195. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  4196. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4197. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  4198. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  4199. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  4200. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4201. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  4202. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  4203. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  4204. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  4205. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  4206. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  4207. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4208. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  4209. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  4210. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  4211. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4212. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  4213. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  4214. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  4215. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4216. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4217. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4218. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  4219. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4220. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4221. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4222. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  4223. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  4224. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  4225. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  4226. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  4227. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  4228. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  4229. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  4230. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4231. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  4232. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  4233. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4234. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  4235. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4236. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  4237. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4238. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  4239. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  4240. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4241. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4242. ../../extern/include/bullet/LinearMath/btTransform.h \
  4243. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  4244. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4245. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  4246. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4247. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4248. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  4249. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4250. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4251. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  4252. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4253. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  4254. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  4255. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4256. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  4257. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4258. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4259. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  4260. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  4261. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4262. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4263. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  4264. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  4265. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  4266. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  4267. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4268. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  4269. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4270. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4271. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  4272. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  4273. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4274. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  4275. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  4276. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  4277. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4278. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  4279. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4280. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  4281. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  4282. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  4283. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4284. ../../src/Physics/BtAndAnkiConvertors.h \
  4285. ../../src/Renderer/PhyDbgDrawer.h \
  4286. ../../extern/include/bullet/LinearMath/btIDebugDraw.h
  4287. @echo Compiling ../../src/Renderer/Is.cpp...
  4288. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/Is.cpp -o Is.o
  4289. Ssao.o: ../../src/Renderer/Ssao.cpp ../../src/Renderer/Ssao.h \
  4290. ../../src/Renderer/RenderingPass.h \
  4291. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  4292. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  4293. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  4294. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  4295. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  4296. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  4297. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  4298. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4299. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4300. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4301. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4302. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4303. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4304. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4305. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4306. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  4307. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  4308. ../../src/Resources/Core/RsrcPtr.h \
  4309. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  4310. ../../src/Resources/Core/ResourceManager.inl.h \
  4311. ../../src/Resources/Core/RsrcPtr.inl.h \
  4312. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Renderer.h \
  4313. ../../src/Renderer/BufferObjects/Vbo.h \
  4314. ../../src/Renderer/BufferObjects/BufferObject.h \
  4315. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  4316. ../../src/Misc/GlException.h ../../src/Renderer/Ms.h \
  4317. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  4318. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  4319. ../../src/Renderer/Hdr.h ../../src/Renderer/Bs.h \
  4320. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  4321. ../../src/Scene/Camera.h ../../src/Collision/Collision.h \
  4322. ../../src/Collision/Plane.h ../../src/Collision/CollisionShape.h \
  4323. ../../src/Collision/Sphere.h ../../src/Scene/SceneNode.h \
  4324. ../../src/Renderer/RendererInitializer.h
  4325. @echo Compiling ../../src/Renderer/Ssao.cpp...
  4326. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/Ssao.cpp -o Ssao.o
  4327. Ez.o: ../../src/Renderer/Ez.cpp ../../src/Renderer/Ez.h \
  4328. ../../src/Renderer/RenderingPass.h \
  4329. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  4330. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  4331. ../../src/Renderer/Renderer.h ../../src/Math/Math.h \
  4332. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  4333. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  4334. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4335. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4336. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4337. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4338. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4339. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4340. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4341. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4342. ../../src/Math/Transform.inl.h ../../src/Resources/Texture.h \
  4343. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  4344. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  4345. ../../src/Util/Properties.h ../../src/Resources/SProgAttribVar.h \
  4346. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  4347. ../../src/Renderer/BufferObjects/Vbo.h \
  4348. ../../src/Renderer/BufferObjects/BufferObject.h \
  4349. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  4350. ../../src/Misc/GlException.h ../../src/Resources/Core/RsrcPtr.h \
  4351. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  4352. ../../src/Resources/Core/ResourceManager.inl.h \
  4353. ../../src/Resources/Core/RsrcPtr.inl.h \
  4354. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Ms.h \
  4355. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  4356. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  4357. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  4358. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  4359. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  4360. ../../extern/include/SDL/SDL_main.h \
  4361. ../../extern/include/SDL/SDL_stdinc.h \
  4362. ../../extern/include/SDL/SDL_config.h \
  4363. ../../extern/include/SDL/SDL_platform.h \
  4364. ../../extern/include/SDL/begin_code.h \
  4365. ../../extern/include/SDL/close_code.h \
  4366. ../../extern/include/SDL/SDL_atomic.h \
  4367. ../../extern/include/SDL/SDL_audio.h \
  4368. ../../extern/include/SDL/SDL_error.h \
  4369. ../../extern/include/SDL/SDL_endian.h \
  4370. ../../extern/include/SDL/SDL_mutex.h \
  4371. ../../extern/include/SDL/SDL_thread.h \
  4372. ../../extern/include/SDL/SDL_rwops.h \
  4373. ../../extern/include/SDL/SDL_clipboard.h \
  4374. ../../extern/include/SDL/SDL_cpuinfo.h \
  4375. ../../extern/include/SDL/SDL_events.h \
  4376. ../../extern/include/SDL/SDL_video.h \
  4377. ../../extern/include/SDL/SDL_pixels.h \
  4378. ../../extern/include/SDL/SDL_rect.h \
  4379. ../../extern/include/SDL/SDL_surface.h \
  4380. ../../extern/include/SDL/SDL_keyboard.h \
  4381. ../../extern/include/SDL/SDL_keysym.h \
  4382. ../../extern/include/SDL/SDL_scancode.h \
  4383. ../../extern/include/SDL/SDL_mouse.h \
  4384. ../../extern/include/SDL/SDL_joystick.h \
  4385. ../../extern/include/SDL/SDL_quit.h \
  4386. ../../extern/include/SDL/SDL_gesture.h \
  4387. ../../extern/include/SDL/SDL_touch.h \
  4388. ../../extern/include/SDL/SDL_loadso.h \
  4389. ../../extern/include/SDL/SDL_power.h \
  4390. ../../extern/include/SDL/SDL_timer.h \
  4391. ../../extern/include/SDL/SDL_version.h \
  4392. ../../extern/include/SDL/SDL_revision.h \
  4393. ../../extern/include/SDL/SDL_compat.h ../../src/Scene/Scene.h \
  4394. ../../src/Misc/skybox.h ../../src/Physics/Physics.h \
  4395. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4396. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4397. ../../extern/include/bullet/LinearMath/btVector3.h \
  4398. ../../extern/include/bullet/LinearMath/btScalar.h \
  4399. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4400. ../../extern/include/bullet/LinearMath/btScalar.h \
  4401. ../../extern/include/bullet/LinearMath/btTransform.h \
  4402. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4403. ../../extern/include/bullet/LinearMath/btVector3.h \
  4404. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4405. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  4406. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4407. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4408. ../../extern/include/bullet/LinearMath/btTransform.h \
  4409. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4410. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4411. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4412. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4413. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  4414. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  4415. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4416. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  4417. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  4418. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  4419. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4420. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4421. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4422. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  4423. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4424. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  4425. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4426. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4427. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  4428. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4429. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  4430. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  4431. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  4432. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  4433. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  4434. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4435. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  4436. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  4437. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  4438. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4439. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  4440. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  4441. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  4442. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  4443. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  4444. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  4445. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4446. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  4447. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  4448. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  4449. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4450. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  4451. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  4452. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  4453. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4454. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4455. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4456. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  4457. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4458. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4459. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4460. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  4461. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  4462. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  4463. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  4464. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  4465. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  4466. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  4467. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  4468. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4469. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  4470. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  4471. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4472. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  4473. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4474. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  4475. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4476. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  4477. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  4478. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4479. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4480. ../../extern/include/bullet/LinearMath/btTransform.h \
  4481. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  4482. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4483. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  4484. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4485. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4486. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  4487. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4488. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4489. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  4490. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4491. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  4492. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  4493. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4494. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  4495. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4496. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4497. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  4498. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  4499. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4500. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4501. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  4502. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  4503. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  4504. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  4505. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4506. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  4507. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4508. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4509. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  4510. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  4511. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4512. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  4513. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  4514. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  4515. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4516. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  4517. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4518. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  4519. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  4520. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  4521. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4522. ../../src/Physics/BtAndAnkiConvertors.h \
  4523. ../../src/Renderer/PhyDbgDrawer.h \
  4524. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4525. ../../src/Renderer/RendererInitializer.h
  4526. @echo Compiling ../../src/Renderer/Ez.cpp...
  4527. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/Ez.cpp -o Ez.o
  4528. Vao.o: ../../src/Renderer/BufferObjects/Vao.cpp \
  4529. ../../src/Renderer/BufferObjects/Vao.h ../../extern/include/GL/glew.h \
  4530. ../../src/Util/StdTypes.h ../../src/Resources/ShaderProg.h \
  4531. ../../src/Util/CharPtrHashMap.h ../../src/Util/Exception.h \
  4532. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  4533. ../../src/Util/Properties.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  4534. ../../src/Math/MathCommon.h ../../src/Math/Vec2.inl.h \
  4535. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  4536. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4537. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4538. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4539. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4540. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4541. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4542. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4543. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4544. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  4545. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Core/Object.h \
  4546. ../../src/Misc/GlException.h ../../src/Renderer/BufferObjects/Vbo.h \
  4547. ../../src/Renderer/BufferObjects/BufferObject.h
  4548. @echo Compiling ../../src/Renderer/BufferObjects/Vao.cpp...
  4549. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/BufferObjects/Vao.cpp -o Vao.o
  4550. BufferObject.o: ../../src/Renderer/BufferObjects/BufferObject.cpp \
  4551. ../../src/Renderer/BufferObjects/BufferObject.h \
  4552. ../../extern/include/GL/glew.h ../../src/Util/Exception.h \
  4553. ../../src/Util/StdTypes.h ../../src/Misc/GlException.h
  4554. @echo Compiling ../../src/Renderer/BufferObjects/BufferObject.cpp...
  4555. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer/BufferObjects/BufferObject.cpp -o BufferObject.o
  4556. Plane.o: ../../src/Collision/Plane.cpp ../../src/Collision/Plane.h \
  4557. ../../src/Collision/CollisionShape.h ../../src/Util/Properties.h \
  4558. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  4559. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  4560. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  4561. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4562. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4563. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4564. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4565. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4566. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4567. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4568. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4569. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h
  4570. @echo Compiling ../../src/Collision/Plane.cpp...
  4571. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Collision/Plane.cpp -o Plane.o
  4572. Sphere.o: ../../src/Collision/Sphere.cpp ../../src/Collision/Sphere.h \
  4573. ../../src/Collision/CollisionShape.h ../../src/Util/Properties.h \
  4574. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  4575. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  4576. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  4577. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4578. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4579. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4580. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4581. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4582. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4583. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4584. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4585. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  4586. ../../src/Collision/Plane.h
  4587. @echo Compiling ../../src/Collision/Sphere.cpp...
  4588. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Collision/Sphere.cpp -o Sphere.o
  4589. ScriptingEngine.o: ../../src/Scripting/ScriptingEngine.cpp \
  4590. /usr/include/python2.6/Python.h /usr/include/python2.6/patchlevel.h \
  4591. /usr/include/python2.6/pyconfig.h /usr/include/python2.6/pymacconfig.h \
  4592. /usr/include/python2.6/pyport.h /usr/include/python2.6/pymath.h \
  4593. /usr/include/python2.6/pymem.h /usr/include/python2.6/object.h \
  4594. /usr/include/python2.6/objimpl.h /usr/include/python2.6/pydebug.h \
  4595. /usr/include/python2.6/unicodeobject.h \
  4596. /usr/include/python2.6/intobject.h /usr/include/python2.6/boolobject.h \
  4597. /usr/include/python2.6/longobject.h /usr/include/python2.6/floatobject.h \
  4598. /usr/include/python2.6/complexobject.h \
  4599. /usr/include/python2.6/rangeobject.h \
  4600. /usr/include/python2.6/stringobject.h \
  4601. /usr/include/python2.6/bufferobject.h \
  4602. /usr/include/python2.6/bytesobject.h \
  4603. /usr/include/python2.6/bytearrayobject.h \
  4604. /usr/include/python2.6/tupleobject.h /usr/include/python2.6/listobject.h \
  4605. /usr/include/python2.6/dictobject.h /usr/include/python2.6/enumobject.h \
  4606. /usr/include/python2.6/setobject.h /usr/include/python2.6/methodobject.h \
  4607. /usr/include/python2.6/moduleobject.h \
  4608. /usr/include/python2.6/funcobject.h /usr/include/python2.6/classobject.h \
  4609. /usr/include/python2.6/fileobject.h /usr/include/python2.6/cobject.h \
  4610. /usr/include/python2.6/traceback.h /usr/include/python2.6/sliceobject.h \
  4611. /usr/include/python2.6/cellobject.h /usr/include/python2.6/iterobject.h \
  4612. /usr/include/python2.6/genobject.h /usr/include/python2.6/descrobject.h \
  4613. /usr/include/python2.6/warnings.h /usr/include/python2.6/weakrefobject.h \
  4614. /usr/include/python2.6/codecs.h /usr/include/python2.6/pyerrors.h \
  4615. /usr/include/python2.6/pystate.h /usr/include/python2.6/pyarena.h \
  4616. /usr/include/python2.6/modsupport.h /usr/include/python2.6/pythonrun.h \
  4617. /usr/include/python2.6/ceval.h /usr/include/python2.6/sysmodule.h \
  4618. /usr/include/python2.6/intrcheck.h /usr/include/python2.6/import.h \
  4619. /usr/include/python2.6/abstract.h /usr/include/python2.6/compile.h \
  4620. /usr/include/python2.6/code.h /usr/include/python2.6/eval.h \
  4621. /usr/include/python2.6/pystrtod.h /usr/include/python2.6/pystrcmp.h \
  4622. /usr/include/python2.6/pyfpe.h ../../src/Scripting/ScriptingEngine.h \
  4623. ../../src/Util/Singleton.h ../../src/Util/Exception.h \
  4624. ../../src/Core/Logger.h
  4625. @echo Compiling ../../src/Scripting/ScriptingEngine.cpp...
  4626. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/ScriptingEngine.cpp -o ScriptingEngine.o
  4627. BoostPythonInterfaces.o: ../../src/Scripting/BoostPythonInterfaces.cpp \
  4628. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  4629. ../../extern/include/SDL/SDL_main.h \
  4630. ../../extern/include/SDL/SDL_stdinc.h \
  4631. ../../extern/include/SDL/SDL_config.h \
  4632. ../../extern/include/SDL/SDL_platform.h \
  4633. ../../extern/include/SDL/begin_code.h \
  4634. ../../extern/include/SDL/close_code.h \
  4635. ../../extern/include/SDL/SDL_atomic.h \
  4636. ../../extern/include/SDL/SDL_audio.h \
  4637. ../../extern/include/SDL/SDL_error.h \
  4638. ../../extern/include/SDL/SDL_endian.h \
  4639. ../../extern/include/SDL/SDL_mutex.h \
  4640. ../../extern/include/SDL/SDL_thread.h \
  4641. ../../extern/include/SDL/SDL_rwops.h \
  4642. ../../extern/include/SDL/SDL_clipboard.h \
  4643. ../../extern/include/SDL/SDL_cpuinfo.h \
  4644. ../../extern/include/SDL/SDL_events.h \
  4645. ../../extern/include/SDL/SDL_video.h \
  4646. ../../extern/include/SDL/SDL_pixels.h \
  4647. ../../extern/include/SDL/SDL_rect.h \
  4648. ../../extern/include/SDL/SDL_surface.h \
  4649. ../../extern/include/SDL/SDL_keyboard.h \
  4650. ../../extern/include/SDL/SDL_keysym.h \
  4651. ../../extern/include/SDL/SDL_scancode.h \
  4652. ../../extern/include/SDL/SDL_mouse.h \
  4653. ../../extern/include/SDL/SDL_joystick.h \
  4654. ../../extern/include/SDL/SDL_quit.h \
  4655. ../../extern/include/SDL/SDL_gesture.h \
  4656. ../../extern/include/SDL/SDL_touch.h \
  4657. ../../extern/include/SDL/SDL_loadso.h \
  4658. ../../extern/include/SDL/SDL_power.h \
  4659. ../../extern/include/SDL/SDL_timer.h \
  4660. ../../extern/include/SDL/SDL_version.h \
  4661. ../../extern/include/SDL/SDL_revision.h \
  4662. ../../extern/include/SDL/SDL_compat.h ../../src/Util/StdTypes.h \
  4663. ../../src/Util/Properties.h ../../src/Util/Exception.h \
  4664. ../../src/Util/Singleton.h
  4665. @echo Compiling ../../src/Scripting/BoostPythonInterfaces.cpp...
  4666. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/BoostPythonInterfaces.cpp -o BoostPythonInterfaces.o
  4667. Vec4.bpi.o: ../../src/Scripting/Math/Vec4.bpi.cpp \
  4668. ../../src/Scripting/ScriptingCommon.h ../../src/Math/Math.h \
  4669. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  4670. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  4671. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  4672. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4673. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4674. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4675. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4676. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4677. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4678. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4679. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4680. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h
  4681. @echo Compiling ../../src/Scripting/Math/Vec4.bpi.cpp...
  4682. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/Math/Vec4.bpi.cpp -o Vec4.bpi.o
  4683. Vec3.bpi.o: ../../src/Scripting/Math/Vec3.bpi.cpp \
  4684. ../../src/Scripting/ScriptingCommon.h ../../src/Math/Math.h \
  4685. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  4686. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  4687. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  4688. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4689. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4690. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4691. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4692. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4693. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4694. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4695. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4696. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h
  4697. @echo Compiling ../../src/Scripting/Math/Vec3.bpi.cpp...
  4698. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/Math/Vec3.bpi.cpp -o Vec3.bpi.o
  4699. Vec2.bpi.o: ../../src/Scripting/Math/Vec2.bpi.cpp \
  4700. ../../src/Scripting/ScriptingCommon.h ../../src/Math/Math.h \
  4701. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  4702. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  4703. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  4704. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4705. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4706. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4707. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4708. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4709. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4710. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4711. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4712. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h
  4713. @echo Compiling ../../src/Scripting/Math/Vec2.bpi.cpp...
  4714. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/Math/Vec2.bpi.cpp -o Vec2.bpi.o
  4715. Logger.bpi.o: ../../src/Scripting/Core/Logger.bpi.cpp \
  4716. ../../src/Scripting/ScriptingCommon.h ../../src/Core/Logger.h \
  4717. ../../src/Util/Singleton.h
  4718. @echo Compiling ../../src/Scripting/Core/Logger.bpi.cpp...
  4719. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/Core/Logger.bpi.cpp -o Logger.bpi.o
  4720. App.bpi.o: ../../src/Scripting/Core/App.bpi.cpp \
  4721. ../../src/Scripting/ScriptingCommon.h ../../src/Core/App.h \
  4722. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  4723. ../../extern/include/SDL/SDL_stdinc.h \
  4724. ../../extern/include/SDL/SDL_config.h \
  4725. ../../extern/include/SDL/SDL_platform.h \
  4726. ../../extern/include/SDL/begin_code.h \
  4727. ../../extern/include/SDL/close_code.h \
  4728. ../../extern/include/SDL/SDL_atomic.h \
  4729. ../../extern/include/SDL/SDL_audio.h \
  4730. ../../extern/include/SDL/SDL_error.h \
  4731. ../../extern/include/SDL/SDL_endian.h \
  4732. ../../extern/include/SDL/SDL_mutex.h \
  4733. ../../extern/include/SDL/SDL_thread.h \
  4734. ../../extern/include/SDL/SDL_rwops.h \
  4735. ../../extern/include/SDL/SDL_clipboard.h \
  4736. ../../extern/include/SDL/SDL_cpuinfo.h \
  4737. ../../extern/include/SDL/SDL_events.h \
  4738. ../../extern/include/SDL/SDL_video.h \
  4739. ../../extern/include/SDL/SDL_pixels.h \
  4740. ../../extern/include/SDL/SDL_rect.h \
  4741. ../../extern/include/SDL/SDL_surface.h \
  4742. ../../extern/include/SDL/SDL_keyboard.h \
  4743. ../../extern/include/SDL/SDL_keysym.h \
  4744. ../../extern/include/SDL/SDL_scancode.h \
  4745. ../../extern/include/SDL/SDL_mouse.h \
  4746. ../../extern/include/SDL/SDL_joystick.h \
  4747. ../../extern/include/SDL/SDL_quit.h \
  4748. ../../extern/include/SDL/SDL_gesture.h \
  4749. ../../extern/include/SDL/SDL_touch.h \
  4750. ../../extern/include/SDL/SDL_loadso.h \
  4751. ../../extern/include/SDL/SDL_power.h \
  4752. ../../extern/include/SDL/SDL_timer.h \
  4753. ../../extern/include/SDL/SDL_version.h \
  4754. ../../extern/include/SDL/SDL_revision.h \
  4755. ../../extern/include/SDL/SDL_compat.h ../../src/Util/StdTypes.h \
  4756. ../../src/Util/Properties.h ../../src/Util/Exception.h \
  4757. ../../src/Util/Singleton.h ../../src/Scene/Scene.h \
  4758. ../../src/Core/Object.h ../../src/Util/Vec.h ../../src/Util/Exception.h \
  4759. ../../src/Misc/skybox.h ../../src/Resources/Texture.h \
  4760. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  4761. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  4762. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4763. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4764. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4765. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4766. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4767. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4768. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4769. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4770. ../../src/Math/Transform.inl.h ../../src/Resources/Core/RsrcPtr.h \
  4771. ../../src/Resources/Core/ResourceManager.h \
  4772. ../../src/Resources/Core/ResourceManager.inl.h \
  4773. ../../src/Resources/Core/RsrcPtr.inl.h \
  4774. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/ShaderProg.h \
  4775. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  4776. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  4777. ../../src/Resources/SProgAttribVar.h ../../src/Physics/Physics.h \
  4778. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4779. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4780. ../../extern/include/bullet/LinearMath/btVector3.h \
  4781. ../../extern/include/bullet/LinearMath/btScalar.h \
  4782. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4783. ../../extern/include/bullet/LinearMath/btScalar.h \
  4784. ../../extern/include/bullet/LinearMath/btTransform.h \
  4785. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4786. ../../extern/include/bullet/LinearMath/btVector3.h \
  4787. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4788. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  4789. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4790. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4791. ../../extern/include/bullet/LinearMath/btTransform.h \
  4792. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4793. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4794. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4795. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4796. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  4797. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  4798. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4799. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  4800. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  4801. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  4802. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4803. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4804. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4805. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  4806. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4807. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  4808. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4809. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4810. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  4811. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4812. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  4813. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  4814. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  4815. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  4816. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  4817. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4818. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  4819. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  4820. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  4821. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4822. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  4823. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  4824. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  4825. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  4826. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  4827. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  4828. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4829. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  4830. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  4831. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  4832. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4833. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  4834. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  4835. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  4836. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4837. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4838. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4839. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  4840. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4841. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4842. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4843. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  4844. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  4845. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  4846. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  4847. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  4848. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  4849. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  4850. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  4851. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4852. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  4853. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  4854. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4855. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  4856. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4857. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  4858. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4859. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  4860. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  4861. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4862. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4863. ../../extern/include/bullet/LinearMath/btTransform.h \
  4864. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  4865. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4866. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  4867. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4868. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4869. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  4870. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4871. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4872. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  4873. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4874. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  4875. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  4876. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4877. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  4878. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4879. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4880. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  4881. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  4882. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4883. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4884. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  4885. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  4886. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  4887. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  4888. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4889. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  4890. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4891. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4892. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  4893. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  4894. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4895. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  4896. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  4897. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  4898. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4899. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  4900. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4901. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  4902. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  4903. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  4904. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4905. ../../src/Physics/BtAndAnkiConvertors.h \
  4906. ../../src/Renderer/PhyDbgDrawer.h \
  4907. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4908. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h \
  4909. ../../src/Renderer/BufferObjects/Fbo.h \
  4910. ../../src/Renderer/BufferObjects/Vbo.h \
  4911. ../../src/Renderer/BufferObjects/BufferObject.h \
  4912. ../../src/Renderer/BufferObjects/Vao.h ../../src/Misc/GlException.h \
  4913. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingPass.h \
  4914. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  4915. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  4916. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  4917. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h \
  4918. ../../src/Renderer/SceneDbgDrawer.h
  4919. @echo Compiling ../../src/Scripting/Core/App.bpi.cpp...
  4920. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/Core/App.bpi.cpp -o App.bpi.o
  4921. Scene.bpi.o: ../../src/Scripting/Scene/Scene.bpi.cpp \
  4922. ../../src/Scripting/ScriptingCommon.h ../../src/Scene/Scene.h \
  4923. ../../src/Core/Object.h ../../src/Util/Vec.h ../../src/Util/Exception.h \
  4924. ../../src/Misc/skybox.h ../../src/Resources/Texture.h \
  4925. ../../src/Util/StdTypes.h ../../src/Util/Exception.h \
  4926. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  4927. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  4928. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4929. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4930. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4931. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4932. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4933. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4934. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4935. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4936. ../../src/Math/Transform.inl.h ../../src/Resources/Core/RsrcPtr.h \
  4937. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  4938. ../../src/Resources/Core/ResourceManager.inl.h \
  4939. ../../src/Resources/Core/RsrcPtr.inl.h \
  4940. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/ShaderProg.h \
  4941. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  4942. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  4943. ../../src/Util/Properties.h ../../src/Resources/SProgAttribVar.h \
  4944. ../../src/Physics/Physics.h \
  4945. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4946. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4947. ../../extern/include/bullet/LinearMath/btVector3.h \
  4948. ../../extern/include/bullet/LinearMath/btScalar.h \
  4949. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4950. ../../extern/include/bullet/LinearMath/btScalar.h \
  4951. ../../extern/include/bullet/LinearMath/btTransform.h \
  4952. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4953. ../../extern/include/bullet/LinearMath/btVector3.h \
  4954. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4955. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  4956. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4957. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4958. ../../extern/include/bullet/LinearMath/btTransform.h \
  4959. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4960. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4961. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4962. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4963. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  4964. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  4965. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4966. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  4967. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  4968. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  4969. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4970. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4971. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4972. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  4973. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4974. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  4975. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4976. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4977. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  4978. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4979. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  4980. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  4981. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  4982. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  4983. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  4984. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4985. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  4986. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  4987. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  4988. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4989. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  4990. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  4991. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  4992. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  4993. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  4994. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  4995. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4996. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  4997. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  4998. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  4999. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  5000. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  5001. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  5002. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  5003. ../../extern/include/bullet/LinearMath/btHashMap.h \
  5004. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  5005. ../../extern/include/bullet/LinearMath/btSerializer.h \
  5006. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  5007. ../../extern/include/bullet/LinearMath/btHashMap.h \
  5008. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  5009. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  5010. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  5011. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  5012. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  5013. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  5014. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  5015. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  5016. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  5017. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  5018. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  5019. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  5020. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  5021. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  5022. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  5023. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  5024. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  5025. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  5026. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  5027. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  5028. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  5029. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  5030. ../../extern/include/bullet/LinearMath/btTransform.h \
  5031. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  5032. ../../extern/include/bullet/LinearMath/btMotionState.h \
  5033. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  5034. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  5035. ../../extern/include/bullet/LinearMath/btSerializer.h \
  5036. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  5037. ../../extern/include/bullet/btBulletCollisionCommon.h \
  5038. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  5039. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  5040. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  5041. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  5042. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  5043. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  5044. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  5045. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  5046. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  5047. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  5048. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  5049. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  5050. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  5051. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  5052. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  5053. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  5054. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  5055. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  5056. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  5057. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  5058. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  5059. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  5060. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  5061. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  5062. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  5063. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  5064. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  5065. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  5066. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  5067. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  5068. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  5069. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  5070. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  5071. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  5072. ../../src/Physics/BtAndAnkiConvertors.h \
  5073. ../../src/Renderer/PhyDbgDrawer.h \
  5074. ../../extern/include/bullet/LinearMath/btIDebugDraw.h
  5075. @echo Compiling ../../src/Scripting/Scene/Scene.bpi.cpp...
  5076. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/Scene/Scene.bpi.cpp -o Scene.bpi.o
  5077. MainRenderer.bpi.o: ../../src/Scripting/Renderer/MainRenderer.bpi.cpp \
  5078. ../../src/Scripting/ScriptingCommon.h ../../src/Renderer/MainRenderer.h \
  5079. ../../src/Renderer/Renderer.h ../../src/Math/Math.h \
  5080. ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  5081. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  5082. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  5083. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  5084. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  5085. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  5086. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  5087. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  5088. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  5089. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  5090. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  5091. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  5092. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  5093. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  5094. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  5095. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  5096. ../../src/Resources/SProgAttribVar.h ../../src/Util/Vec.h \
  5097. ../../src/Util/Exception.h ../../src/Renderer/BufferObjects/Vbo.h \
  5098. ../../src/Renderer/BufferObjects/BufferObject.h \
  5099. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  5100. ../../src/Misc/GlException.h ../../src/Resources/Core/RsrcPtr.h \
  5101. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  5102. ../../src/Resources/Core/ResourceManager.inl.h \
  5103. ../../src/Resources/Core/RsrcPtr.inl.h \
  5104. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Ms.h \
  5105. ../../src/Renderer/RenderingPass.h ../../src/Renderer/Ez.h \
  5106. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  5107. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  5108. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  5109. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h \
  5110. ../../src/Renderer/Dbg.h
  5111. @echo Compiling ../../src/Scripting/Renderer/MainRenderer.bpi.cpp...
  5112. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/Renderer/MainRenderer.bpi.cpp -o MainRenderer.bpi.o
  5113. Dbg.bpi.o: ../../src/Scripting/Renderer/Dbg.bpi.cpp \
  5114. ../../src/Scripting/ScriptingCommon.h ../../src/Renderer/Dbg.h \
  5115. ../../src/Renderer/RenderingPass.h \
  5116. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  5117. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  5118. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  5119. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  5120. ../../src/Util/Properties.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  5121. ../../src/Math/MathCommon.h ../../src/Math/Vec2.inl.h \
  5122. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  5123. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  5124. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  5125. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  5126. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  5127. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  5128. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  5129. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  5130. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  5131. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  5132. ../../src/Util/Vec.h ../../src/Util/Exception.h \
  5133. ../../src/Resources/Core/RsrcPtr.h \
  5134. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  5135. ../../src/Resources/Core/ResourceManager.inl.h \
  5136. ../../src/Resources/Core/RsrcPtr.inl.h \
  5137. ../../src/Resources/Core/RsrcPtr.h \
  5138. ../../src/Renderer/BufferObjects/Vbo.h \
  5139. ../../src/Renderer/BufferObjects/BufferObject.h \
  5140. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  5141. ../../src/Misc/GlException.h ../../src/Renderer/SceneDbgDrawer.h
  5142. @echo Compiling ../../src/Scripting/Renderer/Dbg.bpi.cpp...
  5143. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/Renderer/Dbg.bpi.cpp -o Dbg.bpi.o
  5144. Hdr.bpi.o: ../../src/Scripting/Renderer/Hdr.bpi.cpp \
  5145. ../../src/Scripting/ScriptingCommon.h ../../src/Renderer/Hdr.h \
  5146. ../../src/Renderer/RenderingPass.h \
  5147. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  5148. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  5149. ../../src/Resources/Texture.h ../../src/Resources/Core/RsrcPtr.h \
  5150. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  5151. ../../src/Resources/Core/ResourceManager.inl.h \
  5152. ../../src/Resources/Core/RsrcPtr.inl.h \
  5153. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Properties.h
  5154. @echo Compiling ../../src/Scripting/Renderer/Hdr.bpi.cpp...
  5155. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/Renderer/Hdr.bpi.cpp -o Hdr.bpi.o
  5156. Pps.bpi.o: ../../src/Scripting/Renderer/Pps.bpi.cpp \
  5157. ../../src/Scripting/ScriptingCommon.h ../../src/Renderer/Pps.h \
  5158. ../../src/Renderer/RenderingPass.h \
  5159. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  5160. ../../src/Util/Exception.h ../../src/Util/StdTypes.h \
  5161. ../../src/Resources/Texture.h ../../src/Resources/Core/RsrcPtr.h \
  5162. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  5163. ../../src/Resources/Core/ResourceManager.inl.h \
  5164. ../../src/Resources/Core/RsrcPtr.inl.h \
  5165. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Hdr.h \
  5166. ../../src/Util/Properties.h ../../src/Renderer/Ssao.h \
  5167. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  5168. ../../src/Resources/SProgUniVar.h ../../src/Resources/SProgVar.h \
  5169. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  5170. ../../src/Math/Vec2.inl.h ../../src/Math/MathCommon.inl.h \
  5171. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  5172. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  5173. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  5174. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  5175. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  5176. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  5177. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  5178. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  5179. ../../src/Math/Transform.inl.h ../../src/Resources/SProgAttribVar.h \
  5180. ../../src/Util/Vec.h ../../src/Util/Exception.h ../../src/Renderer/Hdr.h
  5181. @echo Compiling ../../src/Scripting/Renderer/Pps.bpi.cpp...
  5182. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/Renderer/Pps.bpi.cpp -o Pps.bpi.o
  5183. Renderer.bpi.o: ../../src/Scripting/Renderer/Renderer.bpi.cpp \
  5184. ../../src/Scripting/ScriptingCommon.h ../../src/Renderer/Renderer.h \
  5185. ../../src/Math/Math.h ../../src/Math/Vec2.h ../../src/Math/MathCommon.h \
  5186. ../../src/Util/StdTypes.h ../../src/Math/Vec2.inl.h \
  5187. ../../src/Math/MathCommon.inl.h ../../src/Math/Vec3.h \
  5188. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  5189. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  5190. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  5191. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  5192. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  5193. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  5194. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  5195. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  5196. ../../src/Math/Transform.inl.h ../../src/Util/Exception.h \
  5197. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  5198. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  5199. ../../src/Util/CharPtrHashMap.h ../../src/Resources/SProgUniVar.h \
  5200. ../../src/Resources/SProgVar.h ../../src/Util/Properties.h \
  5201. ../../src/Resources/SProgAttribVar.h ../../src/Util/Vec.h \
  5202. ../../src/Util/Exception.h ../../src/Renderer/BufferObjects/Vbo.h \
  5203. ../../src/Renderer/BufferObjects/BufferObject.h \
  5204. ../../src/Renderer/BufferObjects/Vao.h ../../src/Core/Object.h \
  5205. ../../src/Misc/GlException.h ../../src/Resources/Core/RsrcPtr.h \
  5206. ../../src/Resources/Core/ResourceManager.h ../../src/Util/Singleton.h \
  5207. ../../src/Resources/Core/ResourceManager.inl.h \
  5208. ../../src/Resources/Core/RsrcPtr.inl.h \
  5209. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Ms.h \
  5210. ../../src/Renderer/RenderingPass.h ../../src/Renderer/Ez.h \
  5211. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  5212. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  5213. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  5214. ../../src/Renderer/Dbg.h ../../src/Renderer/SceneDbgDrawer.h
  5215. @echo Compiling ../../src/Scripting/Renderer/Renderer.bpi.cpp...
  5216. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting/Renderer/Renderer.bpi.cpp -o Renderer.bpi.o
  5217. clean:
  5218. rm -f *.o
  5219. rm -f *.gch
  5220. rm -f *~
  5221. rm -f $(EXECUTABLE)
  5222. regen:
  5223. @echo Re-generating makefile...
  5224. ../../gbs/gbs.py