Makefile 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976
  1. CXX = /usr/lib/llvm/llvm/gcc-4.2/bin/llvm-g++
  2. COMMONFLAGS = -emit-llvm
  3. CFLAGS = $(COMMONFLAGS) -c `sdl-config --cflags` -O3 -D_TERMINAL_COLORING_ -D_PLATFORM_LINUX_
  4. PHFLAGS = $(CFLAGS)
  5. LFLAGS = $(COMMONFLAGS) -lGL -lGLU -lGLEW -lSDL_image `sdl-config --static-libs` -ljpeg -lgomp
  6. EXECUTABLE = AnKi
  7. 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/
  8. 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
  9. 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
  10. PRECOMPILED_HEADERS =
  11. all: $(PRECOMPILED_HEADERS) $(SOURCES) $(EXECUTABLE)
  12. $(EXECUTABLE): $(OBJECTS)
  13. @echo Linking...
  14. @$(CXX) $(LFLAGS) $(OBJECTS) -o $(EXECUTABLE)
  15. @echo All Done!
  16. scanner.o: ../../src/tokenizer//scanner.cpp \
  17. ../../src/tokenizer//scanner.h ../../src/utility/common.h \
  18. ../../src/uncategorized/memory.h ../../src/utility/common.h
  19. @echo Compiling ../../src/tokenizer//scanner.cpp...
  20. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/tokenizer//scanner.cpp -o scanner.o
  21. input.o: ../../src/uncategorized//input.cpp \
  22. ../../src/uncategorized//input.h ../../src/utility/common.h \
  23. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  24. ../../src/utility/app.h ../../src/utility/common.h \
  25. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  26. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  27. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  28. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  29. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  30. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  31. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  32. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  33. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  34. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  35. ../../src/math/m_misc.inl.h ../../src/renderer/renderer.h \
  36. ../../src/utility/common.h ../../src/math/gmath.h \
  37. ../../src/resources/shader_prog.h ../../src/utility/common.h \
  38. ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
  39. ../../src/utility/util.h ../../src/scene/camera.h \
  40. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  41. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h
  42. @echo Compiling ../../src/uncategorized//input.cpp...
  43. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//input.cpp -o input.o
  44. skybox.o: ../../src/uncategorized//skybox.cpp \
  45. ../../src/uncategorized//skybox.h ../../src/utility/common.h \
  46. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  47. ../../src/resources/texture.h ../../src/utility/common.h \
  48. ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
  49. ../../src/utility/util.h ../../src/utility/common.h \
  50. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  51. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  52. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  53. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  54. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  55. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  56. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  57. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  58. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  59. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  60. ../../src/math/m_misc.inl.h ../../src/resources/resource.h \
  61. ../../src/renderer/renderer.h ../../src/utility/common.h \
  62. ../../src/math/gmath.h ../../src/resources/shader_prog.h \
  63. ../../src/scene/camera.h ../../src/utility/common.h \
  64. ../../src/uncategorized/collision.h ../../src/math/gmath.h \
  65. ../../src/scene/node.h ../../src/math/gmath.h ../../src/scene/camera.h \
  66. ../../src/scene/scene.h ../../src/uncategorized/skybox.h
  67. @echo Compiling ../../src/uncategorized//skybox.cpp...
  68. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//skybox.cpp -o skybox.o
  69. particles.o: ../../src/uncategorized//particles.cpp
  70. @echo Compiling ../../src/uncategorized//particles.cpp...
  71. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//particles.cpp -o particles.o
  72. memory.o: ../../src/uncategorized//memory.cpp \
  73. ../../src/uncategorized//memory.h ../../src/utility/common.h \
  74. ../../src/uncategorized/memory.h
  75. @echo Compiling ../../src/uncategorized//memory.cpp...
  76. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//memory.cpp -o memory.o
  77. engine_class.o: ../../src/uncategorized//engine_class.cpp \
  78. ../../src/uncategorized//engine_class.h ../../src/utility/common.h \
  79. ../../src/uncategorized/memory.h ../../src/utility/common.h
  80. @echo Compiling ../../src/uncategorized//engine_class.cpp...
  81. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//engine_class.cpp -o engine_class.o
  82. collision.o: ../../src/uncategorized//collision.cpp \
  83. ../../src/uncategorized//collision.h ../../src/utility/common.h \
  84. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  85. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  86. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  87. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  88. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  89. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  90. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  91. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  92. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  93. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  94. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  95. ../../src/math/m_misc.inl.h ../../src/renderer/renderer.h \
  96. ../../src/utility/common.h ../../src/math/gmath.h \
  97. ../../src/resources/shader_prog.h ../../src/utility/common.h \
  98. ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
  99. ../../src/utility/util.h ../../src/utility/common.h \
  100. ../../src/scene/camera.h ../../src/utility/common.h \
  101. ../../src/uncategorized/collision.h ../../src/scene/node.h \
  102. ../../src/math/gmath.h
  103. @echo Compiling ../../src/uncategorized//collision.cpp...
  104. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//collision.cpp -o collision.o
  105. map.o: ../../src/uncategorized//map.cpp ../../src/uncategorized//map.h \
  106. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  107. ../../src/utility/common.h ../../src/uncategorized//collision.h \
  108. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  109. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  110. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  111. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  112. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  113. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  114. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  115. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  116. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  117. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  118. ../../src/math/m_misc.inl.h ../../src/resources/mesh.h \
  119. ../../src/utility/common.h ../../src/math/gmath.h \
  120. ../../src/renderer/vbo.h ../../src/utility/common.h \
  121. ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
  122. ../../src/utility/util.h ../../src/utility/common.h \
  123. ../../src/uncategorized/collision.h ../../src/tokenizer/scanner.h \
  124. ../../src/utility/common.h ../../src/tokenizer/parser.h \
  125. ../../src/tokenizer/scanner.h ../../src/resources/resource.h \
  126. ../../src/scene/camera.h ../../src/utility/common.h \
  127. ../../src/uncategorized/collision.h ../../src/scene/node.h \
  128. ../../src/math/gmath.h
  129. @echo Compiling ../../src/uncategorized//map.cpp...
  130. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/uncategorized//map.cpp -o map.o
  131. main.o: ../../src//main.cpp ../../src/utility/common.h \
  132. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  133. ../../src/uncategorized/input.h ../../src/utility/app.h \
  134. ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
  135. ../../src/utility/common.h ../../src/math/forward_decls.h \
  136. ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
  137. ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  138. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  139. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  140. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  141. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  142. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  143. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  144. ../../src/math/m_misc.inl.h ../../src/scene/camera.h \
  145. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  146. ../../src/scene/node.h ../../src/math/gmath.h ../../src/math/gmath.h \
  147. ../../src/renderer/renderer.h ../../src/utility/common.h \
  148. ../../src/math/gmath.h ../../src/resources/shader_prog.h \
  149. ../../src/utility/common.h ../../src/resources/resource.h \
  150. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  151. ../../src/scene/camera.h ../../src/ui/ui.h ../../src/utility/common.h \
  152. ../../src/utility/app.h ../../src/uncategorized/particles.h \
  153. ../../src/resources/texture.h ../../src/resources/mesh.h \
  154. ../../src/math/gmath.h ../../src/renderer/vbo.h \
  155. ../../src/uncategorized/collision.h ../../src/scene/light.h \
  156. ../../src/resources/texture.h ../../src/scene/camera.h \
  157. ../../src/uncategorized/collision.h ../../src/resources/material.h \
  158. ../../src/resources/resource.h ../../src/scene/scene.h \
  159. ../../src/uncategorized/skybox.h ../../src/resources/texture.h \
  160. ../../src/tokenizer/scanner.h ../../src/utility/common.h \
  161. ../../src/uncategorized/skybox.h ../../src/uncategorized/map.h \
  162. ../../src/uncategorized/collision.h ../../src/scene/mesh_node.h \
  163. ../../src/resources/material.h ../../src/scene/skel_model_node.h \
  164. ../../src/scene/mesh_node.h ../../src/resources/skel_anim.h \
  165. ../../src/scene/skel_controller.h ../../src/scene/controller.h \
  166. ../../src/scene/skel_anim_controller.h ../../src/scene/skel_node.h \
  167. ../../src/resources/light_props.h
  168. @echo Compiling ../../src//main.cpp...
  169. @$(CXX) $(INCPATH) $(CFLAGS) ../../src//main.cpp -o main.o
  170. r_ms.o: ../../src/renderer//r_ms.cpp ../../src/renderer//renderer.h \
  171. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  172. ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
  173. ../../src/utility/common.h ../../src/math/forward_decls.h \
  174. ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
  175. ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  176. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  177. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  178. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  179. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  180. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  181. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  182. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  183. ../../src/utility/common.h ../../src/resources/resource.h \
  184. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  185. ../../src/utility/common.h ../../src/scene/camera.h \
  186. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  187. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  188. ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
  189. ../../src/resources/texture.h ../../src/resources/mesh.h \
  190. ../../src/math/gmath.h ../../src/renderer/vbo.h \
  191. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  192. ../../src/renderer//r_private.h ../../src/renderer//fbo.h \
  193. ../../src/resources/material.h ../../src/scene/mesh_node.h \
  194. ../../src/resources/material.h
  195. @echo Compiling ../../src/renderer//r_ms.cpp...
  196. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_ms.cpp -o r_ms.o
  197. r_pps_hdr.o: ../../src/renderer//r_pps_hdr.cpp \
  198. ../../src/renderer//renderer.h ../../src/utility/common.h \
  199. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  200. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  201. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  202. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  203. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  204. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  205. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  206. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  207. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  208. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  209. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  210. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  211. ../../src/utility/common.h ../../src/resources/resource.h \
  212. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  213. ../../src/utility/common.h ../../src/scene/camera.h \
  214. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  215. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  216. ../../src/resources/resource.h ../../src/resources/texture.h \
  217. ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
  218. ../../src/resources/texture.h ../../src/renderer//r_private.h \
  219. ../../src/renderer//fbo.h
  220. @echo Compiling ../../src/renderer//r_pps_hdr.cpp...
  221. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps_hdr.cpp -o r_pps_hdr.o
  222. r_pps.o: ../../src/renderer//r_pps.cpp ../../src/renderer//renderer.h \
  223. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  224. ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
  225. ../../src/utility/common.h ../../src/math/forward_decls.h \
  226. ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
  227. ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  228. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  229. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  230. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  231. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  232. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  233. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  234. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  235. ../../src/utility/common.h ../../src/resources/resource.h \
  236. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  237. ../../src/utility/common.h ../../src/scene/camera.h \
  238. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  239. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  240. ../../src/resources/resource.h ../../src/resources/texture.h \
  241. ../../src/renderer//r_private.h ../../src/renderer//fbo.h
  242. @echo Compiling ../../src/renderer//r_pps.cpp...
  243. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps.cpp -o r_pps.o
  244. r_is_shadows.o: ../../src/renderer//r_is_shadows.cpp \
  245. ../../src/renderer//renderer.h ../../src/utility/common.h \
  246. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  247. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  248. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  249. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  250. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  251. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  252. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  253. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  254. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  255. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  256. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  257. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  258. ../../src/utility/common.h ../../src/resources/resource.h \
  259. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  260. ../../src/utility/common.h ../../src/scene/camera.h \
  261. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  262. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  263. ../../src/resources/texture.h ../../src/scene/scene.h \
  264. ../../src/uncategorized/skybox.h ../../src/resources/texture.h \
  265. ../../src/resources/resource.h ../../src/renderer//r_private.h \
  266. ../../src/renderer//fbo.h ../../src/resources/material.h \
  267. ../../src/math/gmath.h ../../src/scene/mesh_node.h \
  268. ../../src/resources/material.h
  269. @echo Compiling ../../src/renderer//r_is_shadows.cpp...
  270. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_is_shadows.cpp -o r_is_shadows.o
  271. r_bs.o: ../../src/renderer//r_bs.cpp ../../src/renderer//renderer.h \
  272. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  273. ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
  274. ../../src/utility/common.h ../../src/math/forward_decls.h \
  275. ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
  276. ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  277. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  278. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  279. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  280. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  281. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  282. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  283. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  284. ../../src/utility/common.h ../../src/resources/resource.h \
  285. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  286. ../../src/utility/common.h ../../src/scene/camera.h \
  287. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  288. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  289. ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
  290. ../../src/resources/texture.h ../../src/resources/mesh.h \
  291. ../../src/math/gmath.h ../../src/renderer/vbo.h \
  292. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  293. ../../src/renderer//r_private.h ../../src/resources/resource.h \
  294. ../../src/renderer//fbo.h ../../src/scene/mesh_node.h \
  295. ../../src/resources/material.h ../../src/resources/material.h
  296. @echo Compiling ../../src/renderer//r_bs.cpp...
  297. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_bs.cpp -o r_bs.o
  298. r_ms_earlyz.o: ../../src/renderer//r_ms_earlyz.cpp \
  299. ../../src/renderer//renderer.h ../../src/utility/common.h \
  300. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  301. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  302. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  303. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  304. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  305. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  306. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  307. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  308. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  309. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  310. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  311. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  312. ../../src/utility/common.h ../../src/resources/resource.h \
  313. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  314. ../../src/utility/common.h ../../src/scene/camera.h \
  315. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  316. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  317. ../../src/resources/resource.h ../../src/resources/texture.h \
  318. ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
  319. ../../src/resources/texture.h ../../src/renderer//r_private.h \
  320. ../../src/renderer//fbo.h
  321. @echo Compiling ../../src/renderer//r_ms_earlyz.cpp...
  322. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_ms_earlyz.cpp -o r_ms_earlyz.o
  323. renderer.o: ../../src/renderer//renderer.cpp \
  324. ../../src/renderer//renderer.h ../../src/utility/common.h \
  325. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  326. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  327. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  328. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  329. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  330. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  331. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  332. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  333. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  334. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  335. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  336. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  337. ../../src/utility/common.h ../../src/resources/resource.h \
  338. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  339. ../../src/utility/common.h ../../src/scene/camera.h \
  340. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  341. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  342. ../../src/resources/texture.h ../../src/scene/scene.h \
  343. ../../src/uncategorized/skybox.h ../../src/resources/texture.h \
  344. ../../src/renderer//r_private.h
  345. @echo Compiling ../../src/renderer//renderer.cpp...
  346. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//renderer.cpp -o renderer.o
  347. r_pps_ssao.o: ../../src/renderer//r_pps_ssao.cpp \
  348. ../../src/renderer//renderer.h ../../src/utility/common.h \
  349. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  350. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  351. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  352. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  353. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  354. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  355. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  356. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  357. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  358. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  359. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  360. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  361. ../../src/utility/common.h ../../src/resources/resource.h \
  362. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  363. ../../src/utility/common.h ../../src/scene/camera.h \
  364. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  365. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  366. ../../src/resources/resource.h ../../src/resources/texture.h \
  367. ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
  368. ../../src/resources/texture.h ../../src/renderer//r_private.h \
  369. ../../src/renderer//fbo.h
  370. @echo Compiling ../../src/renderer//r_pps_ssao.cpp...
  371. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps_ssao.cpp -o r_pps_ssao.o
  372. r_is.o: ../../src/renderer//r_is.cpp ../../src/renderer//renderer.h \
  373. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  374. ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
  375. ../../src/utility/common.h ../../src/math/forward_decls.h \
  376. ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
  377. ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  378. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  379. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  380. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  381. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  382. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  383. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  384. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  385. ../../src/utility/common.h ../../src/resources/resource.h \
  386. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  387. ../../src/utility/common.h ../../src/scene/camera.h \
  388. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  389. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  390. ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
  391. ../../src/resources/texture.h ../../src/resources/mesh.h \
  392. ../../src/math/gmath.h ../../src/renderer/vbo.h \
  393. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  394. ../../src/scene/light.h ../../src/resources/texture.h \
  395. ../../src/scene/camera.h ../../src/resources/resource.h \
  396. ../../src/renderer//r_private.h ../../src/renderer//fbo.h \
  397. ../../src/resources/light_props.h
  398. @echo Compiling ../../src/renderer//r_is.cpp...
  399. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_is.cpp -o r_is.o
  400. r_dbg.o: ../../src/renderer//r_dbg.cpp ../../src/renderer//renderer.h \
  401. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  402. ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
  403. ../../src/utility/common.h ../../src/math/forward_decls.h \
  404. ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
  405. ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  406. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  407. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  408. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  409. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  410. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  411. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  412. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  413. ../../src/utility/common.h ../../src/resources/resource.h \
  414. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  415. ../../src/utility/common.h ../../src/scene/camera.h \
  416. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  417. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  418. ../../src/renderer//r_private.h ../../src/renderer//fbo.h \
  419. ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
  420. ../../src/resources/texture.h ../../src/resources/texture.h \
  421. ../../src/scene/node.h ../../src/scene/skel_node.h \
  422. ../../src/scene/controller.h
  423. @echo Compiling ../../src/renderer//r_dbg.cpp...
  424. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_dbg.cpp -o r_dbg.o
  425. r_pps_lscatt.o: ../../src/renderer//r_pps_lscatt.cpp \
  426. ../../src/renderer//renderer.h ../../src/utility/common.h \
  427. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  428. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  429. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  430. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  431. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  432. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  433. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  434. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  435. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  436. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  437. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  438. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  439. ../../src/utility/common.h ../../src/resources/resource.h \
  440. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  441. ../../src/utility/common.h ../../src/scene/camera.h \
  442. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  443. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  444. ../../src/resources/resource.h ../../src/resources/texture.h \
  445. ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
  446. ../../src/resources/texture.h ../../src/renderer//r_private.h \
  447. ../../src/renderer//fbo.h
  448. @echo Compiling ../../src/renderer//r_pps_lscatt.cpp...
  449. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_pps_lscatt.cpp -o r_pps_lscatt.o
  450. r_bs2.o: ../../src/renderer//r_bs2.cpp ../../src/renderer//renderer.h \
  451. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  452. ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
  453. ../../src/utility/common.h ../../src/math/forward_decls.h \
  454. ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
  455. ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  456. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  457. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  458. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  459. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  460. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  461. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  462. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  463. ../../src/utility/common.h ../../src/resources/resource.h \
  464. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  465. ../../src/utility/common.h ../../src/scene/camera.h \
  466. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  467. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  468. ../../src/scene/scene.h ../../src/uncategorized/skybox.h \
  469. ../../src/resources/texture.h ../../src/resources/mesh.h \
  470. ../../src/math/gmath.h ../../src/renderer/vbo.h \
  471. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  472. ../../src/renderer//r_private.h ../../src/resources/resource.h \
  473. ../../src/renderer//fbo.h ../../src/scene/mesh_node.h \
  474. ../../src/resources/material.h ../../src/resources/material.h
  475. @echo Compiling ../../src/renderer//r_bs2.cpp...
  476. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/renderer//r_bs2.cpp -o r_bs2.o
  477. mesh_node.o: ../../src/scene//mesh_node.cpp ../../src/scene//mesh_node.h \
  478. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  479. ../../src/utility/common.h ../../src/scene//node.h \
  480. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  481. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  482. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  483. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  484. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  485. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  486. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  487. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  488. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  489. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  490. ../../src/math/m_misc.inl.h ../../src/resources/material.h \
  491. ../../src/utility/common.h ../../src/math/gmath.h \
  492. ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
  493. ../../src/utility/util.h ../../src/utility/common.h \
  494. ../../src/resources/resource.h ../../src/resources/mesh.h \
  495. ../../src/renderer/vbo.h ../../src/utility/common.h \
  496. ../../src/uncategorized/collision.h ../../src/math/gmath.h \
  497. ../../src/renderer/renderer.h ../../src/math/gmath.h \
  498. ../../src/resources/shader_prog.h ../../src/scene/camera.h \
  499. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  500. ../../src/scene/node.h ../../src/scene//skel_node.h \
  501. ../../src/scene//controller.h ../../src/resources/skeleton.h \
  502. ../../src/scene//skel_controller.h \
  503. ../../src/scene//skel_anim_controller.h
  504. @echo Compiling ../../src/scene//mesh_node.cpp...
  505. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//mesh_node.cpp -o mesh_node.o
  506. skel_node.o: ../../src/scene//skel_node.cpp ../../src/scene//skel_node.h \
  507. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  508. ../../src/utility/common.h ../../src/scene//node.h \
  509. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  510. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  511. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  512. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  513. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  514. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  515. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  516. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  517. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  518. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  519. ../../src/math/m_misc.inl.h ../../src/scene//controller.h \
  520. ../../src/renderer/renderer.h ../../src/utility/common.h \
  521. ../../src/math/gmath.h ../../src/resources/shader_prog.h \
  522. ../../src/utility/common.h ../../src/resources/resource.h \
  523. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  524. ../../src/utility/common.h ../../src/scene/camera.h \
  525. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  526. ../../src/math/gmath.h ../../src/scene/node.h \
  527. ../../src/resources/skel_anim.h ../../src/math/gmath.h \
  528. ../../src/resources/skeleton.h ../../src/scene//skel_anim_controller.h
  529. @echo Compiling ../../src/scene//skel_node.cpp...
  530. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//skel_node.cpp -o skel_node.o
  531. skel_anim_controller.o: ../../src/scene//skel_anim_controller.cpp \
  532. ../../src/scene//skel_anim_controller.h ../../src/utility/common.h \
  533. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  534. ../../src/scene//controller.h ../../src/math/gmath.h \
  535. ../../src/math/vec2.h ../../src/utility/common.h \
  536. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  537. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  538. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  539. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  540. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  541. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  542. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  543. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  544. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  545. ../../src/math/m_misc.inl.h ../../src/resources/skel_anim.h \
  546. ../../src/utility/common.h ../../src/resources/resource.h \
  547. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  548. ../../src/utility/common.h ../../src/math/gmath.h \
  549. ../../src/scene//skel_node.h ../../src/scene//node.h \
  550. ../../src/resources/skeleton.h ../../src/renderer/renderer.h \
  551. ../../src/utility/common.h ../../src/math/gmath.h \
  552. ../../src/resources/shader_prog.h ../../src/scene/camera.h \
  553. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  554. ../../src/math/gmath.h ../../src/scene/node.h
  555. @echo Compiling ../../src/scene//skel_anim_controller.cpp...
  556. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//skel_anim_controller.cpp -o skel_anim_controller.o
  557. light.o: ../../src/scene//light.cpp ../../src/scene//light.h \
  558. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  559. ../../src/utility/common.h ../../src/resources/texture.h \
  560. ../../src/utility/common.h ../../src/resources/resource.h \
  561. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  562. ../../src/utility/common.h ../../src/scene//node.h \
  563. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  564. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  565. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  566. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  567. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  568. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  569. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  570. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  571. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  572. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  573. ../../src/math/m_misc.inl.h ../../src/scene//camera.h \
  574. ../../src/uncategorized/collision.h ../../src/math/gmath.h \
  575. ../../src/renderer/renderer.h ../../src/utility/common.h \
  576. ../../src/math/gmath.h ../../src/resources/shader_prog.h \
  577. ../../src/scene/camera.h ../../src/resources/light_props.h \
  578. ../../src/math/gmath.h
  579. @echo Compiling ../../src/scene//light.cpp...
  580. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//light.cpp -o light.o
  581. skel_model_node.o: ../../src/scene//skel_model_node.cpp \
  582. ../../src/scene//skel_model_node.h ../../src/utility/common.h \
  583. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  584. ../../src/scene//mesh_node.h ../../src/scene//node.h \
  585. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  586. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  587. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  588. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  589. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  590. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  591. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  592. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  593. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  594. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  595. ../../src/math/m_misc.inl.h ../../src/resources/material.h \
  596. ../../src/utility/common.h ../../src/math/gmath.h \
  597. ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
  598. ../../src/utility/util.h ../../src/utility/common.h \
  599. ../../src/tokenizer/parser.h ../../src/utility/common.h \
  600. ../../src/tokenizer/scanner.h ../../src/scene//skel_node.h \
  601. ../../src/scene//controller.h ../../src/scene//skel_controller.h
  602. @echo Compiling ../../src/scene//skel_model_node.cpp...
  603. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//skel_model_node.cpp -o skel_model_node.o
  604. controller.o: ../../src/scene//controller.cpp \
  605. ../../src/scene//controller.h ../../src/utility/common.h \
  606. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  607. ../../src/scene//scene.h ../../src/uncategorized/skybox.h \
  608. ../../src/resources/texture.h ../../src/utility/common.h \
  609. ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
  610. ../../src/utility/util.h ../../src/utility/common.h \
  611. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  612. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  613. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  614. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  615. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  616. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  617. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  618. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  619. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  620. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  621. ../../src/math/m_misc.inl.h
  622. @echo Compiling ../../src/scene//controller.cpp...
  623. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//controller.cpp -o controller.o
  624. node.o: ../../src/scene//node.cpp ../../src/scene//node.h \
  625. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  626. ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
  627. ../../src/utility/common.h ../../src/math/forward_decls.h \
  628. ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
  629. ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  630. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  631. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  632. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  633. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  634. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  635. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  636. ../../src/math/m_misc.inl.h ../../src/renderer/renderer.h \
  637. ../../src/utility/common.h ../../src/math/gmath.h \
  638. ../../src/resources/shader_prog.h ../../src/utility/common.h \
  639. ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
  640. ../../src/utility/util.h ../../src/utility/common.h \
  641. ../../src/scene/camera.h ../../src/utility/common.h \
  642. ../../src/uncategorized/collision.h ../../src/math/gmath.h \
  643. ../../src/scene/node.h ../../src/uncategorized/collision.h \
  644. ../../src/scene//controller.h
  645. @echo Compiling ../../src/scene//node.cpp...
  646. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//node.cpp -o node.o
  647. camera.o: ../../src/scene//camera.cpp ../../src/scene//camera.h \
  648. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  649. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  650. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  651. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  652. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  653. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  654. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  655. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  656. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  657. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  658. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  659. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  660. ../../src/math/m_misc.inl.h ../../src/scene//node.h \
  661. ../../src/math/gmath.h ../../src/renderer/renderer.h \
  662. ../../src/utility/common.h ../../src/math/gmath.h \
  663. ../../src/resources/shader_prog.h ../../src/utility/common.h \
  664. ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
  665. ../../src/utility/util.h ../../src/utility/common.h \
  666. ../../src/scene/camera.h
  667. @echo Compiling ../../src/scene//camera.cpp...
  668. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//camera.cpp -o camera.o
  669. scene.o: ../../src/scene//scene.cpp ../../src/scene//scene.h \
  670. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  671. ../../src/utility/common.h ../../src/uncategorized/skybox.h \
  672. ../../src/resources/texture.h ../../src/utility/common.h \
  673. ../../src/resources/resource.h ../../src/uncategorized/engine_class.h \
  674. ../../src/utility/util.h ../../src/utility/common.h \
  675. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  676. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  677. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  678. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  679. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  680. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  681. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  682. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  683. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  684. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  685. ../../src/math/m_misc.inl.h ../../src/scene//skel_node.h \
  686. ../../src/scene//node.h ../../src/math/gmath.h \
  687. ../../src/scene//controller.h ../../src/scene//camera.h \
  688. ../../src/uncategorized/collision.h ../../src/scene//mesh_node.h \
  689. ../../src/resources/material.h ../../src/math/gmath.h \
  690. ../../src/scene//light.h ../../src/resources/texture.h
  691. @echo Compiling ../../src/scene//scene.cpp...
  692. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/scene//scene.cpp -o scene.o
  693. material.o: ../../src/resources//material.cpp \
  694. ../../src/resources//material.h ../../src/utility/common.h \
  695. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  696. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  697. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  698. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  699. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  700. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  701. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  702. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  703. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  704. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  705. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  706. ../../src/math/m_misc.inl.h ../../src/resources//resource.h \
  707. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  708. ../../src/utility/common.h ../../src/tokenizer/scanner.h \
  709. ../../src/utility/common.h ../../src/tokenizer/parser.h \
  710. ../../src/tokenizer/scanner.h ../../src/resources//texture.h \
  711. ../../src/resources//shader_prog.h ../../src/renderer/renderer.h \
  712. ../../src/utility/common.h ../../src/math/gmath.h \
  713. ../../src/resources/shader_prog.h ../../src/scene/camera.h \
  714. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  715. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h
  716. @echo Compiling ../../src/resources//material.cpp...
  717. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//material.cpp -o material.o
  718. texture.o: ../../src/resources//texture.cpp \
  719. ../../src/resources//texture.h ../../src/utility/common.h \
  720. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  721. ../../src/resources//resource.h ../../src/uncategorized/engine_class.h \
  722. ../../src/utility/util.h ../../src/utility/common.h \
  723. ../../src/renderer/renderer.h ../../src/utility/common.h \
  724. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  725. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  726. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  727. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  728. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  729. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  730. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  731. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  732. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  733. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  734. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  735. ../../src/utility/common.h ../../src/resources/resource.h \
  736. ../../src/scene/camera.h ../../src/utility/common.h \
  737. ../../src/uncategorized/collision.h ../../src/math/gmath.h \
  738. ../../src/scene/node.h ../../src/math/gmath.h
  739. @echo Compiling ../../src/resources//texture.cpp...
  740. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//texture.cpp -o texture.o
  741. skel_anim.o: ../../src/resources//skel_anim.cpp \
  742. ../../src/resources//skel_anim.h ../../src/utility/common.h \
  743. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  744. ../../src/resources//resource.h ../../src/uncategorized/engine_class.h \
  745. ../../src/utility/util.h ../../src/utility/common.h \
  746. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  747. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  748. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  749. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  750. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  751. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  752. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  753. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  754. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  755. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  756. ../../src/math/m_misc.inl.h ../../src/tokenizer/scanner.h \
  757. ../../src/utility/common.h ../../src/tokenizer/parser.h \
  758. ../../src/tokenizer/scanner.h
  759. @echo Compiling ../../src/resources//skel_anim.cpp...
  760. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//skel_anim.cpp -o skel_anim.o
  761. extension.o: ../../src/resources//extension.cpp \
  762. ../../src/resources//extension.h ../../src/utility/common.h \
  763. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  764. ../../src/resources//resource.h ../../src/uncategorized/engine_class.h \
  765. ../../src/utility/util.h ../../src/utility/common.h
  766. @echo Compiling ../../src/resources//extension.cpp...
  767. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//extension.cpp -o extension.o
  768. shader_parser.o: ../../src/resources//shader_parser.cpp \
  769. ../../src/resources//shader_parser.h ../../src/utility/common.h \
  770. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  771. ../../src/tokenizer/scanner.h ../../src/utility/common.h \
  772. ../../src/tokenizer/parser.h ../../src/tokenizer/scanner.h \
  773. ../../src/utility/util.h ../../src/utility/common.h
  774. @echo Compiling ../../src/resources//shader_parser.cpp...
  775. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//shader_parser.cpp -o shader_parser.o
  776. skeleton.o: ../../src/resources//skeleton.cpp \
  777. ../../src/resources//skeleton.h ../../src/utility/common.h \
  778. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  779. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  780. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  781. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  782. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  783. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  784. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  785. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  786. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  787. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  788. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  789. ../../src/math/m_misc.inl.h ../../src/resources//resource.h \
  790. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  791. ../../src/utility/common.h ../../src/tokenizer/scanner.h \
  792. ../../src/utility/common.h ../../src/tokenizer/parser.h \
  793. ../../src/tokenizer/scanner.h
  794. @echo Compiling ../../src/resources//skeleton.cpp...
  795. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//skeleton.cpp -o skeleton.o
  796. resource.o: ../../src/resources//resource.cpp \
  797. ../../src/resources//resource.h ../../src/utility/common.h \
  798. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  799. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  800. ../../src/utility/common.h ../../src/resources//texture.h \
  801. ../../src/resources//material.h ../../src/math/gmath.h \
  802. ../../src/math/vec2.h ../../src/utility/common.h \
  803. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  804. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  805. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  806. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  807. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  808. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  809. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  810. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  811. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  812. ../../src/math/m_misc.inl.h ../../src/resources//shader_prog.h \
  813. ../../src/resources//mesh.h ../../src/renderer/vbo.h \
  814. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  815. ../../src/math/gmath.h ../../src/resources//skel_anim.h \
  816. ../../src/resources//light_props.h
  817. @echo Compiling ../../src/resources//resource.cpp...
  818. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//resource.cpp -o resource.o
  819. light_props.o: ../../src/resources//light_props.cpp \
  820. ../../src/resources//light_props.h ../../src/utility/common.h \
  821. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  822. ../../src/resources//resource.h ../../src/uncategorized/engine_class.h \
  823. ../../src/utility/util.h ../../src/utility/common.h \
  824. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  825. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  826. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  827. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  828. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  829. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  830. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  831. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  832. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  833. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  834. ../../src/math/m_misc.inl.h ../../src/tokenizer/parser.h \
  835. ../../src/utility/common.h ../../src/tokenizer/scanner.h \
  836. ../../src/resources//texture.h
  837. @echo Compiling ../../src/resources//light_props.cpp...
  838. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//light_props.cpp -o light_props.o
  839. mesh.o: ../../src/resources//mesh.cpp ../../src/resources//mesh.h \
  840. ../../src/utility/common.h ../../src/uncategorized/memory.h \
  841. ../../src/utility/common.h ../../src/math/gmath.h ../../src/math/vec2.h \
  842. ../../src/utility/common.h ../../src/math/forward_decls.h \
  843. ../../src/math/vec2.inl.h ../../src/math/m_dflt_header.h \
  844. ../../src/math/vec3.h ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  845. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  846. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  847. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  848. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  849. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  850. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  851. ../../src/math/m_misc.inl.h ../../src/renderer/vbo.h \
  852. ../../src/utility/common.h ../../src/resources//resource.h \
  853. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  854. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  855. ../../src/math/gmath.h ../../src/renderer/renderer.h \
  856. ../../src/math/gmath.h ../../src/resources/shader_prog.h \
  857. ../../src/utility/common.h ../../src/resources/resource.h \
  858. ../../src/scene/camera.h ../../src/utility/common.h \
  859. ../../src/uncategorized/collision.h ../../src/scene/node.h \
  860. ../../src/math/gmath.h ../../src/tokenizer/scanner.h \
  861. ../../src/utility/common.h ../../src/tokenizer/parser.h \
  862. ../../src/tokenizer/scanner.h
  863. @echo Compiling ../../src/resources//mesh.cpp...
  864. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//mesh.cpp -o mesh.o
  865. shader_prog.o: ../../src/resources//shader_prog.cpp \
  866. ../../src/resources//shader_prog.h ../../src/utility/common.h \
  867. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  868. ../../src/resources//resource.h ../../src/uncategorized/engine_class.h \
  869. ../../src/utility/util.h ../../src/utility/common.h \
  870. ../../src/renderer/renderer.h ../../src/utility/common.h \
  871. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  872. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  873. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  874. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  875. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  876. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  877. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  878. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  879. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  880. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  881. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  882. ../../src/scene/camera.h ../../src/utility/common.h \
  883. ../../src/uncategorized/collision.h ../../src/math/gmath.h \
  884. ../../src/scene/node.h ../../src/math/gmath.h \
  885. ../../src/resources//shader_parser.h ../../src/resources//texture.h
  886. @echo Compiling ../../src/resources//shader_prog.cpp...
  887. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/resources//shader_prog.cpp -o shader_prog.o
  888. app.o: ../../src/utility//app.cpp ../../src/utility//app.h \
  889. ../../src/utility//common.h ../../src/uncategorized/memory.h \
  890. ../../src/utility/common.h
  891. @echo Compiling ../../src/utility//app.cpp...
  892. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/utility//app.cpp -o app.o
  893. common.o: ../../src/utility//common.cpp ../../src/utility//common.h \
  894. ../../src/uncategorized/memory.h ../../src/utility/common.h
  895. @echo Compiling ../../src/utility//common.cpp...
  896. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/utility//common.cpp -o common.o
  897. util.o: ../../src/utility//util.cpp ../../src/utility//util.h \
  898. ../../src/utility//common.h ../../src/uncategorized/memory.h \
  899. ../../src/utility/common.h
  900. @echo Compiling ../../src/utility//util.cpp...
  901. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/utility//util.cpp -o util.o
  902. ui.o: ../../src/ui//ui.cpp ../../src/ui//ui.h ../../src/utility/common.h \
  903. ../../src/uncategorized/memory.h ../../src/utility/common.h \
  904. ../../src/renderer/renderer.h ../../src/utility/common.h \
  905. ../../src/math/gmath.h ../../src/math/vec2.h ../../src/utility/common.h \
  906. ../../src/math/forward_decls.h ../../src/math/vec2.inl.h \
  907. ../../src/math/m_dflt_header.h ../../src/math/vec3.h \
  908. ../../src/math/vec3.inl.h ../../src/math/vec4.h \
  909. ../../src/math/vec4.inl.h ../../src/math/quat.h \
  910. ../../src/math/quat.inl.h ../../src/math/axisang.h \
  911. ../../src/math/axisang.inl.h ../../src/math/euler.h \
  912. ../../src/math/euler.inl.h ../../src/math/mat3.h \
  913. ../../src/math/mat3.inl.h ../../src/math/mat4.h \
  914. ../../src/math/mat4.inl.h ../../src/math/m_misc.h \
  915. ../../src/math/m_misc.inl.h ../../src/resources/shader_prog.h \
  916. ../../src/utility/common.h ../../src/resources/resource.h \
  917. ../../src/uncategorized/engine_class.h ../../src/utility/util.h \
  918. ../../src/utility/common.h ../../src/scene/camera.h \
  919. ../../src/utility/common.h ../../src/uncategorized/collision.h \
  920. ../../src/math/gmath.h ../../src/scene/node.h ../../src/math/gmath.h \
  921. ../../src/resources/texture.h ../../src/resources/resource.h
  922. @echo Compiling ../../src/ui//ui.cpp...
  923. @$(CXX) $(INCPATH) $(CFLAGS) ../../src/ui//ui.cpp -o ui.o
  924. clean:
  925. rm -f *.o
  926. rm -f *.gch
  927. rm -f *~
  928. rm -f $(EXECUTABLE)