| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976 |
- CXX = /usr/lib/llvm/llvm/gcc-4.2/bin/llvm-g++
- COMMONFLAGS = -emit-llvm
- CFLAGS = $(COMMONFLAGS) -c `sdl-config --cflags` -O3 -D_TERMINAL_COLORING_ -D_PLATFORM_LINUX_
- PHFLAGS = $(CFLAGS)
- LFLAGS = $(COMMONFLAGS) -lGL -lGLU -lGLEW -lSDL_image `sdl-config --static-libs` -ljpeg -lgomp
- EXECUTABLE = AnKi
- INCPATH = -I../../src/math/ -I../../src/tokenizer/ -I../../src/uncategorized/ -I../../src/ -I../../src/renderer/ -I../../src/scene/ -I../../src/resources/ -I../../src/utility/ -I../../src/ui/
- SOURCES = ../../src/tokenizer//scanner.cpp ../../src/uncategorized//input.cpp ../../src/uncategorized//skybox.cpp ../../src/uncategorized//particles.cpp ../../src/uncategorized//memory.cpp ../../src/uncategorized//engine_class.cpp ../../src/uncategorized//collision.cpp ../../src/uncategorized//map.cpp ../../src//main.cpp ../../src/renderer//r_ms.cpp ../../src/renderer//r_pps_hdr.cpp ../../src/renderer//r_pps.cpp ../../src/renderer//r_is_shadows.cpp ../../src/renderer//r_bs.cpp ../../src/renderer//r_ms_earlyz.cpp ../../src/renderer//renderer.cpp ../../src/renderer//r_pps_ssao.cpp ../../src/renderer//r_is.cpp ../../src/renderer//r_dbg.cpp ../../src/renderer//r_pps_lscatt.cpp ../../src/renderer//r_bs2.cpp ../../src/scene//mesh_node.cpp ../../src/scene//skel_node.cpp ../../src/scene//skel_anim_controller.cpp ../../src/scene//light.cpp ../../src/scene//skel_model_node.cpp ../../src/scene//controller.cpp ../../src/scene//node.cpp ../../src/scene//camera.cpp ../../src/scene//scene.cpp ../../src/resources//material.cpp ../../src/resources//texture.cpp ../../src/resources//skel_anim.cpp ../../src/resources//extension.cpp ../../src/resources//shader_parser.cpp ../../src/resources//skeleton.cpp ../../src/resources//resource.cpp ../../src/resources//light_props.cpp ../../src/resources//mesh.cpp ../../src/resources//shader_prog.cpp ../../src/utility//app.cpp ../../src/utility//common.cpp ../../src/utility//util.cpp ../../src/ui//ui.cpp
- OBJECTS = scanner.o input.o skybox.o particles.o memory.o engine_class.o collision.o map.o main.o r_ms.o r_pps_hdr.o r_pps.o r_is_shadows.o r_bs.o r_ms_earlyz.o renderer.o r_pps_ssao.o r_is.o r_dbg.o r_pps_lscatt.o r_bs2.o mesh_node.o skel_node.o skel_anim_controller.o light.o skel_model_node.o controller.o node.o camera.o scene.o material.o texture.o skel_anim.o extension.o shader_parser.o skeleton.o resource.o light_props.o mesh.o shader_prog.o app.o common.o util.o ui.o
- PRECOMPILED_HEADERS =
- all: $(PRECOMPILED_HEADERS) $(SOURCES) $(EXECUTABLE)
- $(EXECUTABLE): $(OBJECTS)
- @echo Linking...
- @$(CXX) $(LFLAGS) $(OBJECTS) -o $(EXECUTABLE)
- @echo All Done!
- scanner.o: ../../src/tokenizer//scanner.cpp \
- ../../src/tokenizer//scanner.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h
- @echo Compiling ../../src/tokenizer//scanner.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/tokenizer//scanner.cpp -o scanner.o
- input.o: ../../src/uncategorized//input.cpp \
- ../../src/uncategorized//input.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/utility/app.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/renderer/renderer.h \
- ../../src/utility/common.h ../../src/math/gmath.h \
- ../../src/resources/shader_prog.h ../../src/utility/common.h \
- ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h
- @echo Compiling ../../src/uncategorized//input.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//input.cpp -o input.o
- skybox.o: ../../src/uncategorized//skybox.cpp \
- ../../src/uncategorized//skybox.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/resources/texture.h ../../src/utility/common.h \
- ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/resource.h \
- ../../src/renderer/renderer.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/resources/shader_prog.h \
- ../../src/scene/camera.h ../../src/utility/common.h \
- ../../src/uncategorized/collision.h ../../src/math/gmath.h \
- ../../src/scene/node.h ../../src/math/gmath.h ../../src/scene/camera.h \
- ../../src/scene/scene.h ../../src/uncategorized/skybox.h
- @echo Compiling ../../src/uncategorized//skybox.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//skybox.cpp -o skybox.o
- particles.o: ../../src/uncategorized//particles.cpp
- @echo Compiling ../../src/uncategorized//particles.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//particles.cpp -o particles.o
- memory.o: ../../src/uncategorized//memory.cpp \
- ../../src/uncategorized//memory.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h
- @echo Compiling ../../src/uncategorized//memory.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//memory.cpp -o memory.o
- engine_class.o: ../../src/uncategorized//engine_class.cpp \
- ../../src/uncategorized//engine_class.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h
- @echo Compiling ../../src/uncategorized//engine_class.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//engine_class.cpp -o engine_class.o
- collision.o: ../../src/uncategorized//collision.cpp \
- ../../src/uncategorized//collision.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/renderer/renderer.h \
- ../../src/utility/common.h ../../src/math/gmath.h \
- ../../src/resources/shader_prog.h ../../src/utility/common.h \
- ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/scene/camera.h ../../src/utility/common.h \
- ../../src/uncategorized/collision.h ../../src/scene/node.h \
- ../../src/math/gmath.h
- @echo Compiling ../../src/uncategorized//collision.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//collision.cpp -o collision.o
- map.o: ../../src/uncategorized//map.cpp ../../src/uncategorized//map.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/uncategorized//collision.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/mesh.h \
- ../../src/utility/common.h ../../src/math/gmath.h \
- ../../src/renderer/vbo.h ../../src/utility/common.h \
- ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/uncategorized/collision.h ../../src/tokenizer/scanner.h \
- ../../src/utility/common.h ../../src/tokenizer/parser.h \
- ../../src/tokenizer/scanner.h ../../src/resources/resource.h \
- ../../src/scene/camera.h ../../src/utility/common.h \
- ../../src/uncategorized/collision.h ../../src/scene/node.h \
- ../../src/math/gmath.h
- @echo Compiling ../../src/uncategorized//map.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//map.cpp -o map.o
- main.o: ../../src//main.cpp ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/uncategorized/input.h ../../src/utility/app.h \
- ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
- ../../src/utility/common.h ../../src/math/forward_decls.h \
- ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
- ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/scene/node.h ../../src/math/gmath.h ../../src/math/gmath.h \
- ../../src/renderer/renderer.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/scene/camera.h ../../src/ui/ui.h ../../src/utility/common.h \
- ../../src/utility/app.h ../../src/uncategorized/particles.h \
- ../../src/resources/texture.h ../../src/resources/mesh.h \
- ../../src/math/gmath.h ../../src/renderer/vbo.h \
- ../../src/uncategorized/collision.h ../../src/scene/light.h \
- ../../src/resources/texture.h ../../src/scene/camera.h \
- ../../src/uncategorized/collision.h ../../src/resources/material.h \
- ../../src/resources/resource.h ../../src/scene/scene.h \
- ../../src/uncategorized/skybox.h ../../src/resources/texture.h \
- ../../src/tokenizer/scanner.h ../../src/utility/common.h \
- ../../src/uncategorized/skybox.h ../../src/uncategorized/map.h \
- ../../src/uncategorized/collision.h ../../src/scene/mesh_node.h \
- ../../src/resources/material.h ../../src/scene/skel_model_node.h \
- ../../src/scene/mesh_node.h ../../src/resources/skel_anim.h \
- ../../src/scene/skel_controller.h ../../src/scene/controller.h \
- ../../src/scene/skel_anim_controller.h ../../src/scene/skel_node.h \
- ../../src/resources/light_props.h
- @echo Compiling ../../src//main.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src//main.cpp -o main.o
- r_ms.o: ../../src/renderer//r_ms.cpp ../../src/renderer//renderer.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
- ../../src/utility/common.h ../../src/math/forward_decls.h \
- ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
- ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
- ../../src/resources/texture.h ../../src/resources/mesh.h \
- ../../src/math/gmath.h ../../src/renderer/vbo.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/renderer//r_private.h ../../src/renderer//fbo.h \
- ../../src/resources/material.h ../../src/scene/mesh_node.h \
- ../../src/resources/material.h
- @echo Compiling ../../src/renderer//r_ms.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_ms.cpp -o r_ms.o
- r_pps_hdr.o: ../../src/renderer//r_pps_hdr.cpp \
- ../../src/renderer//renderer.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/resources/resource.h ../../src/resources/texture.h \
- ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
- ../../src/resources/texture.h ../../src/renderer//r_private.h \
- ../../src/renderer//fbo.h
- @echo Compiling ../../src/renderer//r_pps_hdr.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps_hdr.cpp -o r_pps_hdr.o
- r_pps.o: ../../src/renderer//r_pps.cpp ../../src/renderer//renderer.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
- ../../src/utility/common.h ../../src/math/forward_decls.h \
- ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
- ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/resources/resource.h ../../src/resources/texture.h \
- ../../src/renderer//r_private.h ../../src/renderer//fbo.h
- @echo Compiling ../../src/renderer//r_pps.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps.cpp -o r_pps.o
- r_is_shadows.o: ../../src/renderer//r_is_shadows.cpp \
- ../../src/renderer//renderer.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/resources/texture.h ../../src/scene/scene.h \
- ../../src/uncategorized/skybox.h ../../src/resources/texture.h \
- ../../src/resources/resource.h ../../src/renderer//r_private.h \
- ../../src/renderer//fbo.h ../../src/resources/material.h \
- ../../src/math/gmath.h ../../src/scene/mesh_node.h \
- ../../src/resources/material.h
- @echo Compiling ../../src/renderer//r_is_shadows.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_is_shadows.cpp -o r_is_shadows.o
- r_bs.o: ../../src/renderer//r_bs.cpp ../../src/renderer//renderer.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
- ../../src/utility/common.h ../../src/math/forward_decls.h \
- ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
- ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
- ../../src/resources/texture.h ../../src/resources/mesh.h \
- ../../src/math/gmath.h ../../src/renderer/vbo.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/renderer//r_private.h ../../src/resources/resource.h \
- ../../src/renderer//fbo.h ../../src/scene/mesh_node.h \
- ../../src/resources/material.h ../../src/resources/material.h
- @echo Compiling ../../src/renderer//r_bs.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_bs.cpp -o r_bs.o
- r_ms_earlyz.o: ../../src/renderer//r_ms_earlyz.cpp \
- ../../src/renderer//renderer.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/resources/resource.h ../../src/resources/texture.h \
- ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
- ../../src/resources/texture.h ../../src/renderer//r_private.h \
- ../../src/renderer//fbo.h
- @echo Compiling ../../src/renderer//r_ms_earlyz.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_ms_earlyz.cpp -o r_ms_earlyz.o
- renderer.o: ../../src/renderer//renderer.cpp \
- ../../src/renderer//renderer.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/resources/texture.h ../../src/scene/scene.h \
- ../../src/uncategorized/skybox.h ../../src/resources/texture.h \
- ../../src/renderer//r_private.h
- @echo Compiling ../../src/renderer//renderer.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//renderer.cpp -o renderer.o
- r_pps_ssao.o: ../../src/renderer//r_pps_ssao.cpp \
- ../../src/renderer//renderer.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/resources/resource.h ../../src/resources/texture.h \
- ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
- ../../src/resources/texture.h ../../src/renderer//r_private.h \
- ../../src/renderer//fbo.h
- @echo Compiling ../../src/renderer//r_pps_ssao.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps_ssao.cpp -o r_pps_ssao.o
- r_is.o: ../../src/renderer//r_is.cpp ../../src/renderer//renderer.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
- ../../src/utility/common.h ../../src/math/forward_decls.h \
- ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
- ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
- ../../src/resources/texture.h ../../src/resources/mesh.h \
- ../../src/math/gmath.h ../../src/renderer/vbo.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/scene/light.h ../../src/resources/texture.h \
- ../../src/scene/camera.h ../../src/resources/resource.h \
- ../../src/renderer//r_private.h ../../src/renderer//fbo.h \
- ../../src/resources/light_props.h
- @echo Compiling ../../src/renderer//r_is.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_is.cpp -o r_is.o
- r_dbg.o: ../../src/renderer//r_dbg.cpp ../../src/renderer//renderer.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
- ../../src/utility/common.h ../../src/math/forward_decls.h \
- ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
- ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/renderer//r_private.h ../../src/renderer//fbo.h \
- ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
- ../../src/resources/texture.h ../../src/resources/texture.h \
- ../../src/scene/node.h ../../src/scene/skel_node.h \
- ../../src/scene/controller.h
- @echo Compiling ../../src/renderer//r_dbg.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_dbg.cpp -o r_dbg.o
- r_pps_lscatt.o: ../../src/renderer//r_pps_lscatt.cpp \
- ../../src/renderer//renderer.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/resources/resource.h ../../src/resources/texture.h \
- ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
- ../../src/resources/texture.h ../../src/renderer//r_private.h \
- ../../src/renderer//fbo.h
- @echo Compiling ../../src/renderer//r_pps_lscatt.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps_lscatt.cpp -o r_pps_lscatt.o
- r_bs2.o: ../../src/renderer//r_bs2.cpp ../../src/renderer//renderer.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
- ../../src/utility/common.h ../../src/math/forward_decls.h \
- ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
- ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
- ../../src/resources/texture.h ../../src/resources/mesh.h \
- ../../src/math/gmath.h ../../src/renderer/vbo.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/renderer//r_private.h ../../src/resources/resource.h \
- ../../src/renderer//fbo.h ../../src/scene/mesh_node.h \
- ../../src/resources/material.h ../../src/resources/material.h
- @echo Compiling ../../src/renderer//r_bs2.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_bs2.cpp -o r_bs2.o
- mesh_node.o: ../../src/scene//mesh_node.cpp ../../src/scene//mesh_node.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/scene//node.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/material.h \
- ../../src/utility/common.h ../../src/math/gmath.h \
- ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/resources/resource.h ../../src/resources/mesh.h \
- ../../src/renderer/vbo.h ../../src/utility/common.h \
- ../../src/uncategorized/collision.h ../../src/math/gmath.h \
- ../../src/renderer/renderer.h ../../src/math/gmath.h \
- ../../src/resources/shader_prog.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/scene/node.h ../../src/scene//skel_node.h \
- ../../src/scene//controller.h ../../src/resources/skeleton.h \
- ../../src/scene//skel_controller.h \
- ../../src/scene//skel_anim_controller.h
- @echo Compiling ../../src/scene//mesh_node.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//mesh_node.cpp -o mesh_node.o
- skel_node.o: ../../src/scene//skel_node.cpp ../../src/scene//skel_node.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/scene//node.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/scene//controller.h \
- ../../src/renderer/renderer.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h \
- ../../src/resources/skel_anim.h ../../src/math/gmath.h \
- ../../src/resources/skeleton.h ../../src/scene//skel_anim_controller.h
- @echo Compiling ../../src/scene//skel_node.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//skel_node.cpp -o skel_node.o
- skel_anim_controller.o: ../../src/scene//skel_anim_controller.cpp \
- ../../src/scene//skel_anim_controller.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/scene//controller.h ../../src/math/gmath.h \
- ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/skel_anim.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/math/gmath.h \
- ../../src/scene//skel_node.h ../../src/scene//node.h \
- ../../src/resources/skeleton.h ../../src/renderer/renderer.h \
- ../../src/utility/common.h ../../src/math/gmath.h \
- ../../src/resources/shader_prog.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h
- @echo Compiling ../../src/scene//skel_anim_controller.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//skel_anim_controller.cpp -o skel_anim_controller.o
- light.o: ../../src/scene//light.cpp ../../src/scene//light.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/resources/texture.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene//node.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/scene//camera.h \
- ../../src/uncategorized/collision.h ../../src/math/gmath.h \
- ../../src/renderer/renderer.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/resources/shader_prog.h \
- ../../src/scene/camera.h ../../src/resources/light_props.h \
- ../../src/math/gmath.h
- @echo Compiling ../../src/scene//light.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//light.cpp -o light.o
- skel_model_node.o: ../../src/scene//skel_model_node.cpp \
- ../../src/scene//skel_model_node.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/scene//mesh_node.h ../../src/scene//node.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/material.h \
- ../../src/utility/common.h ../../src/math/gmath.h \
- ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/tokenizer/parser.h ../../src/utility/common.h \
- ../../src/tokenizer/scanner.h ../../src/scene//skel_node.h \
- ../../src/scene//controller.h ../../src/scene//skel_controller.h
- @echo Compiling ../../src/scene//skel_model_node.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//skel_model_node.cpp -o skel_model_node.o
- controller.o: ../../src/scene//controller.cpp \
- ../../src/scene//controller.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/scene//scene.h ../../src/uncategorized/skybox.h \
- ../../src/resources/texture.h ../../src/utility/common.h \
- ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h
- @echo Compiling ../../src/scene//controller.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//controller.cpp -o controller.o
- node.o: ../../src/scene//node.cpp ../../src/scene//node.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
- ../../src/utility/common.h ../../src/math/forward_decls.h \
- ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
- ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/renderer/renderer.h \
- ../../src/utility/common.h ../../src/math/gmath.h \
- ../../src/resources/shader_prog.h ../../src/utility/common.h \
- ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/scene/camera.h ../../src/utility/common.h \
- ../../src/uncategorized/collision.h ../../src/math/gmath.h \
- ../../src/scene/node.h ../../src/uncategorized/collision.h \
- ../../src/scene//controller.h
- @echo Compiling ../../src/scene//node.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//node.cpp -o node.o
- camera.o: ../../src/scene//camera.cpp ../../src/scene//camera.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/scene//node.h \
- ../../src/math/gmath.h ../../src/renderer/renderer.h \
- ../../src/utility/common.h ../../src/math/gmath.h \
- ../../src/resources/shader_prog.h ../../src/utility/common.h \
- ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/scene/camera.h
- @echo Compiling ../../src/scene//camera.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//camera.cpp -o camera.o
- scene.o: ../../src/scene//scene.cpp ../../src/scene//scene.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/uncategorized/skybox.h \
- ../../src/resources/texture.h ../../src/utility/common.h \
- ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/scene//skel_node.h \
- ../../src/scene//node.h ../../src/math/gmath.h \
- ../../src/scene//controller.h ../../src/scene//camera.h \
- ../../src/uncategorized/collision.h ../../src/scene//mesh_node.h \
- ../../src/resources/material.h ../../src/math/gmath.h \
- ../../src/scene//light.h ../../src/resources/texture.h
- @echo Compiling ../../src/scene//scene.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//scene.cpp -o scene.o
- material.o: ../../src/resources//material.cpp \
- ../../src/resources//material.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources//resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/tokenizer/scanner.h \
- ../../src/utility/common.h ../../src/tokenizer/parser.h \
- ../../src/tokenizer/scanner.h ../../src/resources//texture.h \
- ../../src/resources//shader_prog.h ../../src/renderer/renderer.h \
- ../../src/utility/common.h ../../src/math/gmath.h \
- ../../src/resources/shader_prog.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h
- @echo Compiling ../../src/resources//material.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//material.cpp -o material.o
- texture.o: ../../src/resources//texture.cpp \
- ../../src/resources//texture.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/resources//resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/renderer/renderer.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/scene/camera.h ../../src/utility/common.h \
- ../../src/uncategorized/collision.h ../../src/math/gmath.h \
- ../../src/scene/node.h ../../src/math/gmath.h
- @echo Compiling ../../src/resources//texture.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//texture.cpp -o texture.o
- skel_anim.o: ../../src/resources//skel_anim.cpp \
- ../../src/resources//skel_anim.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/resources//resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/tokenizer/scanner.h \
- ../../src/utility/common.h ../../src/tokenizer/parser.h \
- ../../src/tokenizer/scanner.h
- @echo Compiling ../../src/resources//skel_anim.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//skel_anim.cpp -o skel_anim.o
- extension.o: ../../src/resources//extension.cpp \
- ../../src/resources//extension.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/resources//resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h
- @echo Compiling ../../src/resources//extension.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//extension.cpp -o extension.o
- shader_parser.o: ../../src/resources//shader_parser.cpp \
- ../../src/resources//shader_parser.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/tokenizer/scanner.h ../../src/utility/common.h \
- ../../src/tokenizer/parser.h ../../src/tokenizer/scanner.h \
- ../../src/utility/util.h ../../src/utility/common.h
- @echo Compiling ../../src/resources//shader_parser.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//shader_parser.cpp -o shader_parser.o
- skeleton.o: ../../src/resources//skeleton.cpp \
- ../../src/resources//skeleton.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources//resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/tokenizer/scanner.h \
- ../../src/utility/common.h ../../src/tokenizer/parser.h \
- ../../src/tokenizer/scanner.h
- @echo Compiling ../../src/resources//skeleton.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//skeleton.cpp -o skeleton.o
- resource.o: ../../src/resources//resource.cpp \
- ../../src/resources//resource.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/resources//texture.h \
- ../../src/resources//material.h ../../src/math/gmath.h \
- ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources//shader_prog.h \
- ../../src/resources//mesh.h ../../src/renderer/vbo.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/resources//skel_anim.h \
- ../../src/resources//light_props.h
- @echo Compiling ../../src/resources//resource.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//resource.cpp -o resource.o
- light_props.o: ../../src/resources//light_props.cpp \
- ../../src/resources//light_props.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/resources//resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/tokenizer/parser.h \
- ../../src/utility/common.h ../../src/tokenizer/scanner.h \
- ../../src/resources//texture.h
- @echo Compiling ../../src/resources//light_props.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//light_props.cpp -o light_props.o
- mesh.o: ../../src/resources//mesh.cpp ../../src/resources//mesh.h \
- ../../src/utility/common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
- ../../src/utility/common.h ../../src/math/forward_decls.h \
- ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
- ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/renderer/vbo.h \
- ../../src/utility/common.h ../../src/resources//resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/renderer/renderer.h \
- ../../src/math/gmath.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/scene/camera.h ../../src/utility/common.h \
- ../../src/uncategorized/collision.h ../../src/scene/node.h \
- ../../src/math/gmath.h ../../src/tokenizer/scanner.h \
- ../../src/utility/common.h ../../src/tokenizer/parser.h \
- ../../src/tokenizer/scanner.h
- @echo Compiling ../../src/resources//mesh.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//mesh.cpp -o mesh.o
- shader_prog.o: ../../src/resources//shader_prog.cpp \
- ../../src/resources//shader_prog.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/resources//resource.h ../../src/uncategorized/engine_class.h \
- ../../src/utility/util.h ../../src/utility/common.h \
- ../../src/renderer/renderer.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/scene/camera.h ../../src/utility/common.h \
- ../../src/uncategorized/collision.h ../../src/math/gmath.h \
- ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/resources//shader_parser.h ../../src/resources//texture.h
- @echo Compiling ../../src/resources//shader_prog.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//shader_prog.cpp -o shader_prog.o
- app.o: ../../src/utility//app.cpp ../../src/utility//app.h \
- ../../src/utility//common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h
- @echo Compiling ../../src/utility//app.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/utility//app.cpp -o app.o
- common.o: ../../src/utility//common.cpp ../../src/utility//common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h
- @echo Compiling ../../src/utility//common.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/utility//common.cpp -o common.o
- util.o: ../../src/utility//util.cpp ../../src/utility//util.h \
- ../../src/utility//common.h ../../src/uncategorized/memory.h \
- ../../src/utility/common.h
- @echo Compiling ../../src/utility//util.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/utility//util.cpp -o util.o
- ui.o: ../../src/ui//ui.cpp ../../src/ui//ui.h ../../src/utility/common.h \
- ../../src/uncategorized/memory.h ../../src/utility/common.h \
- ../../src/renderer/renderer.h ../../src/utility/common.h \
- ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
- ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
- ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
- ../../src/math/vec3.inl.h ../../src/math/vec4.h \
- ../../src/math/vec4.inl.h ../../src/math/quat.h \
- ../../src/math/quat.inl.h ../../src/math/axisang.h \
- ../../src/math/axisang.inl.h ../../src/math/euler.h \
- ../../src/math/euler.inl.h ../../src/math/mat3.h \
- ../../src/math/mat3.inl.h ../../src/math/mat4.h \
- ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
- ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
- ../../src/utility/common.h ../../src/resources/resource.h \
- ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
- ../../src/utility/common.h ../../src/scene/camera.h \
- ../../src/utility/common.h ../../src/uncategorized/collision.h \
- ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
- ../../src/resources/texture.h ../../src/resources/resource.h
- @echo Compiling ../../src/ui//ui.cpp...
- @$(CXX) $(INCPATH) $(CFLAGS) ../../src/ui//ui.cpp -o ui.o
- clean:
- rm -f *.o
- rm -f *.gch
- rm -f *~
- rm -f $(EXECUTABLE)
|