Makefile 317 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986
  1. # Generated by gBuildSystem, command: ../../../godlike-projects/gBuildSystem/gbs.py
  2. CXX = g++
  3. CFLAGS = -DDEBUG_ENABLED=0 -DPLATFORM_LINUX -DREVISION=\"`svnversion -c ../..`\" -c -pedantic-errors -pedantic -ansi -Wall -Wextra -W -Wno-long-long -pipe -s -msse4 -O3 -mtune=core2 -ffast-math -fsingle-precision-constant
  4. PHFLAGS =
  5. LFLAGS = -rdynamic -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/Math/ -I../../src/Util/Tokenizer/ -I../../src/Misc/ -I../../src/ -I../../src/Renderer/ -I../../src/Scene/ -I../../src/Ui/ -I../../src/Resources/ -I../../src/Util/ -I../../src/Scene/Controllers/ -I../../src/Physics/ -I../../src/Renderer/BufferObjects/ -I../../src/Resources/Helpers/ -I../../src/Resources/Core/ -I../../src/Core/ -I../../src/Scripting/ -I../../src/Scripting/Math -I../../src/Scripting/Util -I../../src/Scripting/Core -I../../src/Scripting/Scene -I../../src/Scripting/Renderer -I../../extern/include -I../../extern/include/bullet -I/usr/include/python2.6
  8. SOURCES = ../../src/Util/Tokenizer//Scanner.cpp ../../src/Misc//skybox.cpp ../../src/Misc//memory.cpp ../../src/Misc//collision.cpp ../../src/Misc//map.cpp ../../src/Misc//TestHeader.cpp ../../src//Main.cpp ../../src/Renderer//Smo.cpp ../../src/Renderer//Ez.cpp ../../src/Renderer//Ms.cpp ../../src/Renderer//Sm.cpp ../../src/Renderer//Pps.cpp ../../src/Renderer//Ssao.cpp ../../src/Renderer//Renderer.cpp ../../src/Renderer//Is.cpp ../../src/Renderer//MainRenderer.cpp ../../src/Renderer//Dbg.cpp ../../src/Renderer//Hdr.cpp ../../src/Renderer//Bs.cpp ../../src/Scene//MeshNode.cpp ../../src/Scene//SceneNode.cpp ../../src/Scene//SkelNode.cpp ../../src/Scene//Light.cpp ../../src/Scene//SkelModelNode.cpp ../../src/Scene//Camera.cpp ../../src/Scene//ParticleEmitter.cpp ../../src/Scene//Scene.cpp ../../src/Ui//Ui.cpp ../../src/Resources//ShaderProg.cpp ../../src/Resources//Material.cpp ../../src/Resources//Texture.cpp ../../src/Resources//SkelAnim.cpp ../../src/Resources//Extension.cpp ../../src/Resources//Skeleton.cpp ../../src/Resources//Script.cpp ../../src/Resources//LightProps.cpp ../../src/Resources//Mesh.cpp ../../src/Resources//ParticleEmitterProps.cpp ../../src/Util//Input.cpp ../../src/Util//Util.cpp ../../src/Scene/Controllers//Controller.cpp ../../src/Scene/Controllers//SkelAnimCtrl.cpp ../../src/Physics//Physics.cpp ../../src/Physics//RigidBody.cpp ../../src/Physics//PhyCharacter.cpp ../../src/Physics//DebugDrawer.cpp ../../src/Resources/Helpers//Image.cpp ../../src/Resources/Helpers//ShaderPrePreprocessor.cpp ../../src/Resources/Core//RsrcPtr.cpp ../../src/Resources/Core//RsrcContainers.cpp ../../src/Core//App.cpp ../../src/Core//Common.cpp ../../src/Core//StdinListener.cpp ../../src/Scripting//ScriptingEngine.cpp ../../src/Scripting//BoostPythonInterfaces.cpp
  9. OBJECTS = Scanner.o skybox.o memory.o collision.o map.o TestHeader.o Main.o Smo.o Ez.o Ms.o Sm.o Pps.o Ssao.o Renderer.o Is.o MainRenderer.o Dbg.o Hdr.o Bs.o MeshNode.o SceneNode.o SkelNode.o Light.o SkelModelNode.o Camera.o ParticleEmitter.o Scene.o Ui.o ShaderProg.o Material.o Texture.o SkelAnim.o Extension.o Skeleton.o Script.o LightProps.o Mesh.o ParticleEmitterProps.o Input.o Util.o Controller.o SkelAnimCtrl.o Physics.o RigidBody.o PhyCharacter.o DebugDrawer.o Image.o ShaderPrePreprocessor.o RsrcPtr.o RsrcContainers.o App.o Common.o StdinListener.o ScriptingEngine.o BoostPythonInterfaces.o
  10. PRECOMPILED_HEADERS =
  11. all: $(PRECOMPILED_HEADERS) $(SOURCES) $(EXECUTABLE)
  12. $(EXECUTABLE): $(OBJECTS)
  13. @echo Linking...
  14. @$(CXX) $(OBJECTS) $(LFLAGS) -o $(EXECUTABLE)
  15. @echo All Done!
  16. Scanner.o: ../../src/Util/Tokenizer//Scanner.cpp \
  17. ../../src/Util/Tokenizer//Scanner.h ../../src/Core/Common.h
  18. @echo Compiling ../../src/Util/Tokenizer//Scanner.cpp...
  19. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util/Tokenizer//Scanner.cpp -o Scanner.o
  20. skybox.o: ../../src/Misc//skybox.cpp ../../src/Misc//skybox.h \
  21. ../../src/Core/Common.h ../../src/Resources/Texture.h \
  22. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  23. ../../src/Util/Vec.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  24. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  25. ../../src/Math/MathDfltHeader.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/Resources/Core/RsrcPtr.h \
  35. ../../src/Resources/ShaderProg.h ../../extern/include/GL/glew.h \
  36. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/Renderer.h \
  37. ../../src/Renderer/BufferObjects/Fbo.h \
  38. ../../src/Renderer/BufferObjects/Vbo.h \
  39. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/Object.h \
  40. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingStage.h \
  41. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  42. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  43. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  44. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h \
  45. ../../src/Scene/Camera.h ../../src/Misc/collision.h \
  46. ../../src/Scene/SceneNode.h ../../src/Util/Vec.h ../../src/Scene/Scene.h \
  47. ../../src/Misc/skybox.h ../../src/Physics/Physics.h \
  48. ../../extern/include/bullet/btBulletCollisionCommon.h \
  49. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  50. ../../extern/include/bullet/LinearMath/btVector3.h \
  51. ../../extern/include/bullet/LinearMath/btScalar.h \
  52. ../../extern/include/bullet/LinearMath/btMinMax.h \
  53. ../../extern/include/bullet/LinearMath/btScalar.h \
  54. ../../extern/include/bullet/LinearMath/btTransform.h \
  55. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  56. ../../extern/include/bullet/LinearMath/btVector3.h \
  57. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  58. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  59. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  60. ../../extern/include/bullet/LinearMath/btMotionState.h \
  61. ../../extern/include/bullet/LinearMath/btTransform.h \
  62. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  63. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  64. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  65. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  66. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  67. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  68. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  69. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  70. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  71. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  72. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  73. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  74. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  75. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  76. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  77. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  78. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  79. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  80. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  81. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  82. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  83. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  84. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  85. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  86. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  87. ../../extern/include/bullet/LinearMath/btMinMax.h \
  88. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  89. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  90. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  91. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  92. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  93. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  94. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  95. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  96. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  97. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  98. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  99. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  100. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  101. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  102. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  103. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  104. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  105. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  106. ../../extern/include/bullet/LinearMath/btHashMap.h \
  107. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  108. ../../extern/include/bullet/LinearMath/btSerializer.h \
  109. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  110. ../../extern/include/bullet/LinearMath/btHashMap.h \
  111. ../../src/Misc/memory.h \
  112. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  113. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  114. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  115. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  116. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  117. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  118. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  119. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  120. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  121. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  122. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  123. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  124. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  125. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  126. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  127. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  128. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  129. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  130. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  131. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  132. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  133. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  134. ../../extern/include/bullet/LinearMath/btTransform.h \
  135. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  136. ../../extern/include/bullet/LinearMath/btMotionState.h \
  137. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  138. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  139. ../../extern/include/bullet/LinearMath/btSerializer.h \
  140. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  141. ../../extern/include/bullet/btBulletCollisionCommon.h \
  142. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  143. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  144. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  145. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  146. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  147. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  148. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  149. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  150. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  151. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  152. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  153. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  154. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  155. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  156. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  157. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  158. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  159. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  160. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  161. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  162. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  163. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  164. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  165. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  166. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  167. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  168. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  169. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  170. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  171. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  172. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  173. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  174. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  175. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  176. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  177. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  178. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  179. ../../extern/include/SDL/SDL_main.h \
  180. ../../extern/include/SDL/SDL_stdinc.h \
  181. ../../extern/include/SDL/SDL_config.h \
  182. ../../extern/include/SDL/SDL_platform.h \
  183. ../../extern/include/SDL/begin_code.h \
  184. ../../extern/include/SDL/close_code.h \
  185. ../../extern/include/SDL/SDL_atomic.h \
  186. ../../extern/include/SDL/SDL_audio.h \
  187. ../../extern/include/SDL/SDL_error.h \
  188. ../../extern/include/SDL/SDL_endian.h \
  189. ../../extern/include/SDL/SDL_mutex.h \
  190. ../../extern/include/SDL/SDL_thread.h \
  191. ../../extern/include/SDL/SDL_rwops.h \
  192. ../../extern/include/SDL/SDL_clipboard.h \
  193. ../../extern/include/SDL/SDL_cpuinfo.h \
  194. ../../extern/include/SDL/SDL_events.h \
  195. ../../extern/include/SDL/SDL_video.h \
  196. ../../extern/include/SDL/SDL_pixels.h \
  197. ../../extern/include/SDL/SDL_rect.h \
  198. ../../extern/include/SDL/SDL_surface.h \
  199. ../../extern/include/SDL/SDL_keyboard.h \
  200. ../../extern/include/SDL/SDL_keysym.h \
  201. ../../extern/include/SDL/SDL_scancode.h \
  202. ../../extern/include/SDL/SDL_mouse.h \
  203. ../../extern/include/SDL/SDL_joystick.h \
  204. ../../extern/include/SDL/SDL_quit.h \
  205. ../../extern/include/SDL/SDL_loadso.h \
  206. ../../extern/include/SDL/SDL_power.h \
  207. ../../extern/include/SDL/SDL_timer.h \
  208. ../../extern/include/SDL/SDL_version.h \
  209. ../../extern/include/SDL/SDL_revision.h \
  210. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  211. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h
  212. @echo Compiling ../../src/Misc//skybox.cpp...
  213. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc//skybox.cpp -o skybox.o
  214. memory.o: ../../src/Misc//memory.cpp ../../src/Misc//memory.h \
  215. ../../src/Core/Common.h ../../extern/include/SDL/SDL.h \
  216. ../../extern/include/SDL/SDL_main.h \
  217. ../../extern/include/SDL/SDL_stdinc.h \
  218. ../../extern/include/SDL/SDL_config.h \
  219. ../../extern/include/SDL/SDL_platform.h \
  220. ../../extern/include/SDL/begin_code.h \
  221. ../../extern/include/SDL/close_code.h \
  222. ../../extern/include/SDL/SDL_atomic.h \
  223. ../../extern/include/SDL/SDL_audio.h \
  224. ../../extern/include/SDL/SDL_error.h \
  225. ../../extern/include/SDL/SDL_endian.h \
  226. ../../extern/include/SDL/SDL_mutex.h \
  227. ../../extern/include/SDL/SDL_thread.h \
  228. ../../extern/include/SDL/SDL_rwops.h \
  229. ../../extern/include/SDL/SDL_clipboard.h \
  230. ../../extern/include/SDL/SDL_cpuinfo.h \
  231. ../../extern/include/SDL/SDL_events.h \
  232. ../../extern/include/SDL/SDL_video.h \
  233. ../../extern/include/SDL/SDL_pixels.h \
  234. ../../extern/include/SDL/SDL_rect.h \
  235. ../../extern/include/SDL/SDL_surface.h \
  236. ../../extern/include/SDL/SDL_keyboard.h \
  237. ../../extern/include/SDL/SDL_keysym.h \
  238. ../../extern/include/SDL/SDL_scancode.h \
  239. ../../extern/include/SDL/SDL_mouse.h \
  240. ../../extern/include/SDL/SDL_joystick.h \
  241. ../../extern/include/SDL/SDL_quit.h \
  242. ../../extern/include/SDL/SDL_loadso.h \
  243. ../../extern/include/SDL/SDL_power.h \
  244. ../../extern/include/SDL/SDL_timer.h \
  245. ../../extern/include/SDL/SDL_version.h \
  246. ../../extern/include/SDL/SDL_revision.h \
  247. ../../extern/include/SDL/SDL_compat.h
  248. @echo Compiling ../../src/Misc//memory.cpp...
  249. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc//memory.cpp -o memory.o
  250. collision.o: ../../src/Misc//collision.cpp ../../src/Misc//collision.h \
  251. ../../src/Core/Common.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  252. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  253. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  254. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  255. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  256. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  257. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  258. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  259. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  260. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  261. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  262. ../../src/Math/Transform.inl.h ../../src/Renderer/MainRenderer.h \
  263. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  264. ../../extern/include/GL/glew.h ../../src/Resources/Texture.h \
  265. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  266. ../../src/Util/Vec.h ../../src/Resources/ShaderProg.h \
  267. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  268. ../../src/Renderer/BufferObjects/BufferObject.h \
  269. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  270. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingStage.h \
  271. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  272. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  273. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  274. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h ../../src/Core/App.h \
  275. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  276. ../../extern/include/SDL/SDL_stdinc.h \
  277. ../../extern/include/SDL/SDL_config.h \
  278. ../../extern/include/SDL/SDL_platform.h \
  279. ../../extern/include/SDL/begin_code.h \
  280. ../../extern/include/SDL/close_code.h \
  281. ../../extern/include/SDL/SDL_atomic.h \
  282. ../../extern/include/SDL/SDL_audio.h \
  283. ../../extern/include/SDL/SDL_error.h \
  284. ../../extern/include/SDL/SDL_endian.h \
  285. ../../extern/include/SDL/SDL_mutex.h \
  286. ../../extern/include/SDL/SDL_thread.h \
  287. ../../extern/include/SDL/SDL_rwops.h \
  288. ../../extern/include/SDL/SDL_clipboard.h \
  289. ../../extern/include/SDL/SDL_cpuinfo.h \
  290. ../../extern/include/SDL/SDL_events.h \
  291. ../../extern/include/SDL/SDL_video.h \
  292. ../../extern/include/SDL/SDL_pixels.h \
  293. ../../extern/include/SDL/SDL_rect.h \
  294. ../../extern/include/SDL/SDL_surface.h \
  295. ../../extern/include/SDL/SDL_keyboard.h \
  296. ../../extern/include/SDL/SDL_keysym.h \
  297. ../../extern/include/SDL/SDL_scancode.h \
  298. ../../extern/include/SDL/SDL_mouse.h \
  299. ../../extern/include/SDL/SDL_joystick.h \
  300. ../../extern/include/SDL/SDL_quit.h \
  301. ../../extern/include/SDL/SDL_loadso.h \
  302. ../../extern/include/SDL/SDL_power.h \
  303. ../../extern/include/SDL/SDL_timer.h \
  304. ../../extern/include/SDL/SDL_version.h \
  305. ../../extern/include/SDL/SDL_revision.h \
  306. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h
  307. @echo Compiling ../../src/Misc//collision.cpp...
  308. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc//collision.cpp -o collision.o
  309. map.o: ../../src/Misc//map.cpp
  310. @echo Compiling ../../src/Misc//map.cpp...
  311. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc//map.cpp -o map.o
  312. TestHeader.o: ../../src/Misc//TestHeader.cpp \
  313. ../../src/Physics/RigidBody.h \
  314. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  315. ../../extern/include/bullet/btBulletCollisionCommon.h \
  316. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  317. ../../extern/include/bullet/LinearMath/btVector3.h \
  318. ../../extern/include/bullet/LinearMath/btScalar.h \
  319. ../../extern/include/bullet/LinearMath/btMinMax.h \
  320. ../../extern/include/bullet/LinearMath/btScalar.h \
  321. ../../extern/include/bullet/LinearMath/btTransform.h \
  322. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  323. ../../extern/include/bullet/LinearMath/btVector3.h \
  324. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  325. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  326. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  327. ../../extern/include/bullet/LinearMath/btMotionState.h \
  328. ../../extern/include/bullet/LinearMath/btTransform.h \
  329. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  330. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  331. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  332. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  333. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  334. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  335. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  336. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  337. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  338. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  339. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  340. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  341. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  342. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  343. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  344. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  345. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  346. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  347. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  348. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  349. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  350. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  351. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  352. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  353. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  354. ../../extern/include/bullet/LinearMath/btMinMax.h \
  355. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  356. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  357. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  358. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  359. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  360. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  361. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  362. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  363. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  364. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  365. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  366. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  367. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  368. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  369. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  370. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  371. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  372. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  373. ../../extern/include/bullet/LinearMath/btHashMap.h \
  374. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  375. ../../extern/include/bullet/LinearMath/btSerializer.h \
  376. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  377. ../../extern/include/bullet/LinearMath/btHashMap.h \
  378. ../../src/Misc/memory.h ../../src/Core/Common.h \
  379. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  380. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  381. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  382. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  383. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  384. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  385. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  386. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  387. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  388. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  389. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  390. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  391. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  392. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  393. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  394. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  395. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  396. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  397. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  398. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  399. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  400. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  401. ../../extern/include/bullet/LinearMath/btTransform.h \
  402. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  403. ../../extern/include/bullet/LinearMath/btMotionState.h \
  404. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  405. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  406. ../../extern/include/bullet/LinearMath/btSerializer.h \
  407. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  408. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  409. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  410. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  411. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  412. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  413. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  414. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  415. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  416. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  417. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  418. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  419. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  420. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  421. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  422. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  423. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  424. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  425. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  426. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  427. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  428. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  429. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  430. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  431. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  432. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  433. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  434. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  435. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  436. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  437. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  438. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  439. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  440. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  441. ../../extern/include/bullet/btBulletCollisionCommon.h \
  442. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  443. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  444. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  445. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  446. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  447. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  448. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  449. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  450. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  451. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  452. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  453. ../../src/Math/Transform.inl.h ../../src/Util/Object.h \
  454. ../../src/Util/Vec.h
  455. @echo Compiling ../../src/Misc//TestHeader.cpp...
  456. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Misc//TestHeader.cpp -o TestHeader.o
  457. Main.o: ../../src//Main.cpp ../../src/Core/Common.h \
  458. ../../src/Util/Input.h ../../extern/include/SDL/SDL_scancode.h \
  459. ../../extern/include/SDL/SDL_stdinc.h \
  460. ../../extern/include/SDL/SDL_config.h \
  461. ../../extern/include/SDL/SDL_platform.h \
  462. ../../extern/include/SDL/begin_code.h \
  463. ../../extern/include/SDL/close_code.h ../../src/Util/Vec.h \
  464. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  465. ../../extern/include/SDL/SDL_main.h \
  466. ../../extern/include/SDL/SDL_atomic.h \
  467. ../../extern/include/SDL/SDL_audio.h \
  468. ../../extern/include/SDL/SDL_error.h \
  469. ../../extern/include/SDL/SDL_endian.h \
  470. ../../extern/include/SDL/SDL_mutex.h \
  471. ../../extern/include/SDL/SDL_thread.h \
  472. ../../extern/include/SDL/SDL_rwops.h \
  473. ../../extern/include/SDL/SDL_clipboard.h \
  474. ../../extern/include/SDL/SDL_cpuinfo.h \
  475. ../../extern/include/SDL/SDL_events.h \
  476. ../../extern/include/SDL/SDL_video.h \
  477. ../../extern/include/SDL/SDL_pixels.h \
  478. ../../extern/include/SDL/SDL_rect.h \
  479. ../../extern/include/SDL/SDL_surface.h \
  480. ../../extern/include/SDL/SDL_keyboard.h \
  481. ../../extern/include/SDL/SDL_keysym.h \
  482. ../../extern/include/SDL/SDL_scancode.h \
  483. ../../extern/include/SDL/SDL_mouse.h \
  484. ../../extern/include/SDL/SDL_joystick.h \
  485. ../../extern/include/SDL/SDL_quit.h \
  486. ../../extern/include/SDL/SDL_loadso.h \
  487. ../../extern/include/SDL/SDL_power.h \
  488. ../../extern/include/SDL/SDL_timer.h \
  489. ../../extern/include/SDL/SDL_version.h \
  490. ../../extern/include/SDL/SDL_revision.h \
  491. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  492. ../../src/Util/Object.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  493. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  494. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  495. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  496. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  497. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  498. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  499. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  500. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  501. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  502. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  503. ../../src/Math/Transform.inl.h ../../src/Scene/Camera.h \
  504. ../../src/Misc/collision.h ../../src/Scene/SceneNode.h \
  505. ../../src/Util/Vec.h ../../src/Renderer/Renderer.h \
  506. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  507. ../../src/Resources/Texture.h ../../src/Resources/Core/Resource.h \
  508. ../../src/Util/Util.h ../../src/Resources/ShaderProg.h \
  509. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  510. ../../src/Renderer/BufferObjects/BufferObject.h \
  511. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Ms.h \
  512. ../../src/Renderer/RenderingStage.h ../../src/Renderer/Ez.h \
  513. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  514. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  515. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  516. ../../src/Renderer/Dbg.h ../../src/Ui/Ui.h ../../src/Resources/Mesh.h \
  517. ../../src/Scene/Light.h ../../src/Scene/Camera.h \
  518. ../../src/Resources/LightProps.h ../../src/Resources/Texture.h \
  519. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h \
  520. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  521. ../../src/Physics/Physics.h \
  522. ../../extern/include/bullet/btBulletCollisionCommon.h \
  523. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  524. ../../extern/include/bullet/LinearMath/btVector3.h \
  525. ../../extern/include/bullet/LinearMath/btScalar.h \
  526. ../../extern/include/bullet/LinearMath/btMinMax.h \
  527. ../../extern/include/bullet/LinearMath/btScalar.h \
  528. ../../extern/include/bullet/LinearMath/btTransform.h \
  529. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  530. ../../extern/include/bullet/LinearMath/btVector3.h \
  531. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  532. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  533. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  534. ../../extern/include/bullet/LinearMath/btMotionState.h \
  535. ../../extern/include/bullet/LinearMath/btTransform.h \
  536. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  537. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  538. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  539. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  540. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  541. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  542. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  543. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  544. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  545. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  546. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  547. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  548. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  549. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  550. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  551. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  552. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  553. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  554. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  555. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  556. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  557. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  558. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  559. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  560. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  561. ../../extern/include/bullet/LinearMath/btMinMax.h \
  562. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  563. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  564. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  565. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  566. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  567. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  568. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  569. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  570. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  571. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  572. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  573. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  574. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  575. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  576. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  577. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  578. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  579. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  580. ../../extern/include/bullet/LinearMath/btHashMap.h \
  581. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  582. ../../extern/include/bullet/LinearMath/btSerializer.h \
  583. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  584. ../../extern/include/bullet/LinearMath/btHashMap.h \
  585. ../../src/Misc/memory.h \
  586. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  587. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  588. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  589. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  590. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  591. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  592. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  593. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  594. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  595. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  596. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  597. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  598. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  599. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  600. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  601. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  602. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  603. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  604. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  605. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  606. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  607. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  608. ../../extern/include/bullet/LinearMath/btTransform.h \
  609. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  610. ../../extern/include/bullet/LinearMath/btMotionState.h \
  611. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  612. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  613. ../../extern/include/bullet/LinearMath/btSerializer.h \
  614. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  615. ../../extern/include/bullet/btBulletCollisionCommon.h \
  616. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  617. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  618. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  619. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  620. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  621. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  622. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  623. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  624. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  625. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  626. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  627. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  628. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  629. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  630. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  631. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  632. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  633. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  634. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  635. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  636. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  637. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  638. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  639. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  640. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  641. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  642. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  643. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  644. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  645. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  646. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  647. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  648. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  649. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  650. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  651. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  652. ../../src/Util/Tokenizer/Scanner.h ../../src/Misc/map.h \
  653. ../../src/Scene/MeshNode.h \
  654. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h \
  655. ../../src/Scene/Controllers/Controller.h ../../src/Scene/SkelModelNode.h \
  656. ../../src/Scene/MeshNode.h ../../src/Resources/SkelAnim.h \
  657. ../../src/Scene/Controllers/SkelAnimCtrl.h ../../src/Scene/SkelNode.h \
  658. ../../src/Resources/Skeleton.h ../../src/Util/Tokenizer/Parser.h \
  659. ../../src/Util/Tokenizer/Scanner.h ../../src/Scene/ParticleEmitter.h \
  660. ../../src/Scene/GhostNode.h ../../src/Resources/ParticleEmitterProps.h \
  661. ../../src/Physics/PhyCharacter.h ../../src/Physics/Physics.h \
  662. ../../src/Renderer/RendererInitializer.h \
  663. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h \
  664. ../../src/Physics/DebugDrawer.h ../../src/Physics/RigidBody.h \
  665. ../../src/Scripting/ScriptingEngine.h ../../src/Core/StdinListener.h
  666. @echo Compiling ../../src//Main.cpp...
  667. @$(CXX) $(INCPATH) $(CFLAGS) ../../src//Main.cpp -o Main.o
  668. Smo.o: ../../src/Renderer//Smo.cpp ../../src/Renderer//Smo.h \
  669. ../../src/Core/Common.h ../../src/Renderer//RenderingStage.h \
  670. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  671. ../../src/Renderer/BufferObjects/Vbo.h \
  672. ../../src/Renderer/BufferObjects/BufferObject.h \
  673. ../../src/Resources/ShaderProg.h ../../src/Resources/Core/Resource.h \
  674. ../../src/Util/Util.h ../../src/Util/Vec.h ../../src/Math/Math.h \
  675. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  676. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  677. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  678. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  679. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  680. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  681. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  682. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  683. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  684. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  685. ../../src/Math/Transform.inl.h ../../src/Util/CharPtrHashMap.h \
  686. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer//Renderer.h \
  687. ../../src/Resources/Texture.h ../../src/Util/Object.h \
  688. ../../src/Renderer//Ms.h ../../src/Renderer//Ez.h \
  689. ../../src/Renderer//Is.h ../../src/Renderer//Sm.h \
  690. ../../src/Renderer//Pps.h ../../src/Renderer//Hdr.h \
  691. ../../src/Renderer//Ssao.h ../../src/Renderer//Bs.h \
  692. ../../src/Renderer//Dbg.h ../../src/Scene/Light.h \
  693. ../../src/Scene/SceneNode.h ../../src/Util/Vec.h \
  694. ../../src/Scene/Camera.h ../../src/Misc/collision.h \
  695. ../../src/Resources/LightProps.h ../../src/Resources/Texture.h \
  696. ../../src/Scene/Camera.h
  697. @echo Compiling ../../src/Renderer//Smo.cpp...
  698. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Smo.cpp -o Smo.o
  699. Ez.o: ../../src/Renderer//Ez.cpp ../../src/Renderer//Ez.h \
  700. ../../src/Core/Common.h ../../src/Renderer//RenderingStage.h \
  701. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  702. ../../src/Renderer//Renderer.h ../../src/Math/Math.h \
  703. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  704. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  705. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  706. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  707. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  708. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  709. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  710. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  711. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  712. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  713. ../../src/Math/Transform.inl.h ../../src/Resources/Texture.h \
  714. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  715. ../../src/Util/Vec.h ../../src/Resources/ShaderProg.h \
  716. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  717. ../../src/Renderer/BufferObjects/BufferObject.h \
  718. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  719. ../../src/Renderer//Ms.h ../../src/Renderer//Is.h \
  720. ../../src/Renderer//Sm.h ../../src/Renderer//Smo.h \
  721. ../../src/Renderer//Pps.h ../../src/Renderer//Hdr.h \
  722. ../../src/Renderer//Ssao.h ../../src/Renderer//Bs.h \
  723. ../../src/Renderer//Dbg.h ../../src/Core/App.h \
  724. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  725. ../../extern/include/SDL/SDL_stdinc.h \
  726. ../../extern/include/SDL/SDL_config.h \
  727. ../../extern/include/SDL/SDL_platform.h \
  728. ../../extern/include/SDL/begin_code.h \
  729. ../../extern/include/SDL/close_code.h \
  730. ../../extern/include/SDL/SDL_atomic.h \
  731. ../../extern/include/SDL/SDL_audio.h \
  732. ../../extern/include/SDL/SDL_error.h \
  733. ../../extern/include/SDL/SDL_endian.h \
  734. ../../extern/include/SDL/SDL_mutex.h \
  735. ../../extern/include/SDL/SDL_thread.h \
  736. ../../extern/include/SDL/SDL_rwops.h \
  737. ../../extern/include/SDL/SDL_clipboard.h \
  738. ../../extern/include/SDL/SDL_cpuinfo.h \
  739. ../../extern/include/SDL/SDL_events.h \
  740. ../../extern/include/SDL/SDL_video.h \
  741. ../../extern/include/SDL/SDL_pixels.h \
  742. ../../extern/include/SDL/SDL_rect.h \
  743. ../../extern/include/SDL/SDL_surface.h \
  744. ../../extern/include/SDL/SDL_keyboard.h \
  745. ../../extern/include/SDL/SDL_keysym.h \
  746. ../../extern/include/SDL/SDL_scancode.h \
  747. ../../extern/include/SDL/SDL_mouse.h \
  748. ../../extern/include/SDL/SDL_joystick.h \
  749. ../../extern/include/SDL/SDL_quit.h \
  750. ../../extern/include/SDL/SDL_loadso.h \
  751. ../../extern/include/SDL/SDL_power.h \
  752. ../../extern/include/SDL/SDL_timer.h \
  753. ../../extern/include/SDL/SDL_version.h \
  754. ../../extern/include/SDL/SDL_revision.h \
  755. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  756. ../../src/Scene/MeshNode.h ../../src/Scene/SceneNode.h \
  757. ../../src/Util/Vec.h ../../src/Resources/Material.h \
  758. ../../src/Resources/ShaderProg.h ../../src/Resources/Texture.h \
  759. ../../src/Resources/Mesh.h ../../src/Misc/collision.h \
  760. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h \
  761. ../../src/Scene/Controllers/Controller.h ../../src/Scene/Scene.h \
  762. ../../src/Misc/skybox.h ../../src/Physics/Physics.h \
  763. ../../extern/include/bullet/btBulletCollisionCommon.h \
  764. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  765. ../../extern/include/bullet/LinearMath/btVector3.h \
  766. ../../extern/include/bullet/LinearMath/btScalar.h \
  767. ../../extern/include/bullet/LinearMath/btMinMax.h \
  768. ../../extern/include/bullet/LinearMath/btScalar.h \
  769. ../../extern/include/bullet/LinearMath/btTransform.h \
  770. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  771. ../../extern/include/bullet/LinearMath/btVector3.h \
  772. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  773. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  774. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  775. ../../extern/include/bullet/LinearMath/btMotionState.h \
  776. ../../extern/include/bullet/LinearMath/btTransform.h \
  777. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  778. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  779. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  780. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  781. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  782. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  783. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  784. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  785. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  786. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  787. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  788. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  789. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  790. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  791. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  792. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  793. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  794. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  795. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  796. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  797. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  798. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  799. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  800. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  801. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  802. ../../extern/include/bullet/LinearMath/btMinMax.h \
  803. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  804. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  805. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  806. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  807. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  808. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  809. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  810. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  811. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  812. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  813. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  814. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  815. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  816. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  817. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  818. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  819. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  820. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  821. ../../extern/include/bullet/LinearMath/btHashMap.h \
  822. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  823. ../../extern/include/bullet/LinearMath/btSerializer.h \
  824. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  825. ../../extern/include/bullet/LinearMath/btHashMap.h \
  826. ../../src/Misc/memory.h \
  827. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  828. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  829. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  830. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  831. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  832. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  833. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  834. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  835. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  836. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  837. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  838. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  839. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  840. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  841. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  842. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  843. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  844. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  845. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  846. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  847. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  848. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  849. ../../extern/include/bullet/LinearMath/btTransform.h \
  850. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  851. ../../extern/include/bullet/LinearMath/btMotionState.h \
  852. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  853. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  854. ../../extern/include/bullet/LinearMath/btSerializer.h \
  855. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  856. ../../extern/include/bullet/btBulletCollisionCommon.h \
  857. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  858. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  859. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  860. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  861. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  862. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  863. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  864. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  865. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  866. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  867. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  868. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  869. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  870. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  871. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  872. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  873. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  874. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  875. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  876. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  877. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  878. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  879. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  880. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  881. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  882. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  883. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  884. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  885. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  886. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  887. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  888. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  889. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  890. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  891. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  892. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  893. ../../src/Renderer//RendererInitializer.h
  894. @echo Compiling ../../src/Renderer//Ez.cpp...
  895. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Ez.cpp -o Ez.o
  896. Ms.o: ../../src/Renderer//Ms.cpp ../../src/Renderer//Ms.h \
  897. ../../src/Core/Common.h ../../src/Renderer//RenderingStage.h \
  898. ../../src/Renderer//Ez.h ../../src/Renderer/BufferObjects/Fbo.h \
  899. ../../extern/include/GL/glew.h ../../src/Resources/Texture.h \
  900. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  901. ../../src/Util/Vec.h ../../src/Renderer//Renderer.h \
  902. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  903. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  904. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  905. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  906. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  907. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  908. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  909. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  910. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  911. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  912. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  913. ../../src/Math/Transform.inl.h ../../src/Resources/ShaderProg.h \
  914. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  915. ../../src/Renderer/BufferObjects/BufferObject.h \
  916. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  917. ../../src/Renderer//Is.h ../../src/Renderer//Sm.h \
  918. ../../src/Renderer//Smo.h ../../src/Renderer//Pps.h \
  919. ../../src/Renderer//Hdr.h ../../src/Renderer//Ssao.h \
  920. ../../src/Renderer//Bs.h ../../src/Renderer//Dbg.h ../../src/Core/App.h \
  921. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  922. ../../extern/include/SDL/SDL_stdinc.h \
  923. ../../extern/include/SDL/SDL_config.h \
  924. ../../extern/include/SDL/SDL_platform.h \
  925. ../../extern/include/SDL/begin_code.h \
  926. ../../extern/include/SDL/close_code.h \
  927. ../../extern/include/SDL/SDL_atomic.h \
  928. ../../extern/include/SDL/SDL_audio.h \
  929. ../../extern/include/SDL/SDL_error.h \
  930. ../../extern/include/SDL/SDL_endian.h \
  931. ../../extern/include/SDL/SDL_mutex.h \
  932. ../../extern/include/SDL/SDL_thread.h \
  933. ../../extern/include/SDL/SDL_rwops.h \
  934. ../../extern/include/SDL/SDL_clipboard.h \
  935. ../../extern/include/SDL/SDL_cpuinfo.h \
  936. ../../extern/include/SDL/SDL_events.h \
  937. ../../extern/include/SDL/SDL_video.h \
  938. ../../extern/include/SDL/SDL_pixels.h \
  939. ../../extern/include/SDL/SDL_rect.h \
  940. ../../extern/include/SDL/SDL_surface.h \
  941. ../../extern/include/SDL/SDL_keyboard.h \
  942. ../../extern/include/SDL/SDL_keysym.h \
  943. ../../extern/include/SDL/SDL_scancode.h \
  944. ../../extern/include/SDL/SDL_mouse.h \
  945. ../../extern/include/SDL/SDL_joystick.h \
  946. ../../extern/include/SDL/SDL_quit.h \
  947. ../../extern/include/SDL/SDL_loadso.h \
  948. ../../extern/include/SDL/SDL_power.h \
  949. ../../extern/include/SDL/SDL_timer.h \
  950. ../../extern/include/SDL/SDL_version.h \
  951. ../../extern/include/SDL/SDL_revision.h \
  952. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  953. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  954. ../../src/Physics/Physics.h \
  955. ../../extern/include/bullet/btBulletCollisionCommon.h \
  956. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  957. ../../extern/include/bullet/LinearMath/btVector3.h \
  958. ../../extern/include/bullet/LinearMath/btScalar.h \
  959. ../../extern/include/bullet/LinearMath/btMinMax.h \
  960. ../../extern/include/bullet/LinearMath/btScalar.h \
  961. ../../extern/include/bullet/LinearMath/btTransform.h \
  962. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  963. ../../extern/include/bullet/LinearMath/btVector3.h \
  964. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  965. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  966. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  967. ../../extern/include/bullet/LinearMath/btMotionState.h \
  968. ../../extern/include/bullet/LinearMath/btTransform.h \
  969. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  970. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  971. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  972. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  973. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  974. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  975. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  976. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  977. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  978. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  979. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  980. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  981. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  982. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  983. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  984. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  985. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  986. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  987. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  988. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  989. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  990. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  991. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  992. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  993. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  994. ../../extern/include/bullet/LinearMath/btMinMax.h \
  995. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  996. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  997. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  998. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  999. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  1000. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1001. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  1002. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1003. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1004. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1005. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1006. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1007. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1008. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1009. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1010. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1011. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1012. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1013. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1014. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1015. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1016. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  1017. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1018. ../../src/Misc/memory.h \
  1019. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1020. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1021. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  1022. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1023. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  1024. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1025. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1026. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1027. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1028. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1029. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1030. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1031. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1032. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1033. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1034. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1035. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1036. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1037. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  1038. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1039. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1040. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1041. ../../extern/include/bullet/LinearMath/btTransform.h \
  1042. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  1043. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1044. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  1045. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1046. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1047. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  1048. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1049. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1050. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1051. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1052. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1053. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1054. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1055. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1056. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1057. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1058. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1059. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1060. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1061. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1062. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1063. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1064. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1065. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1066. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1067. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1068. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1069. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1070. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1071. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1072. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1073. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1074. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1075. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1076. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1077. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1078. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1079. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1080. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  1081. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  1082. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1083. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  1084. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1085. ../../src/Scene/Camera.h ../../src/Misc/collision.h \
  1086. ../../src/Scene/SceneNode.h ../../src/Util/Vec.h \
  1087. ../../src/Scene/MeshNode.h ../../src/Resources/Material.h \
  1088. ../../src/Resources/ShaderProg.h ../../src/Resources/Texture.h \
  1089. ../../src/Resources/Mesh.h \
  1090. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h \
  1091. ../../src/Scene/Controllers/Controller.h
  1092. @echo Compiling ../../src/Renderer//Ms.cpp...
  1093. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Ms.cpp -o Ms.o
  1094. Sm.o: ../../src/Renderer//Sm.cpp ../../src/Renderer//Sm.h \
  1095. ../../src/Core/Common.h ../../src/Renderer//RenderingStage.h \
  1096. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  1097. ../../src/Resources/Texture.h ../../src/Resources/Core/Resource.h \
  1098. ../../src/Util/Util.h ../../src/Util/Vec.h \
  1099. ../../src/Renderer//Renderer.h ../../src/Math/Math.h \
  1100. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  1101. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  1102. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1103. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1104. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1105. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1106. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1107. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1108. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1109. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1110. ../../src/Math/Transform.inl.h ../../src/Resources/ShaderProg.h \
  1111. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  1112. ../../src/Renderer/BufferObjects/BufferObject.h \
  1113. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  1114. ../../src/Renderer//Ms.h ../../src/Renderer//Ez.h \
  1115. ../../src/Renderer//Is.h ../../src/Renderer//Smo.h \
  1116. ../../src/Renderer//Pps.h ../../src/Renderer//Hdr.h \
  1117. ../../src/Renderer//Ssao.h ../../src/Renderer//Bs.h \
  1118. ../../src/Renderer//Dbg.h ../../src/Core/App.h \
  1119. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  1120. ../../extern/include/SDL/SDL_stdinc.h \
  1121. ../../extern/include/SDL/SDL_config.h \
  1122. ../../extern/include/SDL/SDL_platform.h \
  1123. ../../extern/include/SDL/begin_code.h \
  1124. ../../extern/include/SDL/close_code.h \
  1125. ../../extern/include/SDL/SDL_atomic.h \
  1126. ../../extern/include/SDL/SDL_audio.h \
  1127. ../../extern/include/SDL/SDL_error.h \
  1128. ../../extern/include/SDL/SDL_endian.h \
  1129. ../../extern/include/SDL/SDL_mutex.h \
  1130. ../../extern/include/SDL/SDL_thread.h \
  1131. ../../extern/include/SDL/SDL_rwops.h \
  1132. ../../extern/include/SDL/SDL_clipboard.h \
  1133. ../../extern/include/SDL/SDL_cpuinfo.h \
  1134. ../../extern/include/SDL/SDL_events.h \
  1135. ../../extern/include/SDL/SDL_video.h \
  1136. ../../extern/include/SDL/SDL_pixels.h \
  1137. ../../extern/include/SDL/SDL_rect.h \
  1138. ../../extern/include/SDL/SDL_surface.h \
  1139. ../../extern/include/SDL/SDL_keyboard.h \
  1140. ../../extern/include/SDL/SDL_keysym.h \
  1141. ../../extern/include/SDL/SDL_scancode.h \
  1142. ../../extern/include/SDL/SDL_mouse.h \
  1143. ../../extern/include/SDL/SDL_joystick.h \
  1144. ../../extern/include/SDL/SDL_quit.h \
  1145. ../../extern/include/SDL/SDL_loadso.h \
  1146. ../../extern/include/SDL/SDL_power.h \
  1147. ../../extern/include/SDL/SDL_timer.h \
  1148. ../../extern/include/SDL/SDL_version.h \
  1149. ../../extern/include/SDL/SDL_revision.h \
  1150. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  1151. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  1152. ../../src/Physics/Physics.h \
  1153. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1154. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1155. ../../extern/include/bullet/LinearMath/btVector3.h \
  1156. ../../extern/include/bullet/LinearMath/btScalar.h \
  1157. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1158. ../../extern/include/bullet/LinearMath/btScalar.h \
  1159. ../../extern/include/bullet/LinearMath/btTransform.h \
  1160. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1161. ../../extern/include/bullet/LinearMath/btVector3.h \
  1162. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1163. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  1164. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1165. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1166. ../../extern/include/bullet/LinearMath/btTransform.h \
  1167. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1168. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1169. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1170. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1171. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1172. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1173. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1174. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  1175. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1176. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1177. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1178. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1179. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1180. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1181. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1182. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1183. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1184. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1185. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1186. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1187. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1188. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  1189. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  1190. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1191. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  1192. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1193. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  1194. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1195. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  1196. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1197. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  1198. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1199. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  1200. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1201. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1202. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1203. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1204. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1205. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1206. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1207. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1208. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1209. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1210. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1211. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1212. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1213. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1214. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  1215. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1216. ../../src/Misc/memory.h \
  1217. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1218. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1219. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  1220. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1221. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  1222. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1223. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1224. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1225. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1226. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1227. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1228. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1229. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1230. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1231. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1232. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1233. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1234. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1235. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  1236. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1237. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1238. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1239. ../../extern/include/bullet/LinearMath/btTransform.h \
  1240. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  1241. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1242. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  1243. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1244. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1245. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  1246. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1247. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1248. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1249. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1250. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1251. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1252. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1253. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1254. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1255. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1256. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1257. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1258. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1259. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1260. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1261. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1262. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1263. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1264. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1265. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1266. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1267. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1268. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1269. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1270. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1271. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1272. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1273. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1274. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1275. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1276. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1277. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1278. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  1279. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  1280. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1281. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  1282. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1283. ../../src/Scene/MeshNode.h ../../src/Scene/SceneNode.h \
  1284. ../../src/Util/Vec.h ../../src/Resources/Material.h \
  1285. ../../src/Resources/ShaderProg.h ../../src/Resources/Texture.h \
  1286. ../../src/Resources/Mesh.h ../../src/Misc/collision.h \
  1287. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h \
  1288. ../../src/Scene/Controllers/Controller.h \
  1289. ../../src/Resources/LightProps.h ../../src/Scene/Camera.h \
  1290. ../../src/Renderer//RendererInitializer.h
  1291. @echo Compiling ../../src/Renderer//Sm.cpp...
  1292. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Sm.cpp -o Sm.o
  1293. Pps.o: ../../src/Renderer//Pps.cpp ../../src/Renderer//Pps.h \
  1294. ../../src/Core/Common.h ../../src/Renderer//RenderingStage.h \
  1295. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  1296. ../../src/Renderer//Hdr.h ../../src/Resources/Texture.h \
  1297. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  1298. ../../src/Util/Vec.h ../../src/Resources/Core/RsrcPtr.h \
  1299. ../../src/Resources/ShaderProg.h ../../src/Math/Math.h \
  1300. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  1301. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  1302. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1303. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1304. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1305. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1306. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1307. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1308. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1309. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1310. ../../src/Math/Transform.inl.h ../../src/Util/CharPtrHashMap.h \
  1311. ../../src/Renderer//Ssao.h ../../src/Renderer//Renderer.h \
  1312. ../../src/Renderer/BufferObjects/Vbo.h \
  1313. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/Object.h \
  1314. ../../src/Renderer//Ms.h ../../src/Renderer//Ez.h \
  1315. ../../src/Renderer//Is.h ../../src/Renderer//Sm.h \
  1316. ../../src/Renderer//Smo.h ../../src/Renderer//Bs.h \
  1317. ../../src/Renderer//Dbg.h
  1318. @echo Compiling ../../src/Renderer//Pps.cpp...
  1319. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Pps.cpp -o Pps.o
  1320. Ssao.o: ../../src/Renderer//Ssao.cpp ../../src/Renderer//Ssao.h \
  1321. ../../src/Core/Common.h ../../src/Renderer//RenderingStage.h \
  1322. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  1323. ../../src/Resources/Texture.h ../../src/Resources/Core/Resource.h \
  1324. ../../src/Util/Util.h ../../src/Util/Vec.h \
  1325. ../../src/Resources/ShaderProg.h ../../src/Math/Math.h \
  1326. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  1327. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  1328. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1329. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1330. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1331. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1332. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1333. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1334. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1335. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1336. ../../src/Math/Transform.inl.h ../../src/Util/CharPtrHashMap.h \
  1337. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer//Renderer.h \
  1338. ../../src/Renderer/BufferObjects/Vbo.h \
  1339. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/Object.h \
  1340. ../../src/Renderer//Ms.h ../../src/Renderer//Ez.h \
  1341. ../../src/Renderer//Is.h ../../src/Renderer//Sm.h \
  1342. ../../src/Renderer//Smo.h ../../src/Renderer//Pps.h \
  1343. ../../src/Renderer//Hdr.h ../../src/Renderer//Bs.h \
  1344. ../../src/Renderer//Dbg.h ../../src/Scene/Camera.h \
  1345. ../../src/Misc/collision.h ../../src/Scene/SceneNode.h \
  1346. ../../src/Util/Vec.h ../../src/Renderer//RendererInitializer.h
  1347. @echo Compiling ../../src/Renderer//Ssao.cpp...
  1348. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Ssao.cpp -o Ssao.o
  1349. Renderer.o: ../../src/Renderer//Renderer.cpp \
  1350. ../../src/Renderer//Renderer.h ../../src/Core/Common.h \
  1351. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  1352. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  1353. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  1354. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1355. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1356. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1357. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1358. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1359. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1360. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1361. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1362. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  1363. ../../extern/include/GL/glew.h ../../src/Resources/Texture.h \
  1364. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  1365. ../../src/Util/Vec.h ../../src/Resources/ShaderProg.h \
  1366. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  1367. ../../src/Renderer/BufferObjects/BufferObject.h \
  1368. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  1369. ../../src/Renderer//Ms.h ../../src/Renderer//RenderingStage.h \
  1370. ../../src/Renderer//Ez.h ../../src/Renderer//Is.h \
  1371. ../../src/Renderer//Sm.h ../../src/Renderer//Smo.h \
  1372. ../../src/Renderer//Pps.h ../../src/Renderer//Hdr.h \
  1373. ../../src/Renderer//Ssao.h ../../src/Renderer//Bs.h \
  1374. ../../src/Renderer//Dbg.h ../../src/Scene/Camera.h \
  1375. ../../src/Misc/collision.h ../../src/Scene/SceneNode.h \
  1376. ../../src/Util/Vec.h ../../src/Renderer//RendererInitializer.h \
  1377. ../../src/Resources/Material.h ../../src/Resources/ShaderProg.h \
  1378. ../../src/Resources/Texture.h ../../src/Core/App.h \
  1379. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  1380. ../../extern/include/SDL/SDL_stdinc.h \
  1381. ../../extern/include/SDL/SDL_config.h \
  1382. ../../extern/include/SDL/SDL_platform.h \
  1383. ../../extern/include/SDL/begin_code.h \
  1384. ../../extern/include/SDL/close_code.h \
  1385. ../../extern/include/SDL/SDL_atomic.h \
  1386. ../../extern/include/SDL/SDL_audio.h \
  1387. ../../extern/include/SDL/SDL_error.h \
  1388. ../../extern/include/SDL/SDL_endian.h \
  1389. ../../extern/include/SDL/SDL_mutex.h \
  1390. ../../extern/include/SDL/SDL_thread.h \
  1391. ../../extern/include/SDL/SDL_rwops.h \
  1392. ../../extern/include/SDL/SDL_clipboard.h \
  1393. ../../extern/include/SDL/SDL_cpuinfo.h \
  1394. ../../extern/include/SDL/SDL_events.h \
  1395. ../../extern/include/SDL/SDL_video.h \
  1396. ../../extern/include/SDL/SDL_pixels.h \
  1397. ../../extern/include/SDL/SDL_rect.h \
  1398. ../../extern/include/SDL/SDL_surface.h \
  1399. ../../extern/include/SDL/SDL_keyboard.h \
  1400. ../../extern/include/SDL/SDL_keysym.h \
  1401. ../../extern/include/SDL/SDL_scancode.h \
  1402. ../../extern/include/SDL/SDL_mouse.h \
  1403. ../../extern/include/SDL/SDL_joystick.h \
  1404. ../../extern/include/SDL/SDL_quit.h \
  1405. ../../extern/include/SDL/SDL_loadso.h \
  1406. ../../extern/include/SDL/SDL_power.h \
  1407. ../../extern/include/SDL/SDL_timer.h \
  1408. ../../extern/include/SDL/SDL_version.h \
  1409. ../../extern/include/SDL/SDL_revision.h \
  1410. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  1411. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  1412. ../../src/Physics/Physics.h \
  1413. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1414. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1415. ../../extern/include/bullet/LinearMath/btVector3.h \
  1416. ../../extern/include/bullet/LinearMath/btScalar.h \
  1417. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1418. ../../extern/include/bullet/LinearMath/btScalar.h \
  1419. ../../extern/include/bullet/LinearMath/btTransform.h \
  1420. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1421. ../../extern/include/bullet/LinearMath/btVector3.h \
  1422. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1423. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  1424. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1425. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1426. ../../extern/include/bullet/LinearMath/btTransform.h \
  1427. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1428. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1429. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1430. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1431. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1432. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1433. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1434. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  1435. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1436. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1437. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1438. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1439. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1440. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1441. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1442. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1443. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1444. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1445. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1446. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1447. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1448. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  1449. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  1450. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1451. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  1452. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1453. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  1454. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1455. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  1456. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1457. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  1458. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1459. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  1460. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1461. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1462. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1463. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1464. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1465. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1466. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1467. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1468. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1469. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1470. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1471. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1472. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1473. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1474. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  1475. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1476. ../../src/Misc/memory.h \
  1477. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1478. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1479. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  1480. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1481. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  1482. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1483. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1484. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1485. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1486. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1487. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1488. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1489. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1490. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1491. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1492. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1493. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1494. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1495. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  1496. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1497. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1498. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1499. ../../extern/include/bullet/LinearMath/btTransform.h \
  1500. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  1501. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1502. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  1503. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1504. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1505. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  1506. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1507. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1508. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1509. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1510. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1511. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1512. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1513. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1514. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1515. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1516. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1517. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1518. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1519. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1520. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1521. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1522. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1523. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1524. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1525. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1526. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1527. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1528. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1529. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1530. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1531. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1532. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1533. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1534. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1535. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1536. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1537. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1538. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  1539. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  1540. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1541. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  1542. ../../extern/include/bullet/LinearMath/btIDebugDraw.h
  1543. @echo Compiling ../../src/Renderer//Renderer.cpp...
  1544. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Renderer.cpp -o Renderer.o
  1545. Is.o: ../../src/Renderer//Is.cpp ../../src/Renderer//Is.h \
  1546. ../../src/Core/Common.h ../../src/Renderer//RenderingStage.h \
  1547. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  1548. ../../src/Renderer//Sm.h ../../src/Resources/Texture.h \
  1549. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  1550. ../../src/Util/Vec.h ../../src/Renderer//Smo.h \
  1551. ../../src/Renderer/BufferObjects/Vbo.h \
  1552. ../../src/Renderer/BufferObjects/BufferObject.h \
  1553. ../../src/Resources/ShaderProg.h ../../src/Math/Math.h \
  1554. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  1555. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  1556. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1557. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1558. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1559. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1560. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1561. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1562. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1563. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1564. ../../src/Math/Transform.inl.h ../../src/Util/CharPtrHashMap.h \
  1565. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer//Renderer.h \
  1566. ../../src/Util/Object.h ../../src/Renderer//Ms.h \
  1567. ../../src/Renderer//Ez.h ../../src/Renderer//Pps.h \
  1568. ../../src/Renderer//Hdr.h ../../src/Renderer//Ssao.h \
  1569. ../../src/Renderer//Bs.h ../../src/Renderer//Dbg.h \
  1570. ../../src/Scene/Camera.h ../../src/Misc/collision.h \
  1571. ../../src/Scene/SceneNode.h ../../src/Util/Vec.h ../../src/Scene/Light.h \
  1572. ../../src/Scene/Camera.h ../../src/Resources/LightProps.h \
  1573. ../../src/Resources/Texture.h ../../src/Core/App.h \
  1574. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  1575. ../../extern/include/SDL/SDL_stdinc.h \
  1576. ../../extern/include/SDL/SDL_config.h \
  1577. ../../extern/include/SDL/SDL_platform.h \
  1578. ../../extern/include/SDL/begin_code.h \
  1579. ../../extern/include/SDL/close_code.h \
  1580. ../../extern/include/SDL/SDL_atomic.h \
  1581. ../../extern/include/SDL/SDL_audio.h \
  1582. ../../extern/include/SDL/SDL_error.h \
  1583. ../../extern/include/SDL/SDL_endian.h \
  1584. ../../extern/include/SDL/SDL_mutex.h \
  1585. ../../extern/include/SDL/SDL_thread.h \
  1586. ../../extern/include/SDL/SDL_rwops.h \
  1587. ../../extern/include/SDL/SDL_clipboard.h \
  1588. ../../extern/include/SDL/SDL_cpuinfo.h \
  1589. ../../extern/include/SDL/SDL_events.h \
  1590. ../../extern/include/SDL/SDL_video.h \
  1591. ../../extern/include/SDL/SDL_pixels.h \
  1592. ../../extern/include/SDL/SDL_rect.h \
  1593. ../../extern/include/SDL/SDL_surface.h \
  1594. ../../extern/include/SDL/SDL_keyboard.h \
  1595. ../../extern/include/SDL/SDL_keysym.h \
  1596. ../../extern/include/SDL/SDL_scancode.h \
  1597. ../../extern/include/SDL/SDL_mouse.h \
  1598. ../../extern/include/SDL/SDL_joystick.h \
  1599. ../../extern/include/SDL/SDL_quit.h \
  1600. ../../extern/include/SDL/SDL_loadso.h \
  1601. ../../extern/include/SDL/SDL_power.h \
  1602. ../../extern/include/SDL/SDL_timer.h \
  1603. ../../extern/include/SDL/SDL_version.h \
  1604. ../../extern/include/SDL/SDL_revision.h \
  1605. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  1606. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  1607. ../../src/Physics/Physics.h \
  1608. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1609. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1610. ../../extern/include/bullet/LinearMath/btVector3.h \
  1611. ../../extern/include/bullet/LinearMath/btScalar.h \
  1612. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1613. ../../extern/include/bullet/LinearMath/btScalar.h \
  1614. ../../extern/include/bullet/LinearMath/btTransform.h \
  1615. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1616. ../../extern/include/bullet/LinearMath/btVector3.h \
  1617. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1618. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  1619. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1620. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1621. ../../extern/include/bullet/LinearMath/btTransform.h \
  1622. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1623. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1624. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1625. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1626. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1627. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1628. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1629. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  1630. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1631. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1632. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1633. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1634. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1635. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1636. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1637. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1638. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1639. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1640. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1641. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1642. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1643. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  1644. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  1645. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1646. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  1647. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1648. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  1649. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1650. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  1651. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1652. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  1653. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1654. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  1655. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1656. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1657. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1658. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1659. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1660. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1661. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1662. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1663. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1664. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1665. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1666. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1667. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1668. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1669. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  1670. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1671. ../../src/Misc/memory.h \
  1672. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1673. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1674. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  1675. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1676. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  1677. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1678. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1679. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1680. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1681. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1682. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1683. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1684. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1685. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1686. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1687. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1688. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1689. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1690. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  1691. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1692. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1693. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1694. ../../extern/include/bullet/LinearMath/btTransform.h \
  1695. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  1696. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1697. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  1698. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1699. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1700. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  1701. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1702. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1703. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1704. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1705. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1706. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1707. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1708. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1709. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1710. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1711. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1712. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1713. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1714. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1715. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1716. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1717. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1718. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1719. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1720. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1721. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1722. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1723. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1724. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1725. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1726. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1727. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1728. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1729. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1730. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1731. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1732. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1733. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  1734. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  1735. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1736. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  1737. ../../extern/include/bullet/LinearMath/btIDebugDraw.h
  1738. @echo Compiling ../../src/Renderer//Is.cpp...
  1739. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Is.cpp -o Is.o
  1740. MainRenderer.o: ../../src/Renderer//MainRenderer.cpp \
  1741. ../../src/Renderer//MainRenderer.h ../../src/Core/Common.h \
  1742. ../../src/Renderer//Renderer.h ../../src/Math/Math.h \
  1743. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  1744. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  1745. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1746. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1747. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1748. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1749. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1750. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1751. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1752. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1753. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  1754. ../../extern/include/GL/glew.h ../../src/Resources/Texture.h \
  1755. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  1756. ../../src/Util/Vec.h ../../src/Resources/ShaderProg.h \
  1757. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  1758. ../../src/Renderer/BufferObjects/BufferObject.h \
  1759. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  1760. ../../src/Renderer//Ms.h ../../src/Renderer//RenderingStage.h \
  1761. ../../src/Renderer//Ez.h ../../src/Renderer//Is.h \
  1762. ../../src/Renderer//Sm.h ../../src/Renderer//Smo.h \
  1763. ../../src/Renderer//Pps.h ../../src/Renderer//Hdr.h \
  1764. ../../src/Renderer//Ssao.h ../../src/Renderer//Bs.h \
  1765. ../../src/Renderer//Dbg.h ../../src/Core/App.h \
  1766. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  1767. ../../extern/include/SDL/SDL_stdinc.h \
  1768. ../../extern/include/SDL/SDL_config.h \
  1769. ../../extern/include/SDL/SDL_platform.h \
  1770. ../../extern/include/SDL/begin_code.h \
  1771. ../../extern/include/SDL/close_code.h \
  1772. ../../extern/include/SDL/SDL_atomic.h \
  1773. ../../extern/include/SDL/SDL_audio.h \
  1774. ../../extern/include/SDL/SDL_error.h \
  1775. ../../extern/include/SDL/SDL_endian.h \
  1776. ../../extern/include/SDL/SDL_mutex.h \
  1777. ../../extern/include/SDL/SDL_thread.h \
  1778. ../../extern/include/SDL/SDL_rwops.h \
  1779. ../../extern/include/SDL/SDL_clipboard.h \
  1780. ../../extern/include/SDL/SDL_cpuinfo.h \
  1781. ../../extern/include/SDL/SDL_events.h \
  1782. ../../extern/include/SDL/SDL_video.h \
  1783. ../../extern/include/SDL/SDL_pixels.h \
  1784. ../../extern/include/SDL/SDL_rect.h \
  1785. ../../extern/include/SDL/SDL_surface.h \
  1786. ../../extern/include/SDL/SDL_keyboard.h \
  1787. ../../extern/include/SDL/SDL_keysym.h \
  1788. ../../extern/include/SDL/SDL_scancode.h \
  1789. ../../extern/include/SDL/SDL_mouse.h \
  1790. ../../extern/include/SDL/SDL_joystick.h \
  1791. ../../extern/include/SDL/SDL_quit.h \
  1792. ../../extern/include/SDL/SDL_loadso.h \
  1793. ../../extern/include/SDL/SDL_power.h \
  1794. ../../extern/include/SDL/SDL_timer.h \
  1795. ../../extern/include/SDL/SDL_version.h \
  1796. ../../extern/include/SDL/SDL_revision.h \
  1797. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  1798. ../../src/Renderer//RendererInitializer.h
  1799. @echo Compiling ../../src/Renderer//MainRenderer.cpp...
  1800. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//MainRenderer.cpp -o MainRenderer.o
  1801. Dbg.o: ../../src/Renderer//Dbg.cpp ../../src/Renderer//Dbg.h \
  1802. ../../src/Core/Common.h ../../src/Renderer//RenderingStage.h \
  1803. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  1804. ../../src/Resources/ShaderProg.h ../../src/Resources/Core/Resource.h \
  1805. ../../src/Util/Util.h ../../src/Util/Vec.h ../../src/Math/Math.h \
  1806. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  1807. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  1808. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  1809. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  1810. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  1811. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  1812. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  1813. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  1814. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  1815. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  1816. ../../src/Math/Transform.inl.h ../../src/Util/CharPtrHashMap.h \
  1817. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer//Renderer.h \
  1818. ../../src/Resources/Texture.h ../../src/Renderer/BufferObjects/Vbo.h \
  1819. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/Object.h \
  1820. ../../src/Renderer//Ms.h ../../src/Renderer//Ez.h \
  1821. ../../src/Renderer//Is.h ../../src/Renderer//Sm.h \
  1822. ../../src/Renderer//Smo.h ../../src/Renderer//Pps.h \
  1823. ../../src/Renderer//Hdr.h ../../src/Renderer//Ssao.h \
  1824. ../../src/Renderer//Bs.h ../../src/Core/App.h \
  1825. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  1826. ../../extern/include/SDL/SDL_stdinc.h \
  1827. ../../extern/include/SDL/SDL_config.h \
  1828. ../../extern/include/SDL/SDL_platform.h \
  1829. ../../extern/include/SDL/begin_code.h \
  1830. ../../extern/include/SDL/close_code.h \
  1831. ../../extern/include/SDL/SDL_atomic.h \
  1832. ../../extern/include/SDL/SDL_audio.h \
  1833. ../../extern/include/SDL/SDL_error.h \
  1834. ../../extern/include/SDL/SDL_endian.h \
  1835. ../../extern/include/SDL/SDL_mutex.h \
  1836. ../../extern/include/SDL/SDL_thread.h \
  1837. ../../extern/include/SDL/SDL_rwops.h \
  1838. ../../extern/include/SDL/SDL_clipboard.h \
  1839. ../../extern/include/SDL/SDL_cpuinfo.h \
  1840. ../../extern/include/SDL/SDL_events.h \
  1841. ../../extern/include/SDL/SDL_video.h \
  1842. ../../extern/include/SDL/SDL_pixels.h \
  1843. ../../extern/include/SDL/SDL_rect.h \
  1844. ../../extern/include/SDL/SDL_surface.h \
  1845. ../../extern/include/SDL/SDL_keyboard.h \
  1846. ../../extern/include/SDL/SDL_keysym.h \
  1847. ../../extern/include/SDL/SDL_scancode.h \
  1848. ../../extern/include/SDL/SDL_mouse.h \
  1849. ../../extern/include/SDL/SDL_joystick.h \
  1850. ../../extern/include/SDL/SDL_quit.h \
  1851. ../../extern/include/SDL/SDL_loadso.h \
  1852. ../../extern/include/SDL/SDL_power.h \
  1853. ../../extern/include/SDL/SDL_timer.h \
  1854. ../../extern/include/SDL/SDL_version.h \
  1855. ../../extern/include/SDL/SDL_revision.h \
  1856. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  1857. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  1858. ../../src/Physics/Physics.h \
  1859. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1860. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1861. ../../extern/include/bullet/LinearMath/btVector3.h \
  1862. ../../extern/include/bullet/LinearMath/btScalar.h \
  1863. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1864. ../../extern/include/bullet/LinearMath/btScalar.h \
  1865. ../../extern/include/bullet/LinearMath/btTransform.h \
  1866. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1867. ../../extern/include/bullet/LinearMath/btVector3.h \
  1868. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1869. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  1870. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1871. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1872. ../../extern/include/bullet/LinearMath/btTransform.h \
  1873. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1874. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1875. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  1876. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1877. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  1878. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  1879. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1880. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  1881. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  1882. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  1883. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1884. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1885. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1886. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  1887. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  1888. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  1889. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1890. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1891. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  1892. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  1893. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  1894. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  1895. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  1896. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  1897. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  1898. ../../extern/include/bullet/LinearMath/btMinMax.h \
  1899. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  1900. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  1901. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  1902. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  1903. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  1904. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  1905. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  1906. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  1907. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  1908. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  1909. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1910. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  1911. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  1912. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  1913. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1914. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  1915. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  1916. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  1917. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1918. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  1919. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1920. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  1921. ../../extern/include/bullet/LinearMath/btHashMap.h \
  1922. ../../src/Misc/memory.h \
  1923. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  1924. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  1925. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  1926. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  1927. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  1928. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  1929. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  1930. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  1931. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  1932. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  1933. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  1934. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  1935. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  1936. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  1937. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  1938. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  1939. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  1940. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1941. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  1942. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  1943. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  1944. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  1945. ../../extern/include/bullet/LinearMath/btTransform.h \
  1946. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  1947. ../../extern/include/bullet/LinearMath/btMotionState.h \
  1948. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  1949. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1950. ../../extern/include/bullet/LinearMath/btSerializer.h \
  1951. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  1952. ../../extern/include/bullet/btBulletCollisionCommon.h \
  1953. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1954. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  1955. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  1956. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  1957. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  1958. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  1959. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  1960. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1961. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  1962. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  1963. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  1964. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1965. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1966. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  1967. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  1968. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  1969. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  1970. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1971. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  1972. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1973. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  1974. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  1975. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  1976. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  1977. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  1978. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  1979. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  1980. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  1981. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  1982. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  1983. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  1984. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  1985. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  1986. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  1987. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  1988. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  1989. ../../src/Scene/SkelNode.h ../../src/Scene/SceneNode.h \
  1990. ../../src/Util/Vec.h ../../src/Scene/Controllers/SkelAnimCtrl.h \
  1991. ../../src/Scene/Controllers/Controller.h ../../src/Resources/Skeleton.h \
  1992. ../../src/Scene/Camera.h ../../src/Misc/collision.h \
  1993. ../../src/Resources/LightProps.h ../../src/Resources/Texture.h \
  1994. ../../src/Renderer//RendererInitializer.h
  1995. @echo Compiling ../../src/Renderer//Dbg.cpp...
  1996. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Dbg.cpp -o Dbg.o
  1997. Hdr.o: ../../src/Renderer//Hdr.cpp ../../src/Renderer//Hdr.h \
  1998. ../../src/Core/Common.h ../../src/Renderer//RenderingStage.h \
  1999. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  2000. ../../src/Resources/Texture.h ../../src/Resources/Core/Resource.h \
  2001. ../../src/Util/Util.h ../../src/Util/Vec.h \
  2002. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/ShaderProg.h \
  2003. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2004. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2005. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2006. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2007. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2008. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2009. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2010. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2011. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2012. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2013. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2014. ../../src/Math/Transform.inl.h ../../src/Util/CharPtrHashMap.h \
  2015. ../../src/Renderer//Renderer.h ../../src/Renderer/BufferObjects/Vbo.h \
  2016. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/Object.h \
  2017. ../../src/Renderer//Ms.h ../../src/Renderer//Ez.h \
  2018. ../../src/Renderer//Is.h ../../src/Renderer//Sm.h \
  2019. ../../src/Renderer//Smo.h ../../src/Renderer//Pps.h \
  2020. ../../src/Renderer//Ssao.h ../../src/Renderer//Bs.h \
  2021. ../../src/Renderer//Dbg.h ../../src/Renderer//RendererInitializer.h \
  2022. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  2023. ../../extern/include/SDL/SDL_main.h \
  2024. ../../extern/include/SDL/SDL_stdinc.h \
  2025. ../../extern/include/SDL/SDL_config.h \
  2026. ../../extern/include/SDL/SDL_platform.h \
  2027. ../../extern/include/SDL/begin_code.h \
  2028. ../../extern/include/SDL/close_code.h \
  2029. ../../extern/include/SDL/SDL_atomic.h \
  2030. ../../extern/include/SDL/SDL_audio.h \
  2031. ../../extern/include/SDL/SDL_error.h \
  2032. ../../extern/include/SDL/SDL_endian.h \
  2033. ../../extern/include/SDL/SDL_mutex.h \
  2034. ../../extern/include/SDL/SDL_thread.h \
  2035. ../../extern/include/SDL/SDL_rwops.h \
  2036. ../../extern/include/SDL/SDL_clipboard.h \
  2037. ../../extern/include/SDL/SDL_cpuinfo.h \
  2038. ../../extern/include/SDL/SDL_events.h \
  2039. ../../extern/include/SDL/SDL_video.h \
  2040. ../../extern/include/SDL/SDL_pixels.h \
  2041. ../../extern/include/SDL/SDL_rect.h \
  2042. ../../extern/include/SDL/SDL_surface.h \
  2043. ../../extern/include/SDL/SDL_keyboard.h \
  2044. ../../extern/include/SDL/SDL_keysym.h \
  2045. ../../extern/include/SDL/SDL_scancode.h \
  2046. ../../extern/include/SDL/SDL_mouse.h \
  2047. ../../extern/include/SDL/SDL_joystick.h \
  2048. ../../extern/include/SDL/SDL_quit.h \
  2049. ../../extern/include/SDL/SDL_loadso.h \
  2050. ../../extern/include/SDL/SDL_power.h \
  2051. ../../extern/include/SDL/SDL_timer.h \
  2052. ../../extern/include/SDL/SDL_version.h \
  2053. ../../extern/include/SDL/SDL_revision.h \
  2054. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h
  2055. @echo Compiling ../../src/Renderer//Hdr.cpp...
  2056. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Hdr.cpp -o Hdr.o
  2057. Bs.o: ../../src/Renderer//Bs.cpp ../../src/Renderer//Bs.h \
  2058. ../../src/Core/Common.h ../../src/Renderer//RenderingStage.h \
  2059. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  2060. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/Texture.h \
  2061. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  2062. ../../src/Util/Vec.h ../../src/Renderer//Renderer.h \
  2063. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2064. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2065. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2066. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2067. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2068. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2069. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2070. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2071. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2072. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2073. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2074. ../../src/Math/Transform.inl.h ../../src/Resources/ShaderProg.h \
  2075. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  2076. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Util/Object.h \
  2077. ../../src/Renderer//Ms.h ../../src/Renderer//Ez.h \
  2078. ../../src/Renderer//Is.h ../../src/Renderer//Sm.h \
  2079. ../../src/Renderer//Smo.h ../../src/Renderer//Pps.h \
  2080. ../../src/Renderer//Hdr.h ../../src/Renderer//Ssao.h \
  2081. ../../src/Renderer//Dbg.h ../../src/Core/App.h \
  2082. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  2083. ../../extern/include/SDL/SDL_stdinc.h \
  2084. ../../extern/include/SDL/SDL_config.h \
  2085. ../../extern/include/SDL/SDL_platform.h \
  2086. ../../extern/include/SDL/begin_code.h \
  2087. ../../extern/include/SDL/close_code.h \
  2088. ../../extern/include/SDL/SDL_atomic.h \
  2089. ../../extern/include/SDL/SDL_audio.h \
  2090. ../../extern/include/SDL/SDL_error.h \
  2091. ../../extern/include/SDL/SDL_endian.h \
  2092. ../../extern/include/SDL/SDL_mutex.h \
  2093. ../../extern/include/SDL/SDL_thread.h \
  2094. ../../extern/include/SDL/SDL_rwops.h \
  2095. ../../extern/include/SDL/SDL_clipboard.h \
  2096. ../../extern/include/SDL/SDL_cpuinfo.h \
  2097. ../../extern/include/SDL/SDL_events.h \
  2098. ../../extern/include/SDL/SDL_video.h \
  2099. ../../extern/include/SDL/SDL_pixels.h \
  2100. ../../extern/include/SDL/SDL_rect.h \
  2101. ../../extern/include/SDL/SDL_surface.h \
  2102. ../../extern/include/SDL/SDL_keyboard.h \
  2103. ../../extern/include/SDL/SDL_keysym.h \
  2104. ../../extern/include/SDL/SDL_scancode.h \
  2105. ../../extern/include/SDL/SDL_mouse.h \
  2106. ../../extern/include/SDL/SDL_joystick.h \
  2107. ../../extern/include/SDL/SDL_quit.h \
  2108. ../../extern/include/SDL/SDL_loadso.h \
  2109. ../../extern/include/SDL/SDL_power.h \
  2110. ../../extern/include/SDL/SDL_timer.h \
  2111. ../../extern/include/SDL/SDL_version.h \
  2112. ../../extern/include/SDL/SDL_revision.h \
  2113. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  2114. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  2115. ../../src/Physics/Physics.h \
  2116. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2117. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2118. ../../extern/include/bullet/LinearMath/btVector3.h \
  2119. ../../extern/include/bullet/LinearMath/btScalar.h \
  2120. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2121. ../../extern/include/bullet/LinearMath/btScalar.h \
  2122. ../../extern/include/bullet/LinearMath/btTransform.h \
  2123. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2124. ../../extern/include/bullet/LinearMath/btVector3.h \
  2125. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2126. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  2127. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2128. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2129. ../../extern/include/bullet/LinearMath/btTransform.h \
  2130. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2131. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2132. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2133. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2134. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  2135. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  2136. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2137. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  2138. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  2139. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  2140. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2141. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2142. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2143. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  2144. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2145. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2146. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2147. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2148. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  2149. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2150. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  2151. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  2152. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  2153. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  2154. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  2155. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2156. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  2157. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  2158. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  2159. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2160. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  2161. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  2162. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  2163. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  2164. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  2165. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  2166. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2167. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  2168. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  2169. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  2170. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2171. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  2172. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  2173. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  2174. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2175. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2176. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2177. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  2178. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2179. ../../src/Misc/memory.h \
  2180. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2181. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2182. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  2183. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2184. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  2185. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2186. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2187. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2188. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2189. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2190. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2191. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2192. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2193. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2194. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2195. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2196. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2197. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2198. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  2199. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2200. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2201. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2202. ../../extern/include/bullet/LinearMath/btTransform.h \
  2203. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  2204. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2205. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  2206. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2207. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2208. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  2209. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2210. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2211. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  2212. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2213. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  2214. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  2215. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2216. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  2217. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2218. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2219. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  2220. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  2221. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2222. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2223. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  2224. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  2225. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  2226. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  2227. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2228. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  2229. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2230. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2231. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  2232. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  2233. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2234. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  2235. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  2236. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  2237. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2238. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  2239. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2240. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  2241. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  2242. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  2243. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2244. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  2245. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2246. ../../src/Scene/MeshNode.h ../../src/Scene/SceneNode.h \
  2247. ../../src/Util/Vec.h ../../src/Resources/Material.h \
  2248. ../../src/Resources/ShaderProg.h ../../src/Resources/Texture.h \
  2249. ../../src/Resources/Mesh.h ../../src/Misc/collision.h \
  2250. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h \
  2251. ../../src/Scene/Controllers/Controller.h
  2252. @echo Compiling ../../src/Renderer//Bs.cpp...
  2253. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Renderer//Bs.cpp -o Bs.o
  2254. MeshNode.o: ../../src/Scene//MeshNode.cpp ../../src/Scene//MeshNode.h \
  2255. ../../src/Core/Common.h ../../src/Scene//SceneNode.h \
  2256. ../../src/Util/Vec.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2257. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2258. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2259. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2260. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2261. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2262. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2263. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2264. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2265. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2266. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2267. ../../src/Math/Transform.inl.h ../../src/Resources/Material.h \
  2268. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  2269. ../../src/Util/Vec.h ../../src/Resources/ShaderProg.h \
  2270. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  2271. ../../src/Resources/Texture.h ../../src/Resources/Core/RsrcPtr.h \
  2272. ../../src/Resources/Mesh.h ../../src/Renderer/BufferObjects/Vbo.h \
  2273. ../../src/Renderer/BufferObjects/BufferObject.h \
  2274. ../../src/Misc/collision.h \
  2275. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h \
  2276. ../../src/Scene/Controllers/Controller.h ../../src/Scene//SkelNode.h \
  2277. ../../src/Scene/Controllers/SkelAnimCtrl.h \
  2278. ../../src/Resources/Skeleton.h ../../src/Core/App.h \
  2279. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  2280. ../../extern/include/SDL/SDL_stdinc.h \
  2281. ../../extern/include/SDL/SDL_config.h \
  2282. ../../extern/include/SDL/SDL_platform.h \
  2283. ../../extern/include/SDL/begin_code.h \
  2284. ../../extern/include/SDL/close_code.h \
  2285. ../../extern/include/SDL/SDL_atomic.h \
  2286. ../../extern/include/SDL/SDL_audio.h \
  2287. ../../extern/include/SDL/SDL_error.h \
  2288. ../../extern/include/SDL/SDL_endian.h \
  2289. ../../extern/include/SDL/SDL_mutex.h \
  2290. ../../extern/include/SDL/SDL_thread.h \
  2291. ../../extern/include/SDL/SDL_rwops.h \
  2292. ../../extern/include/SDL/SDL_clipboard.h \
  2293. ../../extern/include/SDL/SDL_cpuinfo.h \
  2294. ../../extern/include/SDL/SDL_events.h \
  2295. ../../extern/include/SDL/SDL_video.h \
  2296. ../../extern/include/SDL/SDL_pixels.h \
  2297. ../../extern/include/SDL/SDL_rect.h \
  2298. ../../extern/include/SDL/SDL_surface.h \
  2299. ../../extern/include/SDL/SDL_keyboard.h \
  2300. ../../extern/include/SDL/SDL_keysym.h \
  2301. ../../extern/include/SDL/SDL_scancode.h \
  2302. ../../extern/include/SDL/SDL_mouse.h \
  2303. ../../extern/include/SDL/SDL_joystick.h \
  2304. ../../extern/include/SDL/SDL_quit.h \
  2305. ../../extern/include/SDL/SDL_loadso.h \
  2306. ../../extern/include/SDL/SDL_power.h \
  2307. ../../extern/include/SDL/SDL_timer.h \
  2308. ../../extern/include/SDL/SDL_version.h \
  2309. ../../extern/include/SDL/SDL_revision.h \
  2310. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  2311. ../../src/Util/Object.h ../../src/Renderer/MainRenderer.h \
  2312. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  2313. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  2314. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingStage.h \
  2315. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  2316. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  2317. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  2318. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h
  2319. @echo Compiling ../../src/Scene//MeshNode.cpp...
  2320. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//MeshNode.cpp -o MeshNode.o
  2321. SceneNode.o: ../../src/Scene//SceneNode.cpp ../../src/Scene//SceneNode.h \
  2322. ../../src/Core/Common.h ../../src/Util/Vec.h ../../src/Math/Math.h \
  2323. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  2324. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  2325. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2326. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2327. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2328. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2329. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2330. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2331. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2332. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2333. ../../src/Math/Transform.inl.h ../../src/Renderer/Renderer.h \
  2334. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  2335. ../../src/Resources/Texture.h ../../src/Resources/Core/Resource.h \
  2336. ../../src/Util/Util.h ../../src/Util/Vec.h \
  2337. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  2338. ../../src/Renderer/BufferObjects/Vbo.h \
  2339. ../../src/Renderer/BufferObjects/BufferObject.h \
  2340. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  2341. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingStage.h \
  2342. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  2343. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  2344. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  2345. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h \
  2346. ../../src/Misc/collision.h ../../src/Scene/Controllers/Controller.h \
  2347. ../../src/Scene//Scene.h ../../src/Misc/skybox.h \
  2348. ../../src/Physics/Physics.h \
  2349. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2350. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2351. ../../extern/include/bullet/LinearMath/btVector3.h \
  2352. ../../extern/include/bullet/LinearMath/btScalar.h \
  2353. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2354. ../../extern/include/bullet/LinearMath/btScalar.h \
  2355. ../../extern/include/bullet/LinearMath/btTransform.h \
  2356. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2357. ../../extern/include/bullet/LinearMath/btVector3.h \
  2358. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2359. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  2360. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2361. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2362. ../../extern/include/bullet/LinearMath/btTransform.h \
  2363. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2364. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2365. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2366. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2367. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  2368. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  2369. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2370. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  2371. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  2372. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  2373. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2374. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2375. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2376. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  2377. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2378. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2379. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2380. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2381. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  2382. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2383. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  2384. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  2385. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  2386. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  2387. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  2388. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2389. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  2390. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  2391. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  2392. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2393. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  2394. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  2395. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  2396. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  2397. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  2398. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  2399. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2400. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  2401. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  2402. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  2403. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2404. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  2405. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  2406. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  2407. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2408. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2409. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2410. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  2411. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2412. ../../src/Misc/memory.h \
  2413. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2414. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2415. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  2416. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2417. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  2418. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2419. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2420. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2421. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2422. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2423. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2424. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2425. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2426. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2427. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2428. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2429. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2430. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2431. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  2432. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2433. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2434. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2435. ../../extern/include/bullet/LinearMath/btTransform.h \
  2436. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  2437. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2438. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  2439. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2440. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2441. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  2442. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2443. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2444. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  2445. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2446. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  2447. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  2448. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2449. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  2450. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2451. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2452. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  2453. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  2454. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2455. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2456. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  2457. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  2458. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  2459. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  2460. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2461. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  2462. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2463. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2464. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  2465. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  2466. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2467. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  2468. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  2469. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  2470. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2471. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  2472. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2473. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  2474. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  2475. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  2476. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2477. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  2478. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2479. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  2480. ../../extern/include/SDL/SDL_main.h \
  2481. ../../extern/include/SDL/SDL_stdinc.h \
  2482. ../../extern/include/SDL/SDL_config.h \
  2483. ../../extern/include/SDL/SDL_platform.h \
  2484. ../../extern/include/SDL/begin_code.h \
  2485. ../../extern/include/SDL/close_code.h \
  2486. ../../extern/include/SDL/SDL_atomic.h \
  2487. ../../extern/include/SDL/SDL_audio.h \
  2488. ../../extern/include/SDL/SDL_error.h \
  2489. ../../extern/include/SDL/SDL_endian.h \
  2490. ../../extern/include/SDL/SDL_mutex.h \
  2491. ../../extern/include/SDL/SDL_thread.h \
  2492. ../../extern/include/SDL/SDL_rwops.h \
  2493. ../../extern/include/SDL/SDL_clipboard.h \
  2494. ../../extern/include/SDL/SDL_cpuinfo.h \
  2495. ../../extern/include/SDL/SDL_events.h \
  2496. ../../extern/include/SDL/SDL_video.h \
  2497. ../../extern/include/SDL/SDL_pixels.h \
  2498. ../../extern/include/SDL/SDL_rect.h \
  2499. ../../extern/include/SDL/SDL_surface.h \
  2500. ../../extern/include/SDL/SDL_keyboard.h \
  2501. ../../extern/include/SDL/SDL_keysym.h \
  2502. ../../extern/include/SDL/SDL_scancode.h \
  2503. ../../extern/include/SDL/SDL_mouse.h \
  2504. ../../extern/include/SDL/SDL_joystick.h \
  2505. ../../extern/include/SDL/SDL_quit.h \
  2506. ../../extern/include/SDL/SDL_loadso.h \
  2507. ../../extern/include/SDL/SDL_power.h \
  2508. ../../extern/include/SDL/SDL_timer.h \
  2509. ../../extern/include/SDL/SDL_version.h \
  2510. ../../extern/include/SDL/SDL_revision.h \
  2511. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h
  2512. @echo Compiling ../../src/Scene//SceneNode.cpp...
  2513. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//SceneNode.cpp -o SceneNode.o
  2514. SkelNode.o: ../../src/Scene//SkelNode.cpp ../../src/Scene//SkelNode.h \
  2515. ../../src/Core/Common.h ../../src/Scene//SceneNode.h \
  2516. ../../src/Util/Vec.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2517. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2518. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2519. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2520. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2521. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2522. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2523. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2524. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2525. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2526. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2527. ../../src/Math/Transform.inl.h \
  2528. ../../src/Scene/Controllers/SkelAnimCtrl.h \
  2529. ../../src/Scene/Controllers/Controller.h \
  2530. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/Skeleton.h \
  2531. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  2532. ../../src/Util/Vec.h ../../src/Resources/SkelAnim.h ../../src/Core/App.h \
  2533. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  2534. ../../extern/include/SDL/SDL_stdinc.h \
  2535. ../../extern/include/SDL/SDL_config.h \
  2536. ../../extern/include/SDL/SDL_platform.h \
  2537. ../../extern/include/SDL/begin_code.h \
  2538. ../../extern/include/SDL/close_code.h \
  2539. ../../extern/include/SDL/SDL_atomic.h \
  2540. ../../extern/include/SDL/SDL_audio.h \
  2541. ../../extern/include/SDL/SDL_error.h \
  2542. ../../extern/include/SDL/SDL_endian.h \
  2543. ../../extern/include/SDL/SDL_mutex.h \
  2544. ../../extern/include/SDL/SDL_thread.h \
  2545. ../../extern/include/SDL/SDL_rwops.h \
  2546. ../../extern/include/SDL/SDL_clipboard.h \
  2547. ../../extern/include/SDL/SDL_cpuinfo.h \
  2548. ../../extern/include/SDL/SDL_events.h \
  2549. ../../extern/include/SDL/SDL_video.h \
  2550. ../../extern/include/SDL/SDL_pixels.h \
  2551. ../../extern/include/SDL/SDL_rect.h \
  2552. ../../extern/include/SDL/SDL_surface.h \
  2553. ../../extern/include/SDL/SDL_keyboard.h \
  2554. ../../extern/include/SDL/SDL_keysym.h \
  2555. ../../extern/include/SDL/SDL_scancode.h \
  2556. ../../extern/include/SDL/SDL_mouse.h \
  2557. ../../extern/include/SDL/SDL_joystick.h \
  2558. ../../extern/include/SDL/SDL_quit.h \
  2559. ../../extern/include/SDL/SDL_loadso.h \
  2560. ../../extern/include/SDL/SDL_power.h \
  2561. ../../extern/include/SDL/SDL_timer.h \
  2562. ../../extern/include/SDL/SDL_version.h \
  2563. ../../extern/include/SDL/SDL_revision.h \
  2564. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  2565. ../../src/Util/Object.h ../../src/Renderer/MainRenderer.h \
  2566. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  2567. ../../extern/include/GL/glew.h ../../src/Resources/Texture.h \
  2568. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  2569. ../../src/Renderer/BufferObjects/Vbo.h \
  2570. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Renderer/Ms.h \
  2571. ../../src/Renderer/RenderingStage.h ../../src/Renderer/Ez.h \
  2572. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  2573. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  2574. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  2575. ../../src/Renderer/Dbg.h
  2576. @echo Compiling ../../src/Scene//SkelNode.cpp...
  2577. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//SkelNode.cpp -o SkelNode.o
  2578. Light.o: ../../src/Scene//Light.cpp ../../src/Scene//Light.h \
  2579. ../../src/Core/Common.h ../../src/Resources/Texture.h \
  2580. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  2581. ../../src/Util/Vec.h ../../src/Scene//SceneNode.h ../../src/Util/Vec.h \
  2582. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2583. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2584. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2585. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2586. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2587. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2588. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2589. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2590. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2591. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2592. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2593. ../../src/Math/Transform.inl.h ../../src/Scene//Camera.h \
  2594. ../../src/Misc/collision.h ../../src/Resources/Core/RsrcPtr.h \
  2595. ../../src/Resources/LightProps.h ../../src/Resources/Texture.h \
  2596. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  2597. ../../extern/include/SDL/SDL_main.h \
  2598. ../../extern/include/SDL/SDL_stdinc.h \
  2599. ../../extern/include/SDL/SDL_config.h \
  2600. ../../extern/include/SDL/SDL_platform.h \
  2601. ../../extern/include/SDL/begin_code.h \
  2602. ../../extern/include/SDL/close_code.h \
  2603. ../../extern/include/SDL/SDL_atomic.h \
  2604. ../../extern/include/SDL/SDL_audio.h \
  2605. ../../extern/include/SDL/SDL_error.h \
  2606. ../../extern/include/SDL/SDL_endian.h \
  2607. ../../extern/include/SDL/SDL_mutex.h \
  2608. ../../extern/include/SDL/SDL_thread.h \
  2609. ../../extern/include/SDL/SDL_rwops.h \
  2610. ../../extern/include/SDL/SDL_clipboard.h \
  2611. ../../extern/include/SDL/SDL_cpuinfo.h \
  2612. ../../extern/include/SDL/SDL_events.h \
  2613. ../../extern/include/SDL/SDL_video.h \
  2614. ../../extern/include/SDL/SDL_pixels.h \
  2615. ../../extern/include/SDL/SDL_rect.h \
  2616. ../../extern/include/SDL/SDL_surface.h \
  2617. ../../extern/include/SDL/SDL_keyboard.h \
  2618. ../../extern/include/SDL/SDL_keysym.h \
  2619. ../../extern/include/SDL/SDL_scancode.h \
  2620. ../../extern/include/SDL/SDL_mouse.h \
  2621. ../../extern/include/SDL/SDL_joystick.h \
  2622. ../../extern/include/SDL/SDL_quit.h \
  2623. ../../extern/include/SDL/SDL_loadso.h \
  2624. ../../extern/include/SDL/SDL_power.h \
  2625. ../../extern/include/SDL/SDL_timer.h \
  2626. ../../extern/include/SDL/SDL_version.h \
  2627. ../../extern/include/SDL/SDL_revision.h \
  2628. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  2629. ../../src/Util/Object.h ../../src/Renderer/MainRenderer.h \
  2630. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  2631. ../../extern/include/GL/glew.h ../../src/Resources/ShaderProg.h \
  2632. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  2633. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Renderer/Ms.h \
  2634. ../../src/Renderer/RenderingStage.h ../../src/Renderer/Ez.h \
  2635. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  2636. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  2637. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  2638. ../../src/Renderer/Dbg.h
  2639. @echo Compiling ../../src/Scene//Light.cpp...
  2640. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//Light.cpp -o Light.o
  2641. SkelModelNode.o: ../../src/Scene//SkelModelNode.cpp \
  2642. ../../src/Scene//SkelModelNode.h ../../src/Core/Common.h \
  2643. ../../src/Scene//MeshNode.h ../../src/Scene//SceneNode.h \
  2644. ../../src/Util/Vec.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2645. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2646. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2647. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2648. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2649. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2650. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2651. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2652. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2653. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2654. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2655. ../../src/Math/Transform.inl.h ../../src/Resources/Material.h \
  2656. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  2657. ../../src/Util/Vec.h ../../src/Resources/ShaderProg.h \
  2658. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  2659. ../../src/Resources/Texture.h ../../src/Resources/Core/RsrcPtr.h \
  2660. ../../src/Resources/Mesh.h ../../src/Renderer/BufferObjects/Vbo.h \
  2661. ../../src/Renderer/BufferObjects/BufferObject.h \
  2662. ../../src/Misc/collision.h \
  2663. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h \
  2664. ../../src/Scene/Controllers/Controller.h \
  2665. ../../src/Util/Tokenizer/Parser.h ../../src/Util/Tokenizer/Scanner.h \
  2666. ../../src/Scene//SkelNode.h ../../src/Scene/Controllers/SkelAnimCtrl.h \
  2667. ../../src/Resources/Skeleton.h
  2668. @echo Compiling ../../src/Scene//SkelModelNode.cpp...
  2669. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//SkelModelNode.cpp -o SkelModelNode.o
  2670. Camera.o: ../../src/Scene//Camera.cpp ../../src/Scene//Camera.h \
  2671. ../../src/Core/Common.h ../../src/Misc/collision.h ../../src/Math/Math.h \
  2672. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  2673. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  2674. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2675. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2676. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2677. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2678. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2679. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2680. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2681. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2682. ../../src/Math/Transform.inl.h ../../src/Scene//SceneNode.h \
  2683. ../../src/Util/Vec.h ../../src/Renderer/MainRenderer.h \
  2684. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  2685. ../../extern/include/GL/glew.h ../../src/Resources/Texture.h \
  2686. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  2687. ../../src/Util/Vec.h ../../src/Resources/ShaderProg.h \
  2688. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  2689. ../../src/Renderer/BufferObjects/BufferObject.h \
  2690. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  2691. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingStage.h \
  2692. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  2693. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  2694. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  2695. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h ../../src/Core/App.h \
  2696. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  2697. ../../extern/include/SDL/SDL_stdinc.h \
  2698. ../../extern/include/SDL/SDL_config.h \
  2699. ../../extern/include/SDL/SDL_platform.h \
  2700. ../../extern/include/SDL/begin_code.h \
  2701. ../../extern/include/SDL/close_code.h \
  2702. ../../extern/include/SDL/SDL_atomic.h \
  2703. ../../extern/include/SDL/SDL_audio.h \
  2704. ../../extern/include/SDL/SDL_error.h \
  2705. ../../extern/include/SDL/SDL_endian.h \
  2706. ../../extern/include/SDL/SDL_mutex.h \
  2707. ../../extern/include/SDL/SDL_thread.h \
  2708. ../../extern/include/SDL/SDL_rwops.h \
  2709. ../../extern/include/SDL/SDL_clipboard.h \
  2710. ../../extern/include/SDL/SDL_cpuinfo.h \
  2711. ../../extern/include/SDL/SDL_events.h \
  2712. ../../extern/include/SDL/SDL_video.h \
  2713. ../../extern/include/SDL/SDL_pixels.h \
  2714. ../../extern/include/SDL/SDL_rect.h \
  2715. ../../extern/include/SDL/SDL_surface.h \
  2716. ../../extern/include/SDL/SDL_keyboard.h \
  2717. ../../extern/include/SDL/SDL_keysym.h \
  2718. ../../extern/include/SDL/SDL_scancode.h \
  2719. ../../extern/include/SDL/SDL_mouse.h \
  2720. ../../extern/include/SDL/SDL_joystick.h \
  2721. ../../extern/include/SDL/SDL_quit.h \
  2722. ../../extern/include/SDL/SDL_loadso.h \
  2723. ../../extern/include/SDL/SDL_power.h \
  2724. ../../extern/include/SDL/SDL_timer.h \
  2725. ../../extern/include/SDL/SDL_version.h \
  2726. ../../extern/include/SDL/SDL_revision.h \
  2727. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h
  2728. @echo Compiling ../../src/Scene//Camera.cpp...
  2729. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//Camera.cpp -o Camera.o
  2730. ParticleEmitter.o: ../../src/Scene//ParticleEmitter.cpp \
  2731. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2732. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2733. ../../extern/include/bullet/LinearMath/btVector3.h \
  2734. ../../extern/include/bullet/LinearMath/btScalar.h \
  2735. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2736. ../../extern/include/bullet/LinearMath/btScalar.h \
  2737. ../../extern/include/bullet/LinearMath/btTransform.h \
  2738. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2739. ../../extern/include/bullet/LinearMath/btVector3.h \
  2740. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2741. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  2742. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2743. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2744. ../../extern/include/bullet/LinearMath/btTransform.h \
  2745. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2746. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2747. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2748. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2749. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  2750. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  2751. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2752. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  2753. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  2754. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  2755. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2756. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2757. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2758. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  2759. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2760. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2761. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2762. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2763. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  2764. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2765. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  2766. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  2767. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  2768. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  2769. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  2770. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2771. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  2772. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  2773. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  2774. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2775. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  2776. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  2777. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  2778. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  2779. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  2780. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  2781. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2782. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  2783. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  2784. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  2785. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2786. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  2787. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  2788. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  2789. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2790. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2791. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2792. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  2793. ../../extern/include/bullet/LinearMath/btHashMap.h \
  2794. ../../src/Misc/memory.h ../../src/Core/Common.h \
  2795. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  2796. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2797. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  2798. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  2799. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  2800. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  2801. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  2802. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  2803. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  2804. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  2805. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2806. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  2807. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  2808. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2809. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  2810. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2811. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  2812. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2813. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  2814. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  2815. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  2816. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2817. ../../extern/include/bullet/LinearMath/btTransform.h \
  2818. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  2819. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2820. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  2821. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  2822. ../../extern/include/bullet/LinearMath/btSerializer.h \
  2823. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  2824. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2825. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2826. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  2827. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2828. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  2829. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  2830. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  2831. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  2832. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2833. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2834. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  2835. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  2836. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2837. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2838. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  2839. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  2840. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  2841. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  2842. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2843. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  2844. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2845. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  2846. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  2847. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  2848. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  2849. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  2850. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  2851. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  2852. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2853. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  2854. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  2855. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  2856. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  2857. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  2858. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  2859. ../../src/Scene//ParticleEmitter.h ../../src/Scene//SceneNode.h \
  2860. ../../src/Util/Vec.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2861. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2862. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2863. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2864. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2865. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2866. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2867. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2868. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2869. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2870. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2871. ../../src/Math/Transform.inl.h ../../src/Scene//MeshNode.h \
  2872. ../../src/Resources/Material.h ../../src/Resources/Core/Resource.h \
  2873. ../../src/Util/Util.h ../../src/Util/Vec.h \
  2874. ../../src/Resources/ShaderProg.h ../../extern/include/GL/glew.h \
  2875. ../../src/Util/CharPtrHashMap.h ../../src/Resources/Texture.h \
  2876. ../../src/Resources/Core/RsrcPtr.h ../../src/Resources/Mesh.h \
  2877. ../../src/Renderer/BufferObjects/Vbo.h \
  2878. ../../src/Renderer/BufferObjects/BufferObject.h \
  2879. ../../src/Misc/collision.h \
  2880. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h \
  2881. ../../src/Scene/Controllers/Controller.h ../../src/Scene//GhostNode.h \
  2882. ../../src/Resources/ParticleEmitterProps.h ../../src/Physics/RigidBody.h \
  2883. ../../src/Util/Object.h ../../src/Renderer/MainRenderer.h \
  2884. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  2885. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  2886. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingStage.h \
  2887. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  2888. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  2889. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  2890. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h ../../src/Core/App.h \
  2891. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  2892. ../../extern/include/SDL/SDL_stdinc.h \
  2893. ../../extern/include/SDL/SDL_config.h \
  2894. ../../extern/include/SDL/SDL_platform.h \
  2895. ../../extern/include/SDL/begin_code.h \
  2896. ../../extern/include/SDL/close_code.h \
  2897. ../../extern/include/SDL/SDL_atomic.h \
  2898. ../../extern/include/SDL/SDL_audio.h \
  2899. ../../extern/include/SDL/SDL_error.h \
  2900. ../../extern/include/SDL/SDL_endian.h \
  2901. ../../extern/include/SDL/SDL_mutex.h \
  2902. ../../extern/include/SDL/SDL_thread.h \
  2903. ../../extern/include/SDL/SDL_rwops.h \
  2904. ../../extern/include/SDL/SDL_clipboard.h \
  2905. ../../extern/include/SDL/SDL_cpuinfo.h \
  2906. ../../extern/include/SDL/SDL_events.h \
  2907. ../../extern/include/SDL/SDL_video.h \
  2908. ../../extern/include/SDL/SDL_pixels.h \
  2909. ../../extern/include/SDL/SDL_rect.h \
  2910. ../../extern/include/SDL/SDL_surface.h \
  2911. ../../extern/include/SDL/SDL_keyboard.h \
  2912. ../../extern/include/SDL/SDL_keysym.h \
  2913. ../../extern/include/SDL/SDL_scancode.h \
  2914. ../../extern/include/SDL/SDL_mouse.h \
  2915. ../../extern/include/SDL/SDL_joystick.h \
  2916. ../../extern/include/SDL/SDL_quit.h \
  2917. ../../extern/include/SDL/SDL_loadso.h \
  2918. ../../extern/include/SDL/SDL_power.h \
  2919. ../../extern/include/SDL/SDL_timer.h \
  2920. ../../extern/include/SDL/SDL_version.h \
  2921. ../../extern/include/SDL/SDL_revision.h \
  2922. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  2923. ../../src/Scene//Scene.h ../../src/Misc/skybox.h \
  2924. ../../src/Physics/Physics.h ../../src/Physics/BtAndAnkiConvertors.h \
  2925. ../../src/Physics/DebugDrawer.h \
  2926. ../../extern/include/bullet/LinearMath/btIDebugDraw.h
  2927. @echo Compiling ../../src/Scene//ParticleEmitter.cpp...
  2928. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//ParticleEmitter.cpp -o ParticleEmitter.o
  2929. Scene.o: ../../src/Scene//Scene.cpp ../../src/Scene//Scene.h \
  2930. ../../src/Core/Common.h ../../src/Util/Object.h ../../src/Util/Vec.h \
  2931. ../../src/Misc/skybox.h ../../src/Resources/Texture.h \
  2932. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  2933. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  2934. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  2935. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  2936. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  2937. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  2938. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  2939. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  2940. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  2941. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  2942. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  2943. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  2944. ../../src/Math/Transform.inl.h ../../src/Resources/Core/RsrcPtr.h \
  2945. ../../src/Resources/ShaderProg.h ../../extern/include/GL/glew.h \
  2946. ../../src/Util/CharPtrHashMap.h ../../src/Physics/Physics.h \
  2947. ../../extern/include/bullet/btBulletCollisionCommon.h \
  2948. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  2949. ../../extern/include/bullet/LinearMath/btVector3.h \
  2950. ../../extern/include/bullet/LinearMath/btScalar.h \
  2951. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2952. ../../extern/include/bullet/LinearMath/btScalar.h \
  2953. ../../extern/include/bullet/LinearMath/btTransform.h \
  2954. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2955. ../../extern/include/bullet/LinearMath/btVector3.h \
  2956. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  2957. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  2958. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2959. ../../extern/include/bullet/LinearMath/btMotionState.h \
  2960. ../../extern/include/bullet/LinearMath/btTransform.h \
  2961. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2962. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  2963. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  2964. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  2965. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  2966. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  2967. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  2968. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  2969. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  2970. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  2971. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2972. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  2973. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  2974. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  2975. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  2976. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  2977. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  2978. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2979. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  2980. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  2981. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  2982. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  2983. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  2984. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  2985. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  2986. ../../extern/include/bullet/LinearMath/btMinMax.h \
  2987. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  2988. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  2989. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  2990. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  2991. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  2992. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  2993. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  2994. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  2995. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  2996. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  2997. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  2998. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  2999. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  3000. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  3001. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3002. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  3003. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  3004. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  3005. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3006. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3007. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3008. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  3009. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3010. ../../src/Misc/memory.h \
  3011. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3012. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3013. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  3014. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  3015. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  3016. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  3017. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  3018. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  3019. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  3020. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  3021. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3022. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  3023. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  3024. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3025. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  3026. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3027. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  3028. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3029. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  3030. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  3031. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3032. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3033. ../../extern/include/bullet/LinearMath/btTransform.h \
  3034. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  3035. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3036. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  3037. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3038. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3039. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  3040. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3041. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3042. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  3043. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3044. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  3045. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  3046. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3047. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  3048. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3049. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3050. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  3051. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  3052. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3053. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3054. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  3055. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  3056. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  3057. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  3058. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3059. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  3060. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3061. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3062. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  3063. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  3064. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3065. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  3066. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  3067. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  3068. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3069. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  3070. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3071. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  3072. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  3073. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  3074. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3075. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  3076. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3077. ../../src/Scene//SkelNode.h ../../src/Scene//SceneNode.h \
  3078. ../../src/Util/Vec.h ../../src/Scene/Controllers/SkelAnimCtrl.h \
  3079. ../../src/Scene/Controllers/Controller.h ../../src/Resources/Skeleton.h \
  3080. ../../src/Scene//Camera.h ../../src/Misc/collision.h \
  3081. ../../src/Scene//MeshNode.h ../../src/Resources/Material.h \
  3082. ../../src/Resources/ShaderProg.h ../../src/Resources/Texture.h \
  3083. ../../src/Resources/Mesh.h ../../src/Renderer/BufferObjects/Vbo.h \
  3084. ../../src/Renderer/BufferObjects/BufferObject.h \
  3085. ../../src/Scene/Controllers/MeshSkelNodeCtrl.h ../../src/Scene//Light.h \
  3086. ../../src/Resources/LightProps.h \
  3087. ../../src/Scene/Controllers/Controller.h \
  3088. ../../src/Scene//ParticleEmitter.h ../../src/Scene//GhostNode.h \
  3089. ../../src/Resources/ParticleEmitterProps.h
  3090. @echo Compiling ../../src/Scene//Scene.cpp...
  3091. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene//Scene.cpp -o Scene.o
  3092. Ui.o: ../../src/Ui//Ui.cpp ../../src/Ui//Ui.h ../../src/Core/Common.h \
  3093. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h \
  3094. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3095. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  3096. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  3097. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3098. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3099. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3100. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3101. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3102. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3103. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3104. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3105. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  3106. ../../extern/include/GL/glew.h ../../src/Resources/Texture.h \
  3107. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  3108. ../../src/Util/Vec.h ../../src/Resources/ShaderProg.h \
  3109. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  3110. ../../src/Renderer/BufferObjects/BufferObject.h \
  3111. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  3112. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingStage.h \
  3113. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  3114. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  3115. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  3116. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h ../../src/Core/App.h \
  3117. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  3118. ../../extern/include/SDL/SDL_stdinc.h \
  3119. ../../extern/include/SDL/SDL_config.h \
  3120. ../../extern/include/SDL/SDL_platform.h \
  3121. ../../extern/include/SDL/begin_code.h \
  3122. ../../extern/include/SDL/close_code.h \
  3123. ../../extern/include/SDL/SDL_atomic.h \
  3124. ../../extern/include/SDL/SDL_audio.h \
  3125. ../../extern/include/SDL/SDL_error.h \
  3126. ../../extern/include/SDL/SDL_endian.h \
  3127. ../../extern/include/SDL/SDL_mutex.h \
  3128. ../../extern/include/SDL/SDL_thread.h \
  3129. ../../extern/include/SDL/SDL_rwops.h \
  3130. ../../extern/include/SDL/SDL_clipboard.h \
  3131. ../../extern/include/SDL/SDL_cpuinfo.h \
  3132. ../../extern/include/SDL/SDL_events.h \
  3133. ../../extern/include/SDL/SDL_video.h \
  3134. ../../extern/include/SDL/SDL_pixels.h \
  3135. ../../extern/include/SDL/SDL_rect.h \
  3136. ../../extern/include/SDL/SDL_surface.h \
  3137. ../../extern/include/SDL/SDL_keyboard.h \
  3138. ../../extern/include/SDL/SDL_keysym.h \
  3139. ../../extern/include/SDL/SDL_scancode.h \
  3140. ../../extern/include/SDL/SDL_mouse.h \
  3141. ../../extern/include/SDL/SDL_joystick.h \
  3142. ../../extern/include/SDL/SDL_quit.h \
  3143. ../../extern/include/SDL/SDL_loadso.h \
  3144. ../../extern/include/SDL/SDL_power.h \
  3145. ../../extern/include/SDL/SDL_timer.h \
  3146. ../../extern/include/SDL/SDL_version.h \
  3147. ../../extern/include/SDL/SDL_revision.h \
  3148. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h
  3149. @echo Compiling ../../src/Ui//Ui.cpp...
  3150. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Ui//Ui.cpp -o Ui.o
  3151. ShaderProg.o: ../../src/Resources//ShaderProg.cpp \
  3152. ../../src/Resources//ShaderProg.h ../../extern/include/GL/glew.h \
  3153. ../../src/Core/Common.h ../../src/Resources/Core/Resource.h \
  3154. ../../src/Util/Util.h ../../src/Util/Vec.h ../../src/Math/Math.h \
  3155. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  3156. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  3157. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3158. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3159. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3160. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3161. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3162. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3163. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3164. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3165. ../../src/Math/Transform.inl.h ../../src/Util/CharPtrHashMap.h \
  3166. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  3167. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  3168. ../../src/Renderer/BufferObjects/Vbo.h \
  3169. ../../src/Renderer/BufferObjects/BufferObject.h \
  3170. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  3171. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingStage.h \
  3172. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  3173. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  3174. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  3175. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h \
  3176. ../../src/Resources/Helpers/ShaderPrePreprocessor.h ../../src/Util/Vec.h \
  3177. ../../src/Resources//Texture.h ../../src/Core/App.h \
  3178. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  3179. ../../extern/include/SDL/SDL_stdinc.h \
  3180. ../../extern/include/SDL/SDL_config.h \
  3181. ../../extern/include/SDL/SDL_platform.h \
  3182. ../../extern/include/SDL/begin_code.h \
  3183. ../../extern/include/SDL/close_code.h \
  3184. ../../extern/include/SDL/SDL_atomic.h \
  3185. ../../extern/include/SDL/SDL_audio.h \
  3186. ../../extern/include/SDL/SDL_error.h \
  3187. ../../extern/include/SDL/SDL_endian.h \
  3188. ../../extern/include/SDL/SDL_mutex.h \
  3189. ../../extern/include/SDL/SDL_thread.h \
  3190. ../../extern/include/SDL/SDL_rwops.h \
  3191. ../../extern/include/SDL/SDL_clipboard.h \
  3192. ../../extern/include/SDL/SDL_cpuinfo.h \
  3193. ../../extern/include/SDL/SDL_events.h \
  3194. ../../extern/include/SDL/SDL_video.h \
  3195. ../../extern/include/SDL/SDL_pixels.h \
  3196. ../../extern/include/SDL/SDL_rect.h \
  3197. ../../extern/include/SDL/SDL_surface.h \
  3198. ../../extern/include/SDL/SDL_keyboard.h \
  3199. ../../extern/include/SDL/SDL_keysym.h \
  3200. ../../extern/include/SDL/SDL_scancode.h \
  3201. ../../extern/include/SDL/SDL_mouse.h \
  3202. ../../extern/include/SDL/SDL_joystick.h \
  3203. ../../extern/include/SDL/SDL_quit.h \
  3204. ../../extern/include/SDL/SDL_loadso.h \
  3205. ../../extern/include/SDL/SDL_power.h \
  3206. ../../extern/include/SDL/SDL_timer.h \
  3207. ../../extern/include/SDL/SDL_version.h \
  3208. ../../extern/include/SDL/SDL_revision.h \
  3209. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h
  3210. @echo Compiling ../../src/Resources//ShaderProg.cpp...
  3211. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//ShaderProg.cpp -o ShaderProg.o
  3212. Material.o: ../../src/Resources//Material.cpp \
  3213. ../../src/Resources//Material.h ../../src/Core/Common.h \
  3214. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3215. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  3216. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  3217. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3218. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3219. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3220. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3221. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3222. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3223. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3224. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3225. ../../src/Math/Transform.inl.h ../../src/Resources/Core/Resource.h \
  3226. ../../src/Util/Util.h ../../src/Util/Vec.h \
  3227. ../../src/Resources//ShaderProg.h ../../extern/include/GL/glew.h \
  3228. ../../src/Util/CharPtrHashMap.h ../../src/Resources//Texture.h \
  3229. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Tokenizer/Scanner.h \
  3230. ../../src/Util/Tokenizer/Parser.h ../../src/Util/Tokenizer/Scanner.h \
  3231. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  3232. ../../extern/include/SDL/SDL_main.h \
  3233. ../../extern/include/SDL/SDL_stdinc.h \
  3234. ../../extern/include/SDL/SDL_config.h \
  3235. ../../extern/include/SDL/SDL_platform.h \
  3236. ../../extern/include/SDL/begin_code.h \
  3237. ../../extern/include/SDL/close_code.h \
  3238. ../../extern/include/SDL/SDL_atomic.h \
  3239. ../../extern/include/SDL/SDL_audio.h \
  3240. ../../extern/include/SDL/SDL_error.h \
  3241. ../../extern/include/SDL/SDL_endian.h \
  3242. ../../extern/include/SDL/SDL_mutex.h \
  3243. ../../extern/include/SDL/SDL_thread.h \
  3244. ../../extern/include/SDL/SDL_rwops.h \
  3245. ../../extern/include/SDL/SDL_clipboard.h \
  3246. ../../extern/include/SDL/SDL_cpuinfo.h \
  3247. ../../extern/include/SDL/SDL_events.h \
  3248. ../../extern/include/SDL/SDL_video.h \
  3249. ../../extern/include/SDL/SDL_pixels.h \
  3250. ../../extern/include/SDL/SDL_rect.h \
  3251. ../../extern/include/SDL/SDL_surface.h \
  3252. ../../extern/include/SDL/SDL_keyboard.h \
  3253. ../../extern/include/SDL/SDL_keysym.h \
  3254. ../../extern/include/SDL/SDL_scancode.h \
  3255. ../../extern/include/SDL/SDL_mouse.h \
  3256. ../../extern/include/SDL/SDL_joystick.h \
  3257. ../../extern/include/SDL/SDL_quit.h \
  3258. ../../extern/include/SDL/SDL_loadso.h \
  3259. ../../extern/include/SDL/SDL_power.h \
  3260. ../../extern/include/SDL/SDL_timer.h \
  3261. ../../extern/include/SDL/SDL_version.h \
  3262. ../../extern/include/SDL/SDL_revision.h \
  3263. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  3264. ../../src/Util/Object.h ../../src/Renderer/MainRenderer.h \
  3265. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  3266. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  3267. ../../src/Renderer/BufferObjects/Vbo.h \
  3268. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Renderer/Ms.h \
  3269. ../../src/Renderer/RenderingStage.h ../../src/Renderer/Ez.h \
  3270. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  3271. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  3272. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  3273. ../../src/Renderer/Dbg.h
  3274. @echo Compiling ../../src/Resources//Material.cpp...
  3275. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Material.cpp -o Material.o
  3276. Texture.o: ../../src/Resources//Texture.cpp \
  3277. ../../extern/include/GL/glew.h ../../src/Resources//Texture.h \
  3278. ../../src/Core/Common.h ../../src/Resources/Core/Resource.h \
  3279. ../../src/Util/Util.h ../../src/Util/Vec.h ../../src/Renderer/Renderer.h \
  3280. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3281. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  3282. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  3283. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3284. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3285. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3286. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3287. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3288. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3289. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3290. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3291. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  3292. ../../src/Resources/Texture.h ../../src/Resources/ShaderProg.h \
  3293. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  3294. ../../src/Renderer/BufferObjects/BufferObject.h \
  3295. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  3296. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingStage.h \
  3297. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  3298. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  3299. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  3300. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h \
  3301. ../../src/Resources/Helpers/Image.h ../../src/Util/Vec.h
  3302. @echo Compiling ../../src/Resources//Texture.cpp...
  3303. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Texture.cpp -o Texture.o
  3304. SkelAnim.o: ../../src/Resources//SkelAnim.cpp \
  3305. ../../src/Resources//SkelAnim.h ../../src/Core/Common.h \
  3306. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  3307. ../../src/Util/Vec.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3308. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  3309. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  3310. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3311. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3312. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3313. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3314. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3315. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3316. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3317. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3318. ../../src/Math/Transform.inl.h ../../src/Util/Tokenizer/Scanner.h \
  3319. ../../src/Util/Tokenizer/Parser.h ../../src/Util/Tokenizer/Scanner.h
  3320. @echo Compiling ../../src/Resources//SkelAnim.cpp...
  3321. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//SkelAnim.cpp -o SkelAnim.o
  3322. Extension.o: ../../src/Resources//Extension.cpp \
  3323. ../../src/Resources//Extension.h ../../src/Core/Common.h \
  3324. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  3325. ../../src/Util/Vec.h
  3326. @echo Compiling ../../src/Resources//Extension.cpp...
  3327. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Extension.cpp -o Extension.o
  3328. Skeleton.o: ../../src/Resources//Skeleton.cpp \
  3329. ../../src/Resources//Skeleton.h ../../src/Core/Common.h \
  3330. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3331. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  3332. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  3333. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3334. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3335. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3336. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3337. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3338. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3339. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3340. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3341. ../../src/Math/Transform.inl.h ../../src/Resources/Core/Resource.h \
  3342. ../../src/Util/Util.h ../../src/Util/Vec.h \
  3343. ../../src/Util/Tokenizer/Scanner.h ../../src/Util/Tokenizer/Parser.h \
  3344. ../../src/Util/Tokenizer/Scanner.h
  3345. @echo Compiling ../../src/Resources//Skeleton.cpp...
  3346. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Skeleton.cpp -o Skeleton.o
  3347. Script.o: ../../src/Resources//Script.cpp ../../src/Resources//Script.h \
  3348. ../../src/Core/Common.h ../../src/Resources/Core/Resource.h \
  3349. ../../src/Util/Util.h ../../src/Util/Vec.h
  3350. @echo Compiling ../../src/Resources//Script.cpp...
  3351. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Script.cpp -o Script.o
  3352. LightProps.o: ../../src/Resources//LightProps.cpp \
  3353. ../../extern/include/GL/glew.h ../../src/Resources//LightProps.h \
  3354. ../../src/Core/Common.h ../../src/Resources/Core/Resource.h \
  3355. ../../src/Util/Util.h ../../src/Util/Vec.h ../../src/Math/Math.h \
  3356. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  3357. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  3358. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3359. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3360. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3361. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3362. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3363. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3364. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3365. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3366. ../../src/Math/Transform.inl.h ../../src/Resources/Core/RsrcPtr.h \
  3367. ../../src/Resources//Texture.h ../../src/Util/Tokenizer/Parser.h \
  3368. ../../src/Util/Tokenizer/Scanner.h
  3369. @echo Compiling ../../src/Resources//LightProps.cpp...
  3370. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//LightProps.cpp -o LightProps.o
  3371. Mesh.o: ../../src/Resources//Mesh.cpp ../../src/Resources//Mesh.h \
  3372. ../../src/Core/Common.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3373. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  3374. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  3375. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3376. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3377. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3378. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3379. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3380. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3381. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3382. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3383. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Vbo.h \
  3384. ../../src/Renderer/BufferObjects/BufferObject.h \
  3385. ../../extern/include/GL/glew.h ../../src/Resources/Core/Resource.h \
  3386. ../../src/Util/Util.h ../../src/Util/Vec.h ../../src/Misc/collision.h \
  3387. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Renderer.h \
  3388. ../../src/Renderer/BufferObjects/Fbo.h ../../src/Resources/Texture.h \
  3389. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  3390. ../../src/Util/Object.h ../../src/Renderer/Ms.h \
  3391. ../../src/Renderer/RenderingStage.h ../../src/Renderer/Ez.h \
  3392. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  3393. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  3394. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  3395. ../../src/Renderer/Dbg.h ../../src/Util/Tokenizer/Scanner.h \
  3396. ../../src/Util/Tokenizer/Parser.h ../../src/Util/Tokenizer/Scanner.h \
  3397. ../../src/Resources//Material.h ../../src/Resources//ShaderProg.h \
  3398. ../../src/Resources//Texture.h
  3399. @echo Compiling ../../src/Resources//Mesh.cpp...
  3400. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//Mesh.cpp -o Mesh.o
  3401. ParticleEmitterProps.o: ../../src/Resources//ParticleEmitterProps.cpp \
  3402. ../../src/Resources//ParticleEmitterProps.h ../../src/Core/Common.h \
  3403. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3404. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  3405. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  3406. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3407. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3408. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3409. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3410. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3411. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3412. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3413. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3414. ../../src/Math/Transform.inl.h ../../src/Resources/Core/Resource.h \
  3415. ../../src/Util/Util.h ../../src/Util/Vec.h
  3416. @echo Compiling ../../src/Resources//ParticleEmitterProps.cpp...
  3417. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources//ParticleEmitterProps.cpp -o ParticleEmitterProps.o
  3418. Input.o: ../../src/Util//Input.cpp ../../extern/include/SDL/SDL.h \
  3419. ../../extern/include/SDL/SDL_main.h \
  3420. ../../extern/include/SDL/SDL_stdinc.h \
  3421. ../../extern/include/SDL/SDL_config.h \
  3422. ../../extern/include/SDL/SDL_platform.h \
  3423. ../../extern/include/SDL/begin_code.h \
  3424. ../../extern/include/SDL/close_code.h \
  3425. ../../extern/include/SDL/SDL_atomic.h \
  3426. ../../extern/include/SDL/SDL_audio.h \
  3427. ../../extern/include/SDL/SDL_error.h \
  3428. ../../extern/include/SDL/SDL_endian.h \
  3429. ../../extern/include/SDL/SDL_mutex.h \
  3430. ../../extern/include/SDL/SDL_thread.h \
  3431. ../../extern/include/SDL/SDL_rwops.h \
  3432. ../../extern/include/SDL/SDL_clipboard.h \
  3433. ../../extern/include/SDL/SDL_cpuinfo.h \
  3434. ../../extern/include/SDL/SDL_events.h \
  3435. ../../extern/include/SDL/SDL_video.h \
  3436. ../../extern/include/SDL/SDL_pixels.h \
  3437. ../../extern/include/SDL/SDL_rect.h \
  3438. ../../extern/include/SDL/SDL_surface.h \
  3439. ../../extern/include/SDL/SDL_keyboard.h \
  3440. ../../extern/include/SDL/SDL_keysym.h \
  3441. ../../extern/include/SDL/SDL_scancode.h \
  3442. ../../extern/include/SDL/SDL_mouse.h \
  3443. ../../extern/include/SDL/SDL_joystick.h \
  3444. ../../extern/include/SDL/SDL_quit.h \
  3445. ../../extern/include/SDL/SDL_loadso.h \
  3446. ../../extern/include/SDL/SDL_power.h \
  3447. ../../extern/include/SDL/SDL_timer.h \
  3448. ../../extern/include/SDL/SDL_version.h \
  3449. ../../extern/include/SDL/SDL_revision.h \
  3450. ../../extern/include/SDL/SDL_compat.h ../../src/Util//Input.h \
  3451. ../../extern/include/SDL/SDL_scancode.h ../../src/Core/Common.h \
  3452. ../../src/Util//Vec.h ../../src/Core/App.h ../../src/Core/Common.h \
  3453. ../../src/Util/Object.h ../../src/Util/Vec.h ../../src/Math/Math.h \
  3454. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  3455. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  3456. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3457. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3458. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3459. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3460. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3461. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3462. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3463. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3464. ../../src/Math/Transform.inl.h ../../src/Renderer/Renderer.h \
  3465. ../../src/Renderer/BufferObjects/Fbo.h ../../extern/include/GL/glew.h \
  3466. ../../src/Resources/Texture.h ../../src/Resources/Core/Resource.h \
  3467. ../../src/Util/Util.h ../../src/Resources/ShaderProg.h \
  3468. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  3469. ../../src/Renderer/BufferObjects/BufferObject.h \
  3470. ../../src/Resources/Core/RsrcPtr.h ../../src/Renderer/Ms.h \
  3471. ../../src/Renderer/RenderingStage.h ../../src/Renderer/Ez.h \
  3472. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  3473. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  3474. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  3475. ../../src/Renderer/Dbg.h
  3476. @echo Compiling ../../src/Util//Input.cpp...
  3477. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util//Input.cpp -o Input.o
  3478. Util.o: ../../src/Util//Util.cpp ../../src/Util//Util.h \
  3479. ../../src/Core/Common.h ../../src/Util//Vec.h
  3480. @echo Compiling ../../src/Util//Util.cpp...
  3481. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Util//Util.cpp -o Util.o
  3482. Controller.o: ../../src/Scene/Controllers//Controller.cpp \
  3483. ../../src/Scene/Controllers//Controller.h ../../src/Core/Common.h \
  3484. ../../src/Scene/Scene.h ../../src/Util/Object.h ../../src/Util/Vec.h \
  3485. ../../src/Misc/skybox.h ../../src/Resources/Texture.h \
  3486. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  3487. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3488. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  3489. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  3490. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3491. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3492. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3493. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3494. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3495. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3496. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3497. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3498. ../../src/Math/Transform.inl.h ../../src/Resources/Core/RsrcPtr.h \
  3499. ../../src/Resources/ShaderProg.h ../../extern/include/GL/glew.h \
  3500. ../../src/Util/CharPtrHashMap.h ../../src/Physics/Physics.h \
  3501. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3502. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3503. ../../extern/include/bullet/LinearMath/btVector3.h \
  3504. ../../extern/include/bullet/LinearMath/btScalar.h \
  3505. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3506. ../../extern/include/bullet/LinearMath/btScalar.h \
  3507. ../../extern/include/bullet/LinearMath/btTransform.h \
  3508. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3509. ../../extern/include/bullet/LinearMath/btVector3.h \
  3510. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3511. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  3512. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3513. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3514. ../../extern/include/bullet/LinearMath/btTransform.h \
  3515. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3516. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3517. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3518. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3519. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  3520. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  3521. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3522. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  3523. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  3524. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  3525. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3526. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3527. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3528. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  3529. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3530. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  3531. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3532. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3533. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  3534. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3535. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  3536. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  3537. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  3538. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  3539. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  3540. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3541. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  3542. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  3543. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  3544. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3545. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  3546. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  3547. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  3548. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  3549. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  3550. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  3551. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3552. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  3553. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  3554. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  3555. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3556. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  3557. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  3558. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  3559. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3560. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3561. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3562. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  3563. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3564. ../../src/Misc/memory.h \
  3565. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3566. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3567. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  3568. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  3569. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  3570. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  3571. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  3572. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  3573. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  3574. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  3575. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3576. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  3577. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  3578. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3579. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  3580. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3581. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  3582. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3583. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  3584. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  3585. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3586. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3587. ../../extern/include/bullet/LinearMath/btTransform.h \
  3588. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  3589. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3590. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  3591. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3592. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3593. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  3594. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3595. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3596. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  3597. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3598. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  3599. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  3600. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3601. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  3602. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3603. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3604. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  3605. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  3606. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3607. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3608. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  3609. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  3610. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  3611. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  3612. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3613. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  3614. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3615. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3616. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  3617. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  3618. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3619. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  3620. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  3621. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  3622. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3623. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  3624. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3625. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  3626. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  3627. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  3628. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3629. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  3630. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3631. ../../src/Core/App.h ../../extern/include/SDL/SDL.h \
  3632. ../../extern/include/SDL/SDL_main.h \
  3633. ../../extern/include/SDL/SDL_stdinc.h \
  3634. ../../extern/include/SDL/SDL_config.h \
  3635. ../../extern/include/SDL/SDL_platform.h \
  3636. ../../extern/include/SDL/begin_code.h \
  3637. ../../extern/include/SDL/close_code.h \
  3638. ../../extern/include/SDL/SDL_atomic.h \
  3639. ../../extern/include/SDL/SDL_audio.h \
  3640. ../../extern/include/SDL/SDL_error.h \
  3641. ../../extern/include/SDL/SDL_endian.h \
  3642. ../../extern/include/SDL/SDL_mutex.h \
  3643. ../../extern/include/SDL/SDL_thread.h \
  3644. ../../extern/include/SDL/SDL_rwops.h \
  3645. ../../extern/include/SDL/SDL_clipboard.h \
  3646. ../../extern/include/SDL/SDL_cpuinfo.h \
  3647. ../../extern/include/SDL/SDL_events.h \
  3648. ../../extern/include/SDL/SDL_video.h \
  3649. ../../extern/include/SDL/SDL_pixels.h \
  3650. ../../extern/include/SDL/SDL_rect.h \
  3651. ../../extern/include/SDL/SDL_surface.h \
  3652. ../../extern/include/SDL/SDL_keyboard.h \
  3653. ../../extern/include/SDL/SDL_keysym.h \
  3654. ../../extern/include/SDL/SDL_scancode.h \
  3655. ../../extern/include/SDL/SDL_mouse.h \
  3656. ../../extern/include/SDL/SDL_joystick.h \
  3657. ../../extern/include/SDL/SDL_quit.h \
  3658. ../../extern/include/SDL/SDL_loadso.h \
  3659. ../../extern/include/SDL/SDL_power.h \
  3660. ../../extern/include/SDL/SDL_timer.h \
  3661. ../../extern/include/SDL/SDL_version.h \
  3662. ../../extern/include/SDL/SDL_revision.h \
  3663. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h
  3664. @echo Compiling ../../src/Scene/Controllers//Controller.cpp...
  3665. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/Controllers//Controller.cpp -o Controller.o
  3666. SkelAnimCtrl.o: ../../src/Scene/Controllers//SkelAnimCtrl.cpp \
  3667. ../../src/Scene/Controllers//SkelAnimCtrl.h ../../src/Core/Common.h \
  3668. ../../src/Util/Vec.h ../../src/Scene/Controllers//Controller.h \
  3669. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  3670. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  3671. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  3672. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3673. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3674. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3675. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3676. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3677. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3678. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3679. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3680. ../../src/Math/Transform.inl.h ../../src/Resources/Core/RsrcPtr.h \
  3681. ../../src/Resources/SkelAnim.h ../../src/Resources/Core/Resource.h \
  3682. ../../src/Util/Util.h ../../src/Util/Vec.h ../../src/Scene/SkelNode.h \
  3683. ../../src/Scene/SceneNode.h ../../src/Scene/Controllers/SkelAnimCtrl.h \
  3684. ../../src/Resources/Skeleton.h ../../src/Core/App.h \
  3685. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  3686. ../../extern/include/SDL/SDL_stdinc.h \
  3687. ../../extern/include/SDL/SDL_config.h \
  3688. ../../extern/include/SDL/SDL_platform.h \
  3689. ../../extern/include/SDL/begin_code.h \
  3690. ../../extern/include/SDL/close_code.h \
  3691. ../../extern/include/SDL/SDL_atomic.h \
  3692. ../../extern/include/SDL/SDL_audio.h \
  3693. ../../extern/include/SDL/SDL_error.h \
  3694. ../../extern/include/SDL/SDL_endian.h \
  3695. ../../extern/include/SDL/SDL_mutex.h \
  3696. ../../extern/include/SDL/SDL_thread.h \
  3697. ../../extern/include/SDL/SDL_rwops.h \
  3698. ../../extern/include/SDL/SDL_clipboard.h \
  3699. ../../extern/include/SDL/SDL_cpuinfo.h \
  3700. ../../extern/include/SDL/SDL_events.h \
  3701. ../../extern/include/SDL/SDL_video.h \
  3702. ../../extern/include/SDL/SDL_pixels.h \
  3703. ../../extern/include/SDL/SDL_rect.h \
  3704. ../../extern/include/SDL/SDL_surface.h \
  3705. ../../extern/include/SDL/SDL_keyboard.h \
  3706. ../../extern/include/SDL/SDL_keysym.h \
  3707. ../../extern/include/SDL/SDL_scancode.h \
  3708. ../../extern/include/SDL/SDL_mouse.h \
  3709. ../../extern/include/SDL/SDL_joystick.h \
  3710. ../../extern/include/SDL/SDL_quit.h \
  3711. ../../extern/include/SDL/SDL_loadso.h \
  3712. ../../extern/include/SDL/SDL_power.h \
  3713. ../../extern/include/SDL/SDL_timer.h \
  3714. ../../extern/include/SDL/SDL_version.h \
  3715. ../../extern/include/SDL/SDL_revision.h \
  3716. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  3717. ../../src/Util/Object.h ../../src/Renderer/MainRenderer.h \
  3718. ../../src/Renderer/Renderer.h ../../src/Renderer/BufferObjects/Fbo.h \
  3719. ../../extern/include/GL/glew.h ../../src/Resources/Texture.h \
  3720. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  3721. ../../src/Renderer/BufferObjects/Vbo.h \
  3722. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Renderer/Ms.h \
  3723. ../../src/Renderer/RenderingStage.h ../../src/Renderer/Ez.h \
  3724. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  3725. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  3726. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  3727. ../../src/Renderer/Dbg.h
  3728. @echo Compiling ../../src/Scene/Controllers//SkelAnimCtrl.cpp...
  3729. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scene/Controllers//SkelAnimCtrl.cpp -o SkelAnimCtrl.o
  3730. Physics.o: ../../src/Physics//Physics.cpp \
  3731. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btGhostObject.h \
  3732. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3733. ../../extern/include/bullet/LinearMath/btTransform.h \
  3734. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3735. ../../extern/include/bullet/LinearMath/btVector3.h \
  3736. ../../extern/include/bullet/LinearMath/btScalar.h \
  3737. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3738. ../../extern/include/bullet/LinearMath/btScalar.h \
  3739. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3740. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  3741. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3742. ../../extern/include/bullet/LinearMath/btTransform.h \
  3743. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3744. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3745. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3746. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  3747. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3748. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  3749. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3750. ../../extern/include/bullet/LinearMath/btVector3.h \
  3751. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  3752. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3753. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3754. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  3755. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  3756. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3757. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  3758. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  3759. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  3760. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3761. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3762. ../../src/Physics//Physics.h \
  3763. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3764. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3765. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3766. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3767. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  3768. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3769. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  3770. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  3771. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  3772. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  3773. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  3774. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3775. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  3776. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  3777. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  3778. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3779. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  3780. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  3781. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  3782. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  3783. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  3784. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  3785. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3786. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  3787. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  3788. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  3789. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3790. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  3791. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  3792. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  3793. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3794. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3795. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3796. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  3797. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3798. ../../src/Misc/memory.h ../../src/Core/Common.h \
  3799. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3800. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3801. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  3802. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  3803. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  3804. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  3805. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  3806. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  3807. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  3808. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  3809. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3810. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  3811. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  3812. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3813. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  3814. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3815. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  3816. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3817. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  3818. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  3819. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3820. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3821. ../../extern/include/bullet/LinearMath/btTransform.h \
  3822. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  3823. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3824. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  3825. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3826. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3827. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  3828. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3829. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3830. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  3831. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3832. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  3833. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  3834. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3835. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  3836. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3837. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3838. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  3839. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  3840. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3841. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3842. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  3843. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  3844. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  3845. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  3846. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3847. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  3848. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3849. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3850. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  3851. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  3852. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3853. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  3854. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  3855. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  3856. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3857. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  3858. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3859. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  3860. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  3861. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  3862. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3863. ../../src/Util/Object.h ../../src/Util/Vec.h \
  3864. ../../src/Physics//BtAndAnkiConvertors.h ../../src/Math/Math.h \
  3865. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  3866. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  3867. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  3868. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  3869. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  3870. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  3871. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  3872. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  3873. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  3874. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  3875. ../../src/Math/Transform.inl.h ../../src/Physics//DebugDrawer.h \
  3876. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3877. ../../src/Physics//PhyCharacter.h ../../src/Physics//MotionState.h \
  3878. ../../src/Scene/SceneNode.h ../../src/Util/Vec.h
  3879. @echo Compiling ../../src/Physics//Physics.cpp...
  3880. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Physics//Physics.cpp -o Physics.o
  3881. RigidBody.o: ../../src/Physics//RigidBody.cpp \
  3882. ../../src/Physics//RigidBody.h \
  3883. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  3884. ../../extern/include/bullet/btBulletCollisionCommon.h \
  3885. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3886. ../../extern/include/bullet/LinearMath/btVector3.h \
  3887. ../../extern/include/bullet/LinearMath/btScalar.h \
  3888. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3889. ../../extern/include/bullet/LinearMath/btScalar.h \
  3890. ../../extern/include/bullet/LinearMath/btTransform.h \
  3891. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3892. ../../extern/include/bullet/LinearMath/btVector3.h \
  3893. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3894. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  3895. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3896. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3897. ../../extern/include/bullet/LinearMath/btTransform.h \
  3898. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3899. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3900. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  3901. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3902. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  3903. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  3904. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  3905. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  3906. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  3907. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  3908. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3909. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3910. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3911. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  3912. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  3913. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  3914. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3915. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3916. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  3917. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  3918. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  3919. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  3920. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  3921. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  3922. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  3923. ../../extern/include/bullet/LinearMath/btMinMax.h \
  3924. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  3925. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  3926. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  3927. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  3928. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  3929. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  3930. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  3931. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  3932. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  3933. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  3934. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3935. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  3936. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  3937. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  3938. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3939. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  3940. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  3941. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  3942. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3943. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  3944. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3945. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  3946. ../../extern/include/bullet/LinearMath/btHashMap.h \
  3947. ../../src/Misc/memory.h ../../src/Core/Common.h \
  3948. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  3949. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  3950. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  3951. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  3952. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  3953. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  3954. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  3955. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  3956. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  3957. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  3958. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  3959. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  3960. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  3961. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  3962. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  3963. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  3964. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  3965. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3966. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  3967. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  3968. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  3969. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  3970. ../../extern/include/bullet/LinearMath/btTransform.h \
  3971. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  3972. ../../extern/include/bullet/LinearMath/btMotionState.h \
  3973. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  3974. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  3975. ../../extern/include/bullet/LinearMath/btSerializer.h \
  3976. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3977. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  3978. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  3979. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  3980. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  3981. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  3982. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  3983. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3984. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  3985. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  3986. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  3987. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  3988. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  3989. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  3990. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  3991. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  3992. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  3993. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3994. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  3995. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  3996. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  3997. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  3998. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  3999. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4000. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  4001. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  4002. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  4003. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4004. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  4005. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4006. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  4007. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  4008. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  4009. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4010. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4011. ../../src/Math/Math.h ../../src/Math/Vec2.h \
  4012. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  4013. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  4014. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4015. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4016. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4017. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4018. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4019. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4020. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4021. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4022. ../../src/Math/Transform.inl.h ../../src/Util/Object.h \
  4023. ../../src/Util/Vec.h ../../src/Physics//Physics.h \
  4024. ../../src/Physics//BtAndAnkiConvertors.h \
  4025. ../../src/Physics//DebugDrawer.h \
  4026. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4027. ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  4028. ../../src/Resources/Texture.h ../../src/Resources/Core/Resource.h \
  4029. ../../src/Util/Util.h ../../src/Resources/Core/RsrcPtr.h \
  4030. ../../src/Resources/ShaderProg.h ../../extern/include/GL/glew.h \
  4031. ../../src/Util/CharPtrHashMap.h ../../src/Physics/Physics.h \
  4032. ../../src/Physics//MotionState.h ../../src/Scene/SceneNode.h \
  4033. ../../src/Util/Vec.h
  4034. @echo Compiling ../../src/Physics//RigidBody.cpp...
  4035. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Physics//RigidBody.cpp -o RigidBody.o
  4036. PhyCharacter.o: ../../src/Physics//PhyCharacter.cpp \
  4037. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4038. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4039. ../../extern/include/bullet/LinearMath/btVector3.h \
  4040. ../../extern/include/bullet/LinearMath/btScalar.h \
  4041. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4042. ../../extern/include/bullet/LinearMath/btScalar.h \
  4043. ../../extern/include/bullet/LinearMath/btTransform.h \
  4044. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4045. ../../extern/include/bullet/LinearMath/btVector3.h \
  4046. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4047. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  4048. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4049. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4050. ../../extern/include/bullet/LinearMath/btTransform.h \
  4051. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4052. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4053. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4054. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4055. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  4056. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  4057. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4058. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  4059. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  4060. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  4061. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4062. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4063. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4064. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  4065. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4066. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  4067. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4068. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4069. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  4070. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4071. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  4072. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  4073. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  4074. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  4075. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  4076. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4077. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  4078. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  4079. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  4080. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4081. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  4082. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  4083. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  4084. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  4085. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  4086. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  4087. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4088. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  4089. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  4090. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  4091. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4092. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  4093. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  4094. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  4095. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4096. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4097. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4098. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  4099. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4100. ../../src/Misc/memory.h ../../src/Core/Common.h \
  4101. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4102. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4103. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  4104. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  4105. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  4106. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  4107. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  4108. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  4109. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  4110. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  4111. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4112. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  4113. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  4114. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4115. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  4116. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4117. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  4118. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4119. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  4120. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  4121. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4122. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4123. ../../extern/include/bullet/LinearMath/btTransform.h \
  4124. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  4125. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4126. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  4127. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4128. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4129. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  4130. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4131. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4132. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  4133. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4134. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  4135. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  4136. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4137. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  4138. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4139. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4140. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  4141. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  4142. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4143. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4144. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  4145. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  4146. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  4147. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  4148. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4149. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  4150. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4151. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4152. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  4153. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  4154. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4155. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  4156. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  4157. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  4158. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4159. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  4160. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4161. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  4162. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  4163. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  4164. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4165. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btGhostObject.h \
  4166. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  4167. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4168. ../../extern/include/bullet/BulletDynamics/Character/btKinematicCharacterController.h \
  4169. ../../extern/include/bullet/BulletDynamics/Character/btCharacterControllerInterface.h \
  4170. ../../src/Physics//PhyCharacter.h ../../src/Physics//Physics.h \
  4171. ../../src/Util/Object.h ../../src/Util/Vec.h \
  4172. ../../src/Physics//BtAndAnkiConvertors.h ../../src/Math/Math.h \
  4173. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  4174. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  4175. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4176. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4177. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4178. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4179. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4180. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4181. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4182. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4183. ../../src/Math/Transform.inl.h ../../src/Physics//DebugDrawer.h \
  4184. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4185. ../../src/Physics//MotionState.h ../../src/Scene/SceneNode.h \
  4186. ../../src/Util/Vec.h ../../src/Physics//RigidBody.h
  4187. @echo Compiling ../../src/Physics//PhyCharacter.cpp...
  4188. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Physics//PhyCharacter.cpp -o PhyCharacter.o
  4189. DebugDrawer.o: ../../src/Physics//DebugDrawer.cpp \
  4190. ../../src/Physics//DebugDrawer.h \
  4191. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4192. ../../extern/include/bullet/LinearMath/btVector3.h \
  4193. ../../extern/include/bullet/LinearMath/btScalar.h \
  4194. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4195. ../../extern/include/bullet/LinearMath/btScalar.h \
  4196. ../../extern/include/bullet/LinearMath/btTransform.h \
  4197. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4198. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4199. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  4200. ../../src/Core/Common.h ../../src/Renderer/MainRenderer.h \
  4201. ../../src/Renderer/Renderer.h ../../src/Math/Math.h \
  4202. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  4203. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  4204. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4205. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4206. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4207. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4208. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4209. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4210. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4211. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4212. ../../src/Math/Transform.inl.h ../../src/Renderer/BufferObjects/Fbo.h \
  4213. ../../extern/include/GL/glew.h ../../src/Resources/Texture.h \
  4214. ../../src/Resources/Core/Resource.h ../../src/Util/Util.h \
  4215. ../../src/Util/Vec.h ../../src/Resources/ShaderProg.h \
  4216. ../../src/Util/CharPtrHashMap.h ../../src/Renderer/BufferObjects/Vbo.h \
  4217. ../../src/Renderer/BufferObjects/BufferObject.h \
  4218. ../../src/Resources/Core/RsrcPtr.h ../../src/Util/Object.h \
  4219. ../../src/Renderer/Ms.h ../../src/Renderer/RenderingStage.h \
  4220. ../../src/Renderer/Ez.h ../../src/Renderer/Is.h ../../src/Renderer/Sm.h \
  4221. ../../src/Renderer/Smo.h ../../src/Renderer/Pps.h \
  4222. ../../src/Renderer/Hdr.h ../../src/Renderer/Ssao.h \
  4223. ../../src/Renderer/Bs.h ../../src/Renderer/Dbg.h ../../src/Core/App.h \
  4224. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  4225. ../../extern/include/SDL/SDL_stdinc.h \
  4226. ../../extern/include/SDL/SDL_config.h \
  4227. ../../extern/include/SDL/SDL_platform.h \
  4228. ../../extern/include/SDL/begin_code.h \
  4229. ../../extern/include/SDL/close_code.h \
  4230. ../../extern/include/SDL/SDL_atomic.h \
  4231. ../../extern/include/SDL/SDL_audio.h \
  4232. ../../extern/include/SDL/SDL_error.h \
  4233. ../../extern/include/SDL/SDL_endian.h \
  4234. ../../extern/include/SDL/SDL_mutex.h \
  4235. ../../extern/include/SDL/SDL_thread.h \
  4236. ../../extern/include/SDL/SDL_rwops.h \
  4237. ../../extern/include/SDL/SDL_clipboard.h \
  4238. ../../extern/include/SDL/SDL_cpuinfo.h \
  4239. ../../extern/include/SDL/SDL_events.h \
  4240. ../../extern/include/SDL/SDL_video.h \
  4241. ../../extern/include/SDL/SDL_pixels.h \
  4242. ../../extern/include/SDL/SDL_rect.h \
  4243. ../../extern/include/SDL/SDL_surface.h \
  4244. ../../extern/include/SDL/SDL_keyboard.h \
  4245. ../../extern/include/SDL/SDL_keysym.h \
  4246. ../../extern/include/SDL/SDL_scancode.h \
  4247. ../../extern/include/SDL/SDL_mouse.h \
  4248. ../../extern/include/SDL/SDL_joystick.h \
  4249. ../../extern/include/SDL/SDL_quit.h \
  4250. ../../extern/include/SDL/SDL_loadso.h \
  4251. ../../extern/include/SDL/SDL_power.h \
  4252. ../../extern/include/SDL/SDL_timer.h \
  4253. ../../extern/include/SDL/SDL_version.h \
  4254. ../../extern/include/SDL/SDL_revision.h \
  4255. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  4256. ../../src/Physics//BtAndAnkiConvertors.h \
  4257. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4258. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4259. ../../extern/include/bullet/LinearMath/btVector3.h \
  4260. ../../extern/include/bullet/LinearMath/btTransform.h \
  4261. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4262. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4263. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4264. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4265. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4266. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4267. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  4268. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  4269. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4270. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  4271. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  4272. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  4273. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4274. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4275. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4276. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  4277. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4278. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  4279. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4280. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4281. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  4282. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4283. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  4284. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  4285. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  4286. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  4287. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  4288. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4289. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  4290. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  4291. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  4292. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4293. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  4294. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  4295. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  4296. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  4297. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  4298. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  4299. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4300. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  4301. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  4302. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  4303. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4304. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  4305. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  4306. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  4307. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4308. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4309. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4310. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  4311. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4312. ../../src/Misc/memory.h \
  4313. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4314. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4315. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  4316. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  4317. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  4318. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  4319. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  4320. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  4321. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  4322. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  4323. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4324. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  4325. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  4326. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4327. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  4328. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4329. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  4330. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4331. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  4332. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  4333. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4334. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4335. ../../extern/include/bullet/LinearMath/btTransform.h \
  4336. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  4337. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4338. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  4339. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4340. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4341. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  4342. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4343. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4344. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  4345. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4346. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  4347. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  4348. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4349. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  4350. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4351. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4352. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  4353. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  4354. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4355. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4356. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  4357. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  4358. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  4359. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  4360. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4361. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  4362. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4363. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4364. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  4365. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  4366. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4367. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  4368. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  4369. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  4370. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4371. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  4372. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4373. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  4374. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  4375. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  4376. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h
  4377. @echo Compiling ../../src/Physics//DebugDrawer.cpp...
  4378. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Physics//DebugDrawer.cpp -o DebugDrawer.o
  4379. Image.o: ../../src/Resources/Helpers//Image.cpp \
  4380. ../../src/Resources/Helpers//Image.h ../../src/Core/Common.h \
  4381. ../../src/Util/Vec.h ../../src/Util/Util.h ../../src/Util/Vec.h
  4382. @echo Compiling ../../src/Resources/Helpers//Image.cpp...
  4383. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Helpers//Image.cpp -o Image.o
  4384. ShaderPrePreprocessor.o: \
  4385. ../../src/Resources/Helpers//ShaderPrePreprocessor.cpp \
  4386. ../../src/Resources/Helpers//ShaderPrePreprocessor.h \
  4387. ../../src/Core/Common.h ../../src/Util/Vec.h \
  4388. ../../src/Util/Tokenizer/Scanner.h ../../src/Util/Tokenizer/Parser.h \
  4389. ../../src/Util/Tokenizer/Scanner.h ../../src/Util/Util.h \
  4390. ../../src/Util/Vec.h
  4391. @echo Compiling ../../src/Resources/Helpers//ShaderPrePreprocessor.cpp...
  4392. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Helpers//ShaderPrePreprocessor.cpp -o ShaderPrePreprocessor.o
  4393. RsrcPtr.o: ../../src/Resources/Core//RsrcPtr.cpp \
  4394. ../../src/Resources/Core//RsrcPtr.h ../../src/Core/Common.h \
  4395. ../../src/Resources/Core//RsrcContainer.h ../../src/Util/Vec.h \
  4396. ../../src/Resources/Core//RsrcContainer.inl.h \
  4397. ../../src/Resources/Texture.h ../../src/Resources/Core/Resource.h \
  4398. ../../src/Util/Util.h ../../src/Util/Vec.h \
  4399. ../../src/Resources/Material.h ../../src/Math/Math.h \
  4400. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  4401. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  4402. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4403. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4404. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4405. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4406. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4407. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4408. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4409. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4410. ../../src/Math/Transform.inl.h ../../src/Resources/ShaderProg.h \
  4411. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  4412. ../../src/Resources/Texture.h ../../src/Resources/Core/RsrcPtr.h \
  4413. ../../src/Resources/ShaderProg.h ../../src/Resources/Mesh.h \
  4414. ../../src/Renderer/BufferObjects/Vbo.h \
  4415. ../../src/Renderer/BufferObjects/BufferObject.h \
  4416. ../../src/Misc/collision.h ../../src/Resources/Skeleton.h \
  4417. ../../src/Resources/SkelAnim.h ../../src/Resources/LightProps.h \
  4418. ../../src/Resources/ParticleEmitterProps.h ../../src/Resources/Script.h
  4419. @echo Compiling ../../src/Resources/Core//RsrcPtr.cpp...
  4420. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Core//RsrcPtr.cpp -o RsrcPtr.o
  4421. RsrcContainers.o: ../../src/Resources/Core//RsrcContainers.cpp \
  4422. ../../src/Resources/Core//RsrcContainer.h ../../src/Core/Common.h \
  4423. ../../src/Util/Vec.h ../../src/Resources/Core//RsrcContainer.inl.h \
  4424. ../../src/Resources/Texture.h ../../src/Resources/Core/Resource.h \
  4425. ../../src/Util/Util.h ../../src/Util/Vec.h \
  4426. ../../src/Resources/Material.h ../../src/Math/Math.h \
  4427. ../../src/Math/Vec2.h ../../src/Math/MathForwardDecls.h \
  4428. ../../src/Math/Vec2.inl.h ../../src/Math/MathDfltHeader.h \
  4429. ../../src/Math/Vec3.h ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4430. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4431. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4432. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4433. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4434. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4435. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4436. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4437. ../../src/Math/Transform.inl.h ../../src/Resources/ShaderProg.h \
  4438. ../../extern/include/GL/glew.h ../../src/Util/CharPtrHashMap.h \
  4439. ../../src/Resources/Texture.h ../../src/Resources/Core/RsrcPtr.h \
  4440. ../../src/Resources/ShaderProg.h ../../src/Resources/Mesh.h \
  4441. ../../src/Renderer/BufferObjects/Vbo.h \
  4442. ../../src/Renderer/BufferObjects/BufferObject.h \
  4443. ../../src/Misc/collision.h ../../src/Resources/Skeleton.h \
  4444. ../../src/Resources/SkelAnim.h ../../src/Resources/LightProps.h \
  4445. ../../src/Resources/ParticleEmitterProps.h ../../src/Resources/Script.h
  4446. @echo Compiling ../../src/Resources/Core//RsrcContainers.cpp...
  4447. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Resources/Core//RsrcContainers.cpp -o RsrcContainers.o
  4448. App.o: ../../src/Core//App.cpp ../../extern/include/GL/glew.h \
  4449. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  4450. ../../extern/include/SDL/SDL_stdinc.h \
  4451. ../../extern/include/SDL/SDL_config.h \
  4452. ../../extern/include/SDL/SDL_platform.h \
  4453. ../../extern/include/SDL/begin_code.h \
  4454. ../../extern/include/SDL/close_code.h \
  4455. ../../extern/include/SDL/SDL_atomic.h \
  4456. ../../extern/include/SDL/SDL_audio.h \
  4457. ../../extern/include/SDL/SDL_error.h \
  4458. ../../extern/include/SDL/SDL_endian.h \
  4459. ../../extern/include/SDL/SDL_mutex.h \
  4460. ../../extern/include/SDL/SDL_thread.h \
  4461. ../../extern/include/SDL/SDL_rwops.h \
  4462. ../../extern/include/SDL/SDL_clipboard.h \
  4463. ../../extern/include/SDL/SDL_cpuinfo.h \
  4464. ../../extern/include/SDL/SDL_events.h \
  4465. ../../extern/include/SDL/SDL_video.h \
  4466. ../../extern/include/SDL/SDL_pixels.h \
  4467. ../../extern/include/SDL/SDL_rect.h \
  4468. ../../extern/include/SDL/SDL_surface.h \
  4469. ../../extern/include/SDL/SDL_keyboard.h \
  4470. ../../extern/include/SDL/SDL_keysym.h \
  4471. ../../extern/include/SDL/SDL_scancode.h \
  4472. ../../extern/include/SDL/SDL_mouse.h \
  4473. ../../extern/include/SDL/SDL_joystick.h \
  4474. ../../extern/include/SDL/SDL_quit.h \
  4475. ../../extern/include/SDL/SDL_loadso.h \
  4476. ../../extern/include/SDL/SDL_power.h \
  4477. ../../extern/include/SDL/SDL_timer.h \
  4478. ../../extern/include/SDL/SDL_version.h \
  4479. ../../extern/include/SDL/SDL_revision.h \
  4480. ../../extern/include/SDL/SDL_compat.h ../../src/Core//App.h \
  4481. ../../src/Core//Common.h ../../src/Util/Object.h ../../src/Core/Common.h \
  4482. ../../src/Util/Vec.h ../../src/Scene/Scene.h ../../src/Misc/skybox.h \
  4483. ../../src/Resources/Texture.h ../../src/Resources/Core/Resource.h \
  4484. ../../src/Util/Util.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  4485. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  4486. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  4487. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4488. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4489. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4490. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4491. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4492. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4493. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4494. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4495. ../../src/Math/Transform.inl.h ../../src/Resources/Core/RsrcPtr.h \
  4496. ../../src/Resources/ShaderProg.h ../../src/Util/CharPtrHashMap.h \
  4497. ../../src/Physics/Physics.h \
  4498. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4499. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4500. ../../extern/include/bullet/LinearMath/btVector3.h \
  4501. ../../extern/include/bullet/LinearMath/btScalar.h \
  4502. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4503. ../../extern/include/bullet/LinearMath/btScalar.h \
  4504. ../../extern/include/bullet/LinearMath/btTransform.h \
  4505. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4506. ../../extern/include/bullet/LinearMath/btVector3.h \
  4507. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4508. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  4509. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4510. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4511. ../../extern/include/bullet/LinearMath/btTransform.h \
  4512. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4513. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4514. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4515. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4516. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  4517. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  4518. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4519. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  4520. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  4521. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  4522. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4523. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4524. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4525. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  4526. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4527. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  4528. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4529. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4530. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  4531. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4532. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  4533. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  4534. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  4535. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  4536. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  4537. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4538. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  4539. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  4540. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  4541. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4542. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  4543. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  4544. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  4545. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  4546. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  4547. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  4548. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4549. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  4550. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  4551. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  4552. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4553. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  4554. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  4555. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  4556. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4557. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4558. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4559. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  4560. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4561. ../../src/Misc/memory.h \
  4562. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4563. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4564. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  4565. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  4566. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  4567. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  4568. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  4569. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  4570. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  4571. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  4572. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4573. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  4574. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  4575. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4576. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  4577. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4578. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  4579. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4580. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  4581. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  4582. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4583. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4584. ../../extern/include/bullet/LinearMath/btTransform.h \
  4585. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  4586. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4587. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  4588. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4589. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4590. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  4591. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4592. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4593. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  4594. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4595. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  4596. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  4597. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4598. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  4599. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4600. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4601. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  4602. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  4603. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4604. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4605. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  4606. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  4607. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  4608. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  4609. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4610. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  4611. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4612. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4613. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  4614. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  4615. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4616. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  4617. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  4618. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  4619. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4620. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  4621. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4622. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  4623. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  4624. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  4625. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4626. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  4627. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4628. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h \
  4629. ../../src/Renderer/BufferObjects/Fbo.h \
  4630. ../../src/Renderer/BufferObjects/Vbo.h \
  4631. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Renderer/Ms.h \
  4632. ../../src/Renderer/RenderingStage.h ../../src/Renderer/Ez.h \
  4633. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  4634. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  4635. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  4636. ../../src/Renderer/Dbg.h ../../src/Scripting/ScriptingEngine.h \
  4637. ../../src/Core//StdinListener.h
  4638. @echo Compiling ../../src/Core//App.cpp...
  4639. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Core//App.cpp -o App.o
  4640. Common.o: ../../src/Core//Common.cpp ../../extern/include/GL/glew.h \
  4641. ../../src/Core//Common.h ../../src/Core//App.h \
  4642. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  4643. ../../extern/include/SDL/SDL_stdinc.h \
  4644. ../../extern/include/SDL/SDL_config.h \
  4645. ../../extern/include/SDL/SDL_platform.h \
  4646. ../../extern/include/SDL/begin_code.h \
  4647. ../../extern/include/SDL/close_code.h \
  4648. ../../extern/include/SDL/SDL_atomic.h \
  4649. ../../extern/include/SDL/SDL_audio.h \
  4650. ../../extern/include/SDL/SDL_error.h \
  4651. ../../extern/include/SDL/SDL_endian.h \
  4652. ../../extern/include/SDL/SDL_mutex.h \
  4653. ../../extern/include/SDL/SDL_thread.h \
  4654. ../../extern/include/SDL/SDL_rwops.h \
  4655. ../../extern/include/SDL/SDL_clipboard.h \
  4656. ../../extern/include/SDL/SDL_cpuinfo.h \
  4657. ../../extern/include/SDL/SDL_events.h \
  4658. ../../extern/include/SDL/SDL_video.h \
  4659. ../../extern/include/SDL/SDL_pixels.h \
  4660. ../../extern/include/SDL/SDL_rect.h \
  4661. ../../extern/include/SDL/SDL_surface.h \
  4662. ../../extern/include/SDL/SDL_keyboard.h \
  4663. ../../extern/include/SDL/SDL_keysym.h \
  4664. ../../extern/include/SDL/SDL_scancode.h \
  4665. ../../extern/include/SDL/SDL_mouse.h \
  4666. ../../extern/include/SDL/SDL_joystick.h \
  4667. ../../extern/include/SDL/SDL_quit.h \
  4668. ../../extern/include/SDL/SDL_loadso.h \
  4669. ../../extern/include/SDL/SDL_power.h \
  4670. ../../extern/include/SDL/SDL_timer.h \
  4671. ../../extern/include/SDL/SDL_version.h \
  4672. ../../extern/include/SDL/SDL_revision.h \
  4673. ../../extern/include/SDL/SDL_compat.h ../../src/Util/Object.h \
  4674. ../../src/Core/Common.h ../../src/Util/Vec.h ../../src/Util/Util.h
  4675. @echo Compiling ../../src/Core//Common.cpp...
  4676. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Core//Common.cpp -o Common.o
  4677. StdinListener.o: ../../src/Core//StdinListener.cpp \
  4678. ../../src/Core//StdinListener.h ../../src/Core//Common.h \
  4679. ../../src/Util/Object.h ../../src/Core/Common.h ../../src/Util/Vec.h
  4680. @echo Compiling ../../src/Core//StdinListener.cpp...
  4681. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Core//StdinListener.cpp -o StdinListener.o
  4682. ScriptingEngine.o: ../../src/Scripting//ScriptingEngine.cpp \
  4683. /usr/include/python2.6/Python.h /usr/include/python2.6/patchlevel.h \
  4684. /usr/include/python2.6/pyconfig.h /usr/include/python2.6/pymacconfig.h \
  4685. /usr/include/python2.6/pyport.h /usr/include/python2.6/pymath.h \
  4686. /usr/include/python2.6/pymem.h /usr/include/python2.6/object.h \
  4687. /usr/include/python2.6/objimpl.h /usr/include/python2.6/pydebug.h \
  4688. /usr/include/python2.6/unicodeobject.h \
  4689. /usr/include/python2.6/intobject.h /usr/include/python2.6/boolobject.h \
  4690. /usr/include/python2.6/longobject.h /usr/include/python2.6/floatobject.h \
  4691. /usr/include/python2.6/complexobject.h \
  4692. /usr/include/python2.6/rangeobject.h \
  4693. /usr/include/python2.6/stringobject.h \
  4694. /usr/include/python2.6/bufferobject.h \
  4695. /usr/include/python2.6/bytesobject.h \
  4696. /usr/include/python2.6/bytearrayobject.h \
  4697. /usr/include/python2.6/tupleobject.h /usr/include/python2.6/listobject.h \
  4698. /usr/include/python2.6/dictobject.h /usr/include/python2.6/enumobject.h \
  4699. /usr/include/python2.6/setobject.h /usr/include/python2.6/methodobject.h \
  4700. /usr/include/python2.6/moduleobject.h \
  4701. /usr/include/python2.6/funcobject.h /usr/include/python2.6/classobject.h \
  4702. /usr/include/python2.6/fileobject.h /usr/include/python2.6/cobject.h \
  4703. /usr/include/python2.6/traceback.h /usr/include/python2.6/sliceobject.h \
  4704. /usr/include/python2.6/cellobject.h /usr/include/python2.6/iterobject.h \
  4705. /usr/include/python2.6/genobject.h /usr/include/python2.6/descrobject.h \
  4706. /usr/include/python2.6/warnings.h /usr/include/python2.6/weakrefobject.h \
  4707. /usr/include/python2.6/codecs.h /usr/include/python2.6/pyerrors.h \
  4708. /usr/include/python2.6/pystate.h /usr/include/python2.6/pyarena.h \
  4709. /usr/include/python2.6/modsupport.h /usr/include/python2.6/pythonrun.h \
  4710. /usr/include/python2.6/ceval.h /usr/include/python2.6/sysmodule.h \
  4711. /usr/include/python2.6/intrcheck.h /usr/include/python2.6/import.h \
  4712. /usr/include/python2.6/abstract.h /usr/include/python2.6/compile.h \
  4713. /usr/include/python2.6/code.h /usr/include/python2.6/eval.h \
  4714. /usr/include/python2.6/pystrtod.h /usr/include/python2.6/pystrcmp.h \
  4715. /usr/include/python2.6/pyfpe.h ../../src/Scripting//ScriptingEngine.h \
  4716. ../../src/Core/Common.h ../../src/Util/Object.h ../../src/Util/Vec.h
  4717. @echo Compiling ../../src/Scripting//ScriptingEngine.cpp...
  4718. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting//ScriptingEngine.cpp -o ScriptingEngine.o
  4719. BoostPythonInterfaces.o: ../../src/Scripting//BoostPythonInterfaces.cpp \
  4720. ../../src/Core/Common.h ../../src/Math/Math.h ../../src/Math/Vec2.h \
  4721. ../../src/Math/MathForwardDecls.h ../../src/Math/Vec2.inl.h \
  4722. ../../src/Math/MathDfltHeader.h ../../src/Math/Vec3.h \
  4723. ../../src/Math/Vec3.inl.h ../../src/Math/Vec4.h \
  4724. ../../src/Math/Vec4.inl.h ../../src/Math/Quat.h \
  4725. ../../src/Math/Quat.inl.h ../../src/Math/Axisang.h \
  4726. ../../src/Math/Axisang.inl.h ../../src/Math/Euler.h \
  4727. ../../src/Math/Euler.inl.h ../../src/Math/Mat3.h \
  4728. ../../src/Math/Mat3.inl.h ../../src/Math/Mat4.h \
  4729. ../../src/Math/Mat4.inl.h ../../src/Math/MathFuncs.h \
  4730. ../../src/Math/MathFuncs.inl.h ../../src/Math/Transform.h \
  4731. ../../src/Math/Transform.inl.h ../../src/Scene/Scene.h \
  4732. ../../src/Util/Object.h ../../src/Util/Vec.h ../../src/Misc/skybox.h \
  4733. ../../src/Resources/Texture.h ../../src/Resources/Core/Resource.h \
  4734. ../../src/Util/Util.h ../../src/Resources/Core/RsrcPtr.h \
  4735. ../../src/Resources/ShaderProg.h ../../extern/include/GL/glew.h \
  4736. ../../src/Util/CharPtrHashMap.h ../../src/Physics/Physics.h \
  4737. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4738. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4739. ../../extern/include/bullet/LinearMath/btVector3.h \
  4740. ../../extern/include/bullet/LinearMath/btScalar.h \
  4741. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4742. ../../extern/include/bullet/LinearMath/btScalar.h \
  4743. ../../extern/include/bullet/LinearMath/btTransform.h \
  4744. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4745. ../../extern/include/bullet/LinearMath/btVector3.h \
  4746. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4747. ../../extern/include/bullet/LinearMath/btQuadWord.h \
  4748. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4749. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4750. ../../extern/include/bullet/LinearMath/btTransform.h \
  4751. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4752. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4753. ../../extern/include/bullet/LinearMath/btAlignedAllocator.h \
  4754. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4755. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDispatcher.h \
  4756. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h \
  4757. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4758. ../../extern/include/bullet/LinearMath/btTransformUtil.h \
  4759. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btManifoldResult.h \
  4760. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h \
  4761. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4762. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4763. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4764. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h \
  4765. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h \
  4766. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCallback.h \
  4767. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4768. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4769. ../../extern/include/bullet/BulletCollision/CollisionShapes/btPolyhedralConvexShape.h \
  4770. ../../extern/include/bullet/LinearMath/btMatrix3x3.h \
  4771. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexInternalShape.h \
  4772. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexShape.h \
  4773. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionShape.h \
  4774. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCollisionMargin.h \
  4775. ../../extern/include/bullet/LinearMath/btAabbUtil2.h \
  4776. ../../extern/include/bullet/LinearMath/btMinMax.h \
  4777. ../../extern/include/bullet/BulletCollision/CollisionShapes/btSphereShape.h \
  4778. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCapsuleShape.h \
  4779. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCylinderShape.h \
  4780. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBoxShape.h \
  4781. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConeShape.h \
  4782. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStaticPlaneShape.h \
  4783. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConcaveShape.h \
  4784. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleCallback.h \
  4785. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexHullShape.h \
  4786. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMesh.h \
  4787. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4788. ../../extern/include/bullet/BulletCollision/CollisionShapes/btStridingMeshInterface.h \
  4789. ../../extern/include/bullet/BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h \
  4790. ../../extern/include/bullet/BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h \
  4791. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4792. ../../extern/include/bullet/BulletCollision/CollisionShapes/btOptimizedBvh.h \
  4793. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btQuantizedBvh.h \
  4794. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleInfoMap.h \
  4795. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4796. ../../extern/include/bullet/LinearMath/btAlignedObjectArray.h \
  4797. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4798. ../../extern/include/bullet/LinearMath/btStackAlloc.h \
  4799. ../../extern/include/bullet/LinearMath/btHashMap.h \
  4800. ../../src/Misc/memory.h \
  4801. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleMeshShape.h \
  4802. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h \
  4803. ../../extern/include/bullet/BulletCollision/CollisionShapes/btCompoundShape.h \
  4804. ../../extern/include/bullet/BulletCollision/CollisionShapes/btTetrahedronShape.h \
  4805. ../../extern/include/bullet/BulletCollision/CollisionShapes/btEmptyShape.h \
  4806. ../../extern/include/bullet/BulletCollision/CollisionShapes/btMultiSphereShape.h \
  4807. ../../extern/include/bullet/BulletCollision/CollisionShapes/btUniformScalingShape.h \
  4808. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h \
  4809. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h \
  4810. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h \
  4811. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionCreateFunc.h \
  4812. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h \
  4813. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionConfiguration.h \
  4814. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionDispatcher.h \
  4815. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btSimpleBroadphase.h \
  4816. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btOverlappingPairCache.h \
  4817. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h \
  4818. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4819. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvt.h \
  4820. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btMultiSapBroadphase.h \
  4821. ../../extern/include/bullet/BulletCollision/BroadphaseCollision/btDbvtBroadphase.h \
  4822. ../../extern/include/bullet/LinearMath/btQuaternion.h \
  4823. ../../extern/include/bullet/LinearMath/btTransform.h \
  4824. ../../extern/include/bullet/LinearMath/btDefaultMotionState.h \
  4825. ../../extern/include/bullet/LinearMath/btMotionState.h \
  4826. ../../extern/include/bullet/LinearMath/btQuickprof.h \
  4827. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4828. ../../extern/include/bullet/LinearMath/btSerializer.h \
  4829. ../../extern/include/bullet/btBulletDynamicsCommon.h \
  4830. ../../extern/include/bullet/btBulletCollisionCommon.h \
  4831. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4832. ../../extern/include/bullet/BulletDynamics/Dynamics/btDynamicsWorld.h \
  4833. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h \
  4834. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactSolverInfo.h \
  4835. ../../extern/include/bullet/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h \
  4836. ../../extern/include/bullet/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h \
  4837. ../../extern/include/bullet/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h \
  4838. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4839. ../../extern/include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h \
  4840. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h \
  4841. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h \
  4842. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4843. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4844. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverConstraint.h \
  4845. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSolverBody.h \
  4846. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h \
  4847. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConeTwistConstraint.h \
  4848. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4849. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h \
  4850. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4851. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h \
  4852. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btUniversalConstraint.h \
  4853. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h \
  4854. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h \
  4855. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h \
  4856. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h \
  4857. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btContactConstraint.h \
  4858. ../../extern/include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h \
  4859. ../../extern/include/bullet/BulletDynamics/Vehicle/btRaycastVehicle.h \
  4860. ../../extern/include/bullet/BulletDynamics/ConstraintSolver/btTypedConstraint.h \
  4861. ../../extern/include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h \
  4862. ../../extern/include/bullet/BulletDynamics/Vehicle/btWheelInfo.h \
  4863. ../../extern/include/bullet/BulletDynamics/Dynamics/btActionInterface.h \
  4864. ../../extern/include/bullet/BulletDynamics/Dynamics/btRigidBody.h \
  4865. ../../src/Physics/BtAndAnkiConvertors.h ../../src/Physics/DebugDrawer.h \
  4866. ../../extern/include/bullet/LinearMath/btIDebugDraw.h \
  4867. ../../src/Renderer/MainRenderer.h ../../src/Renderer/Renderer.h \
  4868. ../../src/Renderer/BufferObjects/Fbo.h \
  4869. ../../src/Renderer/BufferObjects/Vbo.h \
  4870. ../../src/Renderer/BufferObjects/BufferObject.h ../../src/Renderer/Ms.h \
  4871. ../../src/Renderer/RenderingStage.h ../../src/Renderer/Ez.h \
  4872. ../../src/Renderer/Is.h ../../src/Renderer/Sm.h ../../src/Renderer/Smo.h \
  4873. ../../src/Renderer/Pps.h ../../src/Renderer/Hdr.h \
  4874. ../../src/Renderer/Ssao.h ../../src/Renderer/Bs.h \
  4875. ../../src/Renderer/Dbg.h ../../src/Core/App.h \
  4876. ../../extern/include/SDL/SDL.h ../../extern/include/SDL/SDL_main.h \
  4877. ../../extern/include/SDL/SDL_stdinc.h \
  4878. ../../extern/include/SDL/SDL_config.h \
  4879. ../../extern/include/SDL/SDL_platform.h \
  4880. ../../extern/include/SDL/begin_code.h \
  4881. ../../extern/include/SDL/close_code.h \
  4882. ../../extern/include/SDL/SDL_atomic.h \
  4883. ../../extern/include/SDL/SDL_audio.h \
  4884. ../../extern/include/SDL/SDL_error.h \
  4885. ../../extern/include/SDL/SDL_endian.h \
  4886. ../../extern/include/SDL/SDL_mutex.h \
  4887. ../../extern/include/SDL/SDL_thread.h \
  4888. ../../extern/include/SDL/SDL_rwops.h \
  4889. ../../extern/include/SDL/SDL_clipboard.h \
  4890. ../../extern/include/SDL/SDL_cpuinfo.h \
  4891. ../../extern/include/SDL/SDL_events.h \
  4892. ../../extern/include/SDL/SDL_video.h \
  4893. ../../extern/include/SDL/SDL_pixels.h \
  4894. ../../extern/include/SDL/SDL_rect.h \
  4895. ../../extern/include/SDL/SDL_surface.h \
  4896. ../../extern/include/SDL/SDL_keyboard.h \
  4897. ../../extern/include/SDL/SDL_keysym.h \
  4898. ../../extern/include/SDL/SDL_scancode.h \
  4899. ../../extern/include/SDL/SDL_mouse.h \
  4900. ../../extern/include/SDL/SDL_joystick.h \
  4901. ../../extern/include/SDL/SDL_quit.h \
  4902. ../../extern/include/SDL/SDL_loadso.h \
  4903. ../../extern/include/SDL/SDL_power.h \
  4904. ../../extern/include/SDL/SDL_timer.h \
  4905. ../../extern/include/SDL/SDL_version.h \
  4906. ../../extern/include/SDL/SDL_revision.h \
  4907. ../../extern/include/SDL/SDL_compat.h ../../src/Core/Common.h \
  4908. ../../src/Scripting/Math/Vec2.bpi.h ../../src/Scripting/Math/Vec3.bpi.h \
  4909. ../../src/Scripting/Math/Vec4.bpi.h \
  4910. ../../src/Scripting/Scene/Scene.bpi.h \
  4911. ../../src/Scripting/Renderer/Hdr.bpi.h \
  4912. ../../src/Scripting/Renderer/Pps.bpi.h \
  4913. ../../src/Scripting/Renderer/Renderer.bpi.h \
  4914. ../../src/Scripting/Renderer/Dbg.bpi.h \
  4915. ../../src/Scripting/Renderer/MainRenderer.bpi.h \
  4916. ../../src/Scripting/Core/App.bpi.h
  4917. @echo Compiling ../../src/Scripting//BoostPythonInterfaces.cpp...
  4918. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/Scripting//BoostPythonInterfaces.cpp -o BoostPythonInterfaces.o
  4919. clean:
  4920. rm -f *.o
  4921. rm -f *.gch
  4922. rm -f *~
  4923. rm -f $(EXECUTABLE)
  4924. regen:
  4925. @echo Re-generating makefile...
  4926. ../../../godlike-projects/gBuildSystem/gbs.py