Makefile.deps 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845
  1. ode/src/array.o: \
  2. ode/src/array.cpp \
  3. include/ode/config.h \
  4. include/ode/memory.h \
  5. include/ode/error.h \
  6. ode/src/array.h
  7. ode/src/error.o: \
  8. ode/src/error.cpp \
  9. include/ode/config.h \
  10. include/ode/error.h
  11. ode/src/memory.o: \
  12. ode/src/memory.cpp \
  13. include/ode/config.h \
  14. include/ode/memory.h \
  15. include/ode/error.h
  16. ode/src/obstack.o: \
  17. ode/src/obstack.cpp \
  18. include/ode/common.h \
  19. include/ode/config.h \
  20. include/ode/error.h \
  21. include/ode/memory.h \
  22. ode/src/obstack.h \
  23. ode/src/objects.h \
  24. include/ode/mass.h \
  25. ode/src/array.h
  26. ode/src/odemath.o: \
  27. ode/src/odemath.cpp \
  28. include/ode/common.h \
  29. include/ode/config.h \
  30. include/ode/error.h \
  31. include/ode/odemath.h
  32. ode/src/matrix.o: \
  33. ode/src/matrix.cpp \
  34. include/ode/common.h \
  35. include/ode/config.h \
  36. include/ode/error.h \
  37. include/ode/matrix.h
  38. ode/src/misc.o: \
  39. ode/src/misc.cpp \
  40. include/ode/config.h \
  41. include/ode/misc.h \
  42. include/ode/common.h \
  43. include/ode/error.h \
  44. include/ode/matrix.h
  45. ode/src/rotation.o: \
  46. ode/src/rotation.cpp \
  47. include/ode/rotation.h \
  48. include/ode/common.h \
  49. include/ode/config.h \
  50. include/ode/error.h \
  51. include/ode/compatibility.h \
  52. include/ode/odemath.h
  53. ode/src/mass.o: \
  54. ode/src/mass.cpp \
  55. include/ode/config.h \
  56. include/ode/mass.h \
  57. include/ode/common.h \
  58. include/ode/error.h \
  59. include/ode/odemath.h \
  60. include/ode/matrix.h
  61. ode/src/ode.o: \
  62. ode/src/ode.cpp \
  63. ode/src/objects.h \
  64. include/ode/common.h \
  65. include/ode/config.h \
  66. include/ode/error.h \
  67. include/ode/memory.h \
  68. include/ode/mass.h \
  69. ode/src/array.h \
  70. include/ode/ode.h \
  71. include/ode/compatibility.h \
  72. include/ode/contact.h \
  73. include/ode/odemath.h \
  74. include/ode/matrix.h \
  75. include/ode/timer.h \
  76. include/ode/rotation.h \
  77. include/ode/misc.h \
  78. include/ode/objects.h \
  79. include/ode/odecpp.h \
  80. include/ode/collision_space.h \
  81. include/ode/collision.h \
  82. include/ode/collision_trimesh.h \
  83. include/ode/odecpp_collision.h \
  84. include/ode/export-dif.h \
  85. ode/src/joint.h \
  86. ode/src/obstack.h \
  87. ode/src/step.h \
  88. ode/src/quickstep.h \
  89. ode/src/util.h
  90. ode/src/step.o: \
  91. ode/src/step.cpp \
  92. ode/src/objects.h \
  93. include/ode/common.h \
  94. include/ode/config.h \
  95. include/ode/error.h \
  96. include/ode/memory.h \
  97. include/ode/mass.h \
  98. ode/src/array.h \
  99. ode/src/joint.h \
  100. include/ode/contact.h \
  101. ode/src/obstack.h \
  102. include/ode/odemath.h \
  103. include/ode/rotation.h \
  104. include/ode/compatibility.h \
  105. include/ode/timer.h \
  106. include/ode/matrix.h \
  107. ode/src/lcp.h \
  108. ode/src/util.h
  109. ode/src/stepfast.o: \
  110. ode/src/stepfast.cpp \
  111. ode/src/objects.h \
  112. include/ode/common.h \
  113. include/ode/config.h \
  114. include/ode/error.h \
  115. include/ode/memory.h \
  116. include/ode/mass.h \
  117. ode/src/array.h \
  118. ode/src/joint.h \
  119. include/ode/contact.h \
  120. ode/src/obstack.h \
  121. include/ode/objects.h \
  122. include/ode/odemath.h \
  123. include/ode/rotation.h \
  124. include/ode/compatibility.h \
  125. include/ode/timer.h \
  126. include/ode/matrix.h \
  127. include/ode/misc.h \
  128. ode/src/lcp.h \
  129. ode/src/step.h \
  130. ode/src/util.h
  131. ode/src/quickstep.o: \
  132. ode/src/quickstep.cpp \
  133. ode/src/objects.h \
  134. include/ode/common.h \
  135. include/ode/config.h \
  136. include/ode/error.h \
  137. include/ode/memory.h \
  138. include/ode/mass.h \
  139. ode/src/array.h \
  140. ode/src/joint.h \
  141. include/ode/contact.h \
  142. ode/src/obstack.h \
  143. include/ode/odemath.h \
  144. include/ode/rotation.h \
  145. include/ode/compatibility.h \
  146. include/ode/timer.h \
  147. include/ode/matrix.h \
  148. ode/src/lcp.h \
  149. ode/src/util.h
  150. ode/src/util.o: \
  151. ode/src/util.cpp \
  152. include/ode/ode.h \
  153. include/ode/config.h \
  154. include/ode/compatibility.h \
  155. include/ode/common.h \
  156. include/ode/error.h \
  157. include/ode/contact.h \
  158. include/ode/memory.h \
  159. include/ode/odemath.h \
  160. include/ode/matrix.h \
  161. include/ode/timer.h \
  162. include/ode/rotation.h \
  163. include/ode/mass.h \
  164. include/ode/misc.h \
  165. include/ode/objects.h \
  166. include/ode/odecpp.h \
  167. include/ode/collision_space.h \
  168. include/ode/collision.h \
  169. include/ode/collision_trimesh.h \
  170. include/ode/odecpp_collision.h \
  171. include/ode/export-dif.h \
  172. ode/src/objects.h \
  173. ode/src/array.h \
  174. ode/src/joint.h \
  175. ode/src/obstack.h \
  176. ode/src/util.h
  177. ode/src/lcp.o: \
  178. ode/src/lcp.cpp \
  179. include/ode/common.h \
  180. include/ode/config.h \
  181. include/ode/error.h \
  182. ode/src/lcp.h \
  183. include/ode/matrix.h \
  184. include/ode/misc.h \
  185. ode/src/mat.h \
  186. include/ode/timer.h
  187. ode/src/joint.o: \
  188. ode/src/joint.cpp \
  189. include/ode/odemath.h \
  190. include/ode/common.h \
  191. include/ode/config.h \
  192. include/ode/error.h \
  193. include/ode/rotation.h \
  194. include/ode/compatibility.h \
  195. include/ode/matrix.h \
  196. ode/src/joint.h \
  197. ode/src/objects.h \
  198. include/ode/memory.h \
  199. include/ode/mass.h \
  200. ode/src/array.h \
  201. include/ode/contact.h \
  202. ode/src/obstack.h
  203. ode/src/timer.o: \
  204. ode/src/timer.cpp \
  205. include/ode/common.h \
  206. include/ode/config.h \
  207. include/ode/error.h \
  208. include/ode/timer.h
  209. ode/src/mat.o: \
  210. ode/src/mat.cpp \
  211. include/ode/config.h \
  212. include/ode/misc.h \
  213. include/ode/common.h \
  214. include/ode/error.h \
  215. include/ode/matrix.h \
  216. include/ode/memory.h \
  217. ode/src/mat.h
  218. ode/src/testing.o: \
  219. ode/src/testing.cpp \
  220. include/ode/config.h \
  221. include/ode/misc.h \
  222. include/ode/common.h \
  223. include/ode/error.h \
  224. include/ode/memory.h \
  225. ode/src/testing.h \
  226. ode/src/array.h
  227. ode/src/export-dif.o: \
  228. ode/src/export-dif.cpp \
  229. include/ode/ode.h \
  230. include/ode/config.h \
  231. include/ode/compatibility.h \
  232. include/ode/common.h \
  233. include/ode/error.h \
  234. include/ode/contact.h \
  235. include/ode/memory.h \
  236. include/ode/odemath.h \
  237. include/ode/matrix.h \
  238. include/ode/timer.h \
  239. include/ode/rotation.h \
  240. include/ode/mass.h \
  241. include/ode/misc.h \
  242. include/ode/objects.h \
  243. include/ode/odecpp.h \
  244. include/ode/collision_space.h \
  245. include/ode/collision.h \
  246. include/ode/collision_trimesh.h \
  247. include/ode/odecpp_collision.h \
  248. include/ode/export-dif.h \
  249. ode/src/objects.h \
  250. ode/src/array.h \
  251. ode/src/joint.h \
  252. ode/src/obstack.h \
  253. ode/src/collision_kernel.h
  254. ode/src/collision_kernel.o: \
  255. ode/src/collision_kernel.cpp \
  256. include/ode/common.h \
  257. include/ode/config.h \
  258. include/ode/error.h \
  259. include/ode/matrix.h \
  260. include/ode/rotation.h \
  261. include/ode/compatibility.h \
  262. include/ode/objects.h \
  263. include/ode/mass.h \
  264. include/ode/contact.h \
  265. ode/src/collision_kernel.h \
  266. include/ode/collision.h \
  267. include/ode/collision_space.h \
  268. include/ode/collision_trimesh.h \
  269. ode/src/objects.h \
  270. include/ode/memory.h \
  271. ode/src/array.h \
  272. ode/src/collision_util.h \
  273. ode/src/collision_std.h \
  274. ode/src/collision_transform.h \
  275. ode/src/collision_trimesh_internal.h
  276. ode/src/collision_util.o: \
  277. ode/src/collision_util.cpp \
  278. include/ode/common.h \
  279. include/ode/config.h \
  280. include/ode/error.h \
  281. include/ode/collision.h \
  282. include/ode/collision_space.h \
  283. include/ode/contact.h \
  284. include/ode/collision_trimesh.h \
  285. include/ode/odemath.h \
  286. ode/src/collision_util.h
  287. ode/src/collision_std.o: \
  288. ode/src/collision_std.cpp \
  289. include/ode/common.h \
  290. include/ode/config.h \
  291. include/ode/error.h \
  292. include/ode/collision.h \
  293. include/ode/collision_space.h \
  294. include/ode/contact.h \
  295. include/ode/collision_trimesh.h \
  296. include/ode/matrix.h \
  297. include/ode/rotation.h \
  298. include/ode/compatibility.h \
  299. include/ode/odemath.h \
  300. ode/src/collision_kernel.h \
  301. ode/src/objects.h \
  302. include/ode/memory.h \
  303. include/ode/mass.h \
  304. ode/src/array.h \
  305. ode/src/collision_std.h \
  306. ode/src/collision_util.h
  307. ode/src/collision_space.o: \
  308. ode/src/collision_space.cpp \
  309. include/ode/common.h \
  310. include/ode/config.h \
  311. include/ode/error.h \
  312. include/ode/matrix.h \
  313. include/ode/collision_space.h \
  314. include/ode/collision.h \
  315. include/ode/contact.h \
  316. include/ode/collision_trimesh.h \
  317. ode/src/collision_kernel.h \
  318. ode/src/objects.h \
  319. include/ode/memory.h \
  320. include/ode/mass.h \
  321. ode/src/array.h \
  322. ode/src/collision_space_internal.h
  323. ode/src/collision_transform.o: \
  324. ode/src/collision_transform.cpp \
  325. include/ode/collision.h \
  326. include/ode/common.h \
  327. include/ode/config.h \
  328. include/ode/error.h \
  329. include/ode/collision_space.h \
  330. include/ode/contact.h \
  331. include/ode/collision_trimesh.h \
  332. include/ode/matrix.h \
  333. include/ode/rotation.h \
  334. include/ode/compatibility.h \
  335. include/ode/odemath.h \
  336. ode/src/collision_transform.h \
  337. ode/src/collision_kernel.h \
  338. ode/src/objects.h \
  339. include/ode/memory.h \
  340. include/ode/mass.h \
  341. ode/src/array.h \
  342. ode/src/collision_util.h
  343. ode/src/collision_quadtreespace.o: \
  344. ode/src/collision_quadtreespace.cpp \
  345. include/ode/common.h \
  346. include/ode/config.h \
  347. include/ode/error.h \
  348. include/ode/matrix.h \
  349. include/ode/collision_space.h \
  350. include/ode/collision.h \
  351. include/ode/contact.h \
  352. include/ode/collision_trimesh.h \
  353. ode/src/collision_kernel.h \
  354. ode/src/objects.h \
  355. include/ode/memory.h \
  356. include/ode/mass.h \
  357. ode/src/array.h \
  358. ode/src/collision_space_internal.h
  359. ode/src/OPC_AABBCollider.o: \
  360. OPCODE/OPC_AABBCollider.cpp \
  361. OPCODE/Stdafx.h \
  362. OPCODE/Opcode.h \
  363. OPCODE/OPC_IceHook.h \
  364. OPCODE/Ice/IcePreprocessor.h \
  365. OPCODE/Ice/IceTypes.h \
  366. OPCODE/Ice/IceFPU.h \
  367. OPCODE/Ice/IceMemoryMacros.h \
  368. OPCODE/Ice/IceUtils.h \
  369. OPCODE/Ice/IceContainer.h \
  370. OPCODE/Ice/IcePairs.h \
  371. OPCODE/Ice/IceRevisitedRadix.h \
  372. OPCODE/Ice/IceRandom.h \
  373. OPCODE/Ice/IceAxes.h \
  374. OPCODE/Ice/IcePoint.h \
  375. OPCODE/Ice/IceHPoint.h \
  376. OPCODE/Ice/IceMatrix3x3.h \
  377. OPCODE/Ice/IceMatrix4x4.h \
  378. OPCODE/Ice/IcePlane.h \
  379. OPCODE/Ice/IceRay.h \
  380. OPCODE/Ice/IceIndexedTriangle.h \
  381. OPCODE/Ice/IceTriangle.h \
  382. OPCODE/Ice/IceTriList.h \
  383. OPCODE/Ice/IceAABB.h \
  384. OPCODE/Ice/IceOBB.h \
  385. OPCODE/Ice/IceBoundingSphere.h \
  386. OPCODE/Ice/IceSegment.h \
  387. OPCODE/Ice/IceLSS.h \
  388. OPCODE/OPC_Settings.h \
  389. OPCODE/OPC_Common.h \
  390. OPCODE/OPC_MeshInterface.h \
  391. OPCODE/OPC_TreeBuilders.h \
  392. OPCODE/OPC_AABBTree.h \
  393. OPCODE/OPC_OptimizedTree.h \
  394. OPCODE/OPC_BaseModel.h \
  395. OPCODE/OPC_Model.h \
  396. OPCODE/OPC_HybridModel.h \
  397. OPCODE/OPC_Collider.h \
  398. OPCODE/OPC_VolumeCollider.h \
  399. OPCODE/OPC_TreeCollider.h \
  400. OPCODE/OPC_RayCollider.h \
  401. OPCODE/OPC_SphereCollider.h \
  402. OPCODE/OPC_OBBCollider.h \
  403. OPCODE/OPC_AABBCollider.h \
  404. OPCODE/OPC_LSSCollider.h \
  405. OPCODE/OPC_PlanesCollider.h \
  406. OPCODE/OPC_Picking.h \
  407. OPCODE/OPC_BoxPruning.h \
  408. OPCODE/OPC_SweepAndPrune.h \
  409. OPCODE/OPC_BoxBoxOverlap.h \
  410. OPCODE/OPC_TriBoxOverlap.h
  411. ode/src/OPC_AABBTree.o: \
  412. OPCODE/OPC_AABBTree.cpp \
  413. OPCODE/Stdafx.h \
  414. OPCODE/Opcode.h \
  415. OPCODE/OPC_IceHook.h \
  416. OPCODE/Ice/IcePreprocessor.h \
  417. OPCODE/Ice/IceTypes.h \
  418. OPCODE/Ice/IceFPU.h \
  419. OPCODE/Ice/IceMemoryMacros.h \
  420. OPCODE/Ice/IceUtils.h \
  421. OPCODE/Ice/IceContainer.h \
  422. OPCODE/Ice/IcePairs.h \
  423. OPCODE/Ice/IceRevisitedRadix.h \
  424. OPCODE/Ice/IceRandom.h \
  425. OPCODE/Ice/IceAxes.h \
  426. OPCODE/Ice/IcePoint.h \
  427. OPCODE/Ice/IceHPoint.h \
  428. OPCODE/Ice/IceMatrix3x3.h \
  429. OPCODE/Ice/IceMatrix4x4.h \
  430. OPCODE/Ice/IcePlane.h \
  431. OPCODE/Ice/IceRay.h \
  432. OPCODE/Ice/IceIndexedTriangle.h \
  433. OPCODE/Ice/IceTriangle.h \
  434. OPCODE/Ice/IceTriList.h \
  435. OPCODE/Ice/IceAABB.h \
  436. OPCODE/Ice/IceOBB.h \
  437. OPCODE/Ice/IceBoundingSphere.h \
  438. OPCODE/Ice/IceSegment.h \
  439. OPCODE/Ice/IceLSS.h \
  440. OPCODE/OPC_Settings.h \
  441. OPCODE/OPC_Common.h \
  442. OPCODE/OPC_MeshInterface.h \
  443. OPCODE/OPC_TreeBuilders.h \
  444. OPCODE/OPC_AABBTree.h \
  445. OPCODE/OPC_OptimizedTree.h \
  446. OPCODE/OPC_BaseModel.h \
  447. OPCODE/OPC_Model.h \
  448. OPCODE/OPC_HybridModel.h \
  449. OPCODE/OPC_Collider.h \
  450. OPCODE/OPC_VolumeCollider.h \
  451. OPCODE/OPC_TreeCollider.h \
  452. OPCODE/OPC_RayCollider.h \
  453. OPCODE/OPC_SphereCollider.h \
  454. OPCODE/OPC_OBBCollider.h \
  455. OPCODE/OPC_AABBCollider.h \
  456. OPCODE/OPC_LSSCollider.h \
  457. OPCODE/OPC_PlanesCollider.h \
  458. OPCODE/OPC_Picking.h \
  459. OPCODE/OPC_BoxPruning.h \
  460. OPCODE/OPC_SweepAndPrune.h
  461. ode/src/OPC_BaseModel.o: \
  462. OPCODE/OPC_BaseModel.cpp \
  463. OPCODE/Stdafx.h \
  464. OPCODE/Opcode.h \
  465. OPCODE/OPC_IceHook.h \
  466. OPCODE/Ice/IcePreprocessor.h \
  467. OPCODE/Ice/IceTypes.h \
  468. OPCODE/Ice/IceFPU.h \
  469. OPCODE/Ice/IceMemoryMacros.h \
  470. OPCODE/Ice/IceUtils.h \
  471. OPCODE/Ice/IceContainer.h \
  472. OPCODE/Ice/IcePairs.h \
  473. OPCODE/Ice/IceRevisitedRadix.h \
  474. OPCODE/Ice/IceRandom.h \
  475. OPCODE/Ice/IceAxes.h \
  476. OPCODE/Ice/IcePoint.h \
  477. OPCODE/Ice/IceHPoint.h \
  478. OPCODE/Ice/IceMatrix3x3.h \
  479. OPCODE/Ice/IceMatrix4x4.h \
  480. OPCODE/Ice/IcePlane.h \
  481. OPCODE/Ice/IceRay.h \
  482. OPCODE/Ice/IceIndexedTriangle.h \
  483. OPCODE/Ice/IceTriangle.h \
  484. OPCODE/Ice/IceTriList.h \
  485. OPCODE/Ice/IceAABB.h \
  486. OPCODE/Ice/IceOBB.h \
  487. OPCODE/Ice/IceBoundingSphere.h \
  488. OPCODE/Ice/IceSegment.h \
  489. OPCODE/Ice/IceLSS.h \
  490. OPCODE/OPC_Settings.h \
  491. OPCODE/OPC_Common.h \
  492. OPCODE/OPC_MeshInterface.h \
  493. OPCODE/OPC_TreeBuilders.h \
  494. OPCODE/OPC_AABBTree.h \
  495. OPCODE/OPC_OptimizedTree.h \
  496. OPCODE/OPC_BaseModel.h \
  497. OPCODE/OPC_Model.h \
  498. OPCODE/OPC_HybridModel.h \
  499. OPCODE/OPC_Collider.h \
  500. OPCODE/OPC_VolumeCollider.h \
  501. OPCODE/OPC_TreeCollider.h \
  502. OPCODE/OPC_RayCollider.h \
  503. OPCODE/OPC_SphereCollider.h \
  504. OPCODE/OPC_OBBCollider.h \
  505. OPCODE/OPC_AABBCollider.h \
  506. OPCODE/OPC_LSSCollider.h \
  507. OPCODE/OPC_PlanesCollider.h \
  508. OPCODE/OPC_Picking.h \
  509. OPCODE/OPC_BoxPruning.h \
  510. OPCODE/OPC_SweepAndPrune.h
  511. ode/src/OPC_BoxPruning.o: \
  512. OPCODE/OPC_BoxPruning.cpp \
  513. OPCODE/Stdafx.h \
  514. OPCODE/Opcode.h \
  515. OPCODE/OPC_IceHook.h \
  516. OPCODE/Ice/IcePreprocessor.h \
  517. OPCODE/Ice/IceTypes.h \
  518. OPCODE/Ice/IceFPU.h \
  519. OPCODE/Ice/IceMemoryMacros.h \
  520. OPCODE/Ice/IceUtils.h \
  521. OPCODE/Ice/IceContainer.h \
  522. OPCODE/Ice/IcePairs.h \
  523. OPCODE/Ice/IceRevisitedRadix.h \
  524. OPCODE/Ice/IceRandom.h \
  525. OPCODE/Ice/IceAxes.h \
  526. OPCODE/Ice/IcePoint.h \
  527. OPCODE/Ice/IceHPoint.h \
  528. OPCODE/Ice/IceMatrix3x3.h \
  529. OPCODE/Ice/IceMatrix4x4.h \
  530. OPCODE/Ice/IcePlane.h \
  531. OPCODE/Ice/IceRay.h \
  532. OPCODE/Ice/IceIndexedTriangle.h \
  533. OPCODE/Ice/IceTriangle.h \
  534. OPCODE/Ice/IceTriList.h \
  535. OPCODE/Ice/IceAABB.h \
  536. OPCODE/Ice/IceOBB.h \
  537. OPCODE/Ice/IceBoundingSphere.h \
  538. OPCODE/Ice/IceSegment.h \
  539. OPCODE/Ice/IceLSS.h \
  540. OPCODE/OPC_Settings.h \
  541. OPCODE/OPC_Common.h \
  542. OPCODE/OPC_MeshInterface.h \
  543. OPCODE/OPC_TreeBuilders.h \
  544. OPCODE/OPC_AABBTree.h \
  545. OPCODE/OPC_OptimizedTree.h \
  546. OPCODE/OPC_BaseModel.h \
  547. OPCODE/OPC_Model.h \
  548. OPCODE/OPC_HybridModel.h \
  549. OPCODE/OPC_Collider.h \
  550. OPCODE/OPC_VolumeCollider.h \
  551. OPCODE/OPC_TreeCollider.h \
  552. OPCODE/OPC_RayCollider.h \
  553. OPCODE/OPC_SphereCollider.h \
  554. OPCODE/OPC_OBBCollider.h \
  555. OPCODE/OPC_AABBCollider.h \
  556. OPCODE/OPC_LSSCollider.h \
  557. OPCODE/OPC_PlanesCollider.h \
  558. OPCODE/OPC_Picking.h \
  559. OPCODE/OPC_BoxPruning.h \
  560. OPCODE/OPC_SweepAndPrune.h
  561. ode/src/OPC_Collider.o: \
  562. OPCODE/OPC_Collider.cpp \
  563. OPCODE/Stdafx.h \
  564. OPCODE/Opcode.h \
  565. OPCODE/OPC_IceHook.h \
  566. OPCODE/Ice/IcePreprocessor.h \
  567. OPCODE/Ice/IceTypes.h \
  568. OPCODE/Ice/IceFPU.h \
  569. OPCODE/Ice/IceMemoryMacros.h \
  570. OPCODE/Ice/IceUtils.h \
  571. OPCODE/Ice/IceContainer.h \
  572. OPCODE/Ice/IcePairs.h \
  573. OPCODE/Ice/IceRevisitedRadix.h \
  574. OPCODE/Ice/IceRandom.h \
  575. OPCODE/Ice/IceAxes.h \
  576. OPCODE/Ice/IcePoint.h \
  577. OPCODE/Ice/IceHPoint.h \
  578. OPCODE/Ice/IceMatrix3x3.h \
  579. OPCODE/Ice/IceMatrix4x4.h \
  580. OPCODE/Ice/IcePlane.h \
  581. OPCODE/Ice/IceRay.h \
  582. OPCODE/Ice/IceIndexedTriangle.h \
  583. OPCODE/Ice/IceTriangle.h \
  584. OPCODE/Ice/IceTriList.h \
  585. OPCODE/Ice/IceAABB.h \
  586. OPCODE/Ice/IceOBB.h \
  587. OPCODE/Ice/IceBoundingSphere.h \
  588. OPCODE/Ice/IceSegment.h \
  589. OPCODE/Ice/IceLSS.h \
  590. OPCODE/OPC_Settings.h \
  591. OPCODE/OPC_Common.h \
  592. OPCODE/OPC_MeshInterface.h \
  593. OPCODE/OPC_TreeBuilders.h \
  594. OPCODE/OPC_AABBTree.h \
  595. OPCODE/OPC_OptimizedTree.h \
  596. OPCODE/OPC_BaseModel.h \
  597. OPCODE/OPC_Model.h \
  598. OPCODE/OPC_HybridModel.h \
  599. OPCODE/OPC_Collider.h \
  600. OPCODE/OPC_VolumeCollider.h \
  601. OPCODE/OPC_TreeCollider.h \
  602. OPCODE/OPC_RayCollider.h \
  603. OPCODE/OPC_SphereCollider.h \
  604. OPCODE/OPC_OBBCollider.h \
  605. OPCODE/OPC_AABBCollider.h \
  606. OPCODE/OPC_LSSCollider.h \
  607. OPCODE/OPC_PlanesCollider.h \
  608. OPCODE/OPC_Picking.h \
  609. OPCODE/OPC_BoxPruning.h \
  610. OPCODE/OPC_SweepAndPrune.h
  611. ode/src/OPC_Common.o: \
  612. OPCODE/OPC_Common.cpp \
  613. OPCODE/Stdafx.h \
  614. OPCODE/Opcode.h \
  615. OPCODE/OPC_IceHook.h \
  616. OPCODE/Ice/IcePreprocessor.h \
  617. OPCODE/Ice/IceTypes.h \
  618. OPCODE/Ice/IceFPU.h \
  619. OPCODE/Ice/IceMemoryMacros.h \
  620. OPCODE/Ice/IceUtils.h \
  621. OPCODE/Ice/IceContainer.h \
  622. OPCODE/Ice/IcePairs.h \
  623. OPCODE/Ice/IceRevisitedRadix.h \
  624. OPCODE/Ice/IceRandom.h \
  625. OPCODE/Ice/IceAxes.h \
  626. OPCODE/Ice/IcePoint.h \
  627. OPCODE/Ice/IceHPoint.h \
  628. OPCODE/Ice/IceMatrix3x3.h \
  629. OPCODE/Ice/IceMatrix4x4.h \
  630. OPCODE/Ice/IcePlane.h \
  631. OPCODE/Ice/IceRay.h \
  632. OPCODE/Ice/IceIndexedTriangle.h \
  633. OPCODE/Ice/IceTriangle.h \
  634. OPCODE/Ice/IceTriList.h \
  635. OPCODE/Ice/IceAABB.h \
  636. OPCODE/Ice/IceOBB.h \
  637. OPCODE/Ice/IceBoundingSphere.h \
  638. OPCODE/Ice/IceSegment.h \
  639. OPCODE/Ice/IceLSS.h \
  640. OPCODE/OPC_Settings.h \
  641. OPCODE/OPC_Common.h \
  642. OPCODE/OPC_MeshInterface.h \
  643. OPCODE/OPC_TreeBuilders.h \
  644. OPCODE/OPC_AABBTree.h \
  645. OPCODE/OPC_OptimizedTree.h \
  646. OPCODE/OPC_BaseModel.h \
  647. OPCODE/OPC_Model.h \
  648. OPCODE/OPC_HybridModel.h \
  649. OPCODE/OPC_Collider.h \
  650. OPCODE/OPC_VolumeCollider.h \
  651. OPCODE/OPC_TreeCollider.h \
  652. OPCODE/OPC_RayCollider.h \
  653. OPCODE/OPC_SphereCollider.h \
  654. OPCODE/OPC_OBBCollider.h \
  655. OPCODE/OPC_AABBCollider.h \
  656. OPCODE/OPC_LSSCollider.h \
  657. OPCODE/OPC_PlanesCollider.h \
  658. OPCODE/OPC_Picking.h \
  659. OPCODE/OPC_BoxPruning.h \
  660. OPCODE/OPC_SweepAndPrune.h
  661. ode/src/OPC_HybridModel.o: \
  662. OPCODE/OPC_HybridModel.cpp \
  663. OPCODE/Stdafx.h \
  664. OPCODE/Opcode.h \
  665. OPCODE/OPC_IceHook.h \
  666. OPCODE/Ice/IcePreprocessor.h \
  667. OPCODE/Ice/IceTypes.h \
  668. OPCODE/Ice/IceFPU.h \
  669. OPCODE/Ice/IceMemoryMacros.h \
  670. OPCODE/Ice/IceUtils.h \
  671. OPCODE/Ice/IceContainer.h \
  672. OPCODE/Ice/IcePairs.h \
  673. OPCODE/Ice/IceRevisitedRadix.h \
  674. OPCODE/Ice/IceRandom.h \
  675. OPCODE/Ice/IceAxes.h \
  676. OPCODE/Ice/IcePoint.h \
  677. OPCODE/Ice/IceHPoint.h \
  678. OPCODE/Ice/IceMatrix3x3.h \
  679. OPCODE/Ice/IceMatrix4x4.h \
  680. OPCODE/Ice/IcePlane.h \
  681. OPCODE/Ice/IceRay.h \
  682. OPCODE/Ice/IceIndexedTriangle.h \
  683. OPCODE/Ice/IceTriangle.h \
  684. OPCODE/Ice/IceTriList.h \
  685. OPCODE/Ice/IceAABB.h \
  686. OPCODE/Ice/IceOBB.h \
  687. OPCODE/Ice/IceBoundingSphere.h \
  688. OPCODE/Ice/IceSegment.h \
  689. OPCODE/Ice/IceLSS.h \
  690. OPCODE/OPC_Settings.h \
  691. OPCODE/OPC_Common.h \
  692. OPCODE/OPC_MeshInterface.h \
  693. OPCODE/OPC_TreeBuilders.h \
  694. OPCODE/OPC_AABBTree.h \
  695. OPCODE/OPC_OptimizedTree.h \
  696. OPCODE/OPC_BaseModel.h \
  697. OPCODE/OPC_Model.h \
  698. OPCODE/OPC_HybridModel.h \
  699. OPCODE/OPC_Collider.h \
  700. OPCODE/OPC_VolumeCollider.h \
  701. OPCODE/OPC_TreeCollider.h \
  702. OPCODE/OPC_RayCollider.h \
  703. OPCODE/OPC_SphereCollider.h \
  704. OPCODE/OPC_OBBCollider.h \
  705. OPCODE/OPC_AABBCollider.h \
  706. OPCODE/OPC_LSSCollider.h \
  707. OPCODE/OPC_PlanesCollider.h \
  708. OPCODE/OPC_Picking.h \
  709. OPCODE/OPC_BoxPruning.h \
  710. OPCODE/OPC_SweepAndPrune.h
  711. ode/src/OPC_LSSCollider.o: \
  712. OPCODE/OPC_LSSCollider.cpp \
  713. OPCODE/Stdafx.h \
  714. OPCODE/Opcode.h \
  715. OPCODE/OPC_IceHook.h \
  716. OPCODE/Ice/IcePreprocessor.h \
  717. OPCODE/Ice/IceTypes.h \
  718. OPCODE/Ice/IceFPU.h \
  719. OPCODE/Ice/IceMemoryMacros.h \
  720. OPCODE/Ice/IceUtils.h \
  721. OPCODE/Ice/IceContainer.h \
  722. OPCODE/Ice/IcePairs.h \
  723. OPCODE/Ice/IceRevisitedRadix.h \
  724. OPCODE/Ice/IceRandom.h \
  725. OPCODE/Ice/IceAxes.h \
  726. OPCODE/Ice/IcePoint.h \
  727. OPCODE/Ice/IceHPoint.h \
  728. OPCODE/Ice/IceMatrix3x3.h \
  729. OPCODE/Ice/IceMatrix4x4.h \
  730. OPCODE/Ice/IcePlane.h \
  731. OPCODE/Ice/IceRay.h \
  732. OPCODE/Ice/IceIndexedTriangle.h \
  733. OPCODE/Ice/IceTriangle.h \
  734. OPCODE/Ice/IceTriList.h \
  735. OPCODE/Ice/IceAABB.h \
  736. OPCODE/Ice/IceOBB.h \
  737. OPCODE/Ice/IceBoundingSphere.h \
  738. OPCODE/Ice/IceSegment.h \
  739. OPCODE/Ice/IceLSS.h \
  740. OPCODE/OPC_Settings.h \
  741. OPCODE/OPC_Common.h \
  742. OPCODE/OPC_MeshInterface.h \
  743. OPCODE/OPC_TreeBuilders.h \
  744. OPCODE/OPC_AABBTree.h \
  745. OPCODE/OPC_OptimizedTree.h \
  746. OPCODE/OPC_BaseModel.h \
  747. OPCODE/OPC_Model.h \
  748. OPCODE/OPC_HybridModel.h \
  749. OPCODE/OPC_Collider.h \
  750. OPCODE/OPC_VolumeCollider.h \
  751. OPCODE/OPC_TreeCollider.h \
  752. OPCODE/OPC_RayCollider.h \
  753. OPCODE/OPC_SphereCollider.h \
  754. OPCODE/OPC_OBBCollider.h \
  755. OPCODE/OPC_AABBCollider.h \
  756. OPCODE/OPC_LSSCollider.h \
  757. OPCODE/OPC_PlanesCollider.h \
  758. OPCODE/OPC_Picking.h \
  759. OPCODE/OPC_BoxPruning.h \
  760. OPCODE/OPC_SweepAndPrune.h \
  761. OPCODE/OPC_LSSAABBOverlap.h \
  762. OPCODE/OPC_LSSTriOverlap.h
  763. ode/src/OPC_MeshInterface.o: \
  764. OPCODE/OPC_MeshInterface.cpp \
  765. OPCODE/Stdafx.h \
  766. OPCODE/Opcode.h \
  767. OPCODE/OPC_IceHook.h \
  768. OPCODE/Ice/IcePreprocessor.h \
  769. OPCODE/Ice/IceTypes.h \
  770. OPCODE/Ice/IceFPU.h \
  771. OPCODE/Ice/IceMemoryMacros.h \
  772. OPCODE/Ice/IceUtils.h \
  773. OPCODE/Ice/IceContainer.h \
  774. OPCODE/Ice/IcePairs.h \
  775. OPCODE/Ice/IceRevisitedRadix.h \
  776. OPCODE/Ice/IceRandom.h \
  777. OPCODE/Ice/IceAxes.h \
  778. OPCODE/Ice/IcePoint.h \
  779. OPCODE/Ice/IceHPoint.h \
  780. OPCODE/Ice/IceMatrix3x3.h \
  781. OPCODE/Ice/IceMatrix4x4.h \
  782. OPCODE/Ice/IcePlane.h \
  783. OPCODE/Ice/IceRay.h \
  784. OPCODE/Ice/IceIndexedTriangle.h \
  785. OPCODE/Ice/IceTriangle.h \
  786. OPCODE/Ice/IceTriList.h \
  787. OPCODE/Ice/IceAABB.h \
  788. OPCODE/Ice/IceOBB.h \
  789. OPCODE/Ice/IceBoundingSphere.h \
  790. OPCODE/Ice/IceSegment.h \
  791. OPCODE/Ice/IceLSS.h \
  792. OPCODE/OPC_Settings.h \
  793. OPCODE/OPC_Common.h \
  794. OPCODE/OPC_MeshInterface.h \
  795. OPCODE/OPC_TreeBuilders.h \
  796. OPCODE/OPC_AABBTree.h \
  797. OPCODE/OPC_OptimizedTree.h \
  798. OPCODE/OPC_BaseModel.h \
  799. OPCODE/OPC_Model.h \
  800. OPCODE/OPC_HybridModel.h \
  801. OPCODE/OPC_Collider.h \
  802. OPCODE/OPC_VolumeCollider.h \
  803. OPCODE/OPC_TreeCollider.h \
  804. OPCODE/OPC_RayCollider.h \
  805. OPCODE/OPC_SphereCollider.h \
  806. OPCODE/OPC_OBBCollider.h \
  807. OPCODE/OPC_AABBCollider.h \
  808. OPCODE/OPC_LSSCollider.h \
  809. OPCODE/OPC_PlanesCollider.h \
  810. OPCODE/OPC_Picking.h \
  811. OPCODE/OPC_BoxPruning.h \
  812. OPCODE/OPC_SweepAndPrune.h
  813. ode/src/OPC_Model.o: \
  814. OPCODE/OPC_Model.cpp \
  815. OPCODE/Stdafx.h \
  816. OPCODE/Opcode.h \
  817. OPCODE/OPC_IceHook.h \
  818. OPCODE/Ice/IcePreprocessor.h \
  819. OPCODE/Ice/IceTypes.h \
  820. OPCODE/Ice/IceFPU.h \
  821. OPCODE/Ice/IceMemoryMacros.h \
  822. OPCODE/Ice/IceUtils.h \
  823. OPCODE/Ice/IceContainer.h \
  824. OPCODE/Ice/IcePairs.h \
  825. OPCODE/Ice/IceRevisitedRadix.h \
  826. OPCODE/Ice/IceRandom.h \
  827. OPCODE/Ice/IceAxes.h \
  828. OPCODE/Ice/IcePoint.h \
  829. OPCODE/Ice/IceHPoint.h \
  830. OPCODE/Ice/IceMatrix3x3.h \
  831. OPCODE/Ice/IceMatrix4x4.h \
  832. OPCODE/Ice/IcePlane.h \
  833. OPCODE/Ice/IceRay.h \
  834. OPCODE/Ice/IceIndexedTriangle.h \
  835. OPCODE/Ice/IceTriangle.h \
  836. OPCODE/Ice/IceTriList.h \
  837. OPCODE/Ice/IceAABB.h \
  838. OPCODE/Ice/IceOBB.h \
  839. OPCODE/Ice/IceBoundingSphere.h \
  840. OPCODE/Ice/IceSegment.h \
  841. OPCODE/Ice/IceLSS.h \
  842. OPCODE/OPC_Settings.h \
  843. OPCODE/OPC_Common.h \
  844. OPCODE/OPC_MeshInterface.h \
  845. OPCODE/OPC_TreeBuilders.h \
  846. OPCODE/OPC_AABBTree.h \
  847. OPCODE/OPC_OptimizedTree.h \
  848. OPCODE/OPC_BaseModel.h \
  849. OPCODE/OPC_Model.h \
  850. OPCODE/OPC_HybridModel.h \
  851. OPCODE/OPC_Collider.h \
  852. OPCODE/OPC_VolumeCollider.h \
  853. OPCODE/OPC_TreeCollider.h \
  854. OPCODE/OPC_RayCollider.h \
  855. OPCODE/OPC_SphereCollider.h \
  856. OPCODE/OPC_OBBCollider.h \
  857. OPCODE/OPC_AABBCollider.h \
  858. OPCODE/OPC_LSSCollider.h \
  859. OPCODE/OPC_PlanesCollider.h \
  860. OPCODE/OPC_Picking.h \
  861. OPCODE/OPC_BoxPruning.h \
  862. OPCODE/OPC_SweepAndPrune.h
  863. ode/src/OPC_OBBCollider.o: \
  864. OPCODE/OPC_OBBCollider.cpp \
  865. OPCODE/Stdafx.h \
  866. OPCODE/Opcode.h \
  867. OPCODE/OPC_IceHook.h \
  868. OPCODE/Ice/IcePreprocessor.h \
  869. OPCODE/Ice/IceTypes.h \
  870. OPCODE/Ice/IceFPU.h \
  871. OPCODE/Ice/IceMemoryMacros.h \
  872. OPCODE/Ice/IceUtils.h \
  873. OPCODE/Ice/IceContainer.h \
  874. OPCODE/Ice/IcePairs.h \
  875. OPCODE/Ice/IceRevisitedRadix.h \
  876. OPCODE/Ice/IceRandom.h \
  877. OPCODE/Ice/IceAxes.h \
  878. OPCODE/Ice/IcePoint.h \
  879. OPCODE/Ice/IceHPoint.h \
  880. OPCODE/Ice/IceMatrix3x3.h \
  881. OPCODE/Ice/IceMatrix4x4.h \
  882. OPCODE/Ice/IcePlane.h \
  883. OPCODE/Ice/IceRay.h \
  884. OPCODE/Ice/IceIndexedTriangle.h \
  885. OPCODE/Ice/IceTriangle.h \
  886. OPCODE/Ice/IceTriList.h \
  887. OPCODE/Ice/IceAABB.h \
  888. OPCODE/Ice/IceOBB.h \
  889. OPCODE/Ice/IceBoundingSphere.h \
  890. OPCODE/Ice/IceSegment.h \
  891. OPCODE/Ice/IceLSS.h \
  892. OPCODE/OPC_Settings.h \
  893. OPCODE/OPC_Common.h \
  894. OPCODE/OPC_MeshInterface.h \
  895. OPCODE/OPC_TreeBuilders.h \
  896. OPCODE/OPC_AABBTree.h \
  897. OPCODE/OPC_OptimizedTree.h \
  898. OPCODE/OPC_BaseModel.h \
  899. OPCODE/OPC_Model.h \
  900. OPCODE/OPC_HybridModel.h \
  901. OPCODE/OPC_Collider.h \
  902. OPCODE/OPC_VolumeCollider.h \
  903. OPCODE/OPC_TreeCollider.h \
  904. OPCODE/OPC_RayCollider.h \
  905. OPCODE/OPC_SphereCollider.h \
  906. OPCODE/OPC_OBBCollider.h \
  907. OPCODE/OPC_AABBCollider.h \
  908. OPCODE/OPC_LSSCollider.h \
  909. OPCODE/OPC_PlanesCollider.h \
  910. OPCODE/OPC_Picking.h \
  911. OPCODE/OPC_BoxPruning.h \
  912. OPCODE/OPC_SweepAndPrune.h \
  913. OPCODE/OPC_BoxBoxOverlap.h \
  914. OPCODE/OPC_TriBoxOverlap.h
  915. ode/src/Opcode.o: \
  916. OPCODE/Opcode.cpp \
  917. OPCODE/Stdafx.h \
  918. OPCODE/Opcode.h \
  919. OPCODE/OPC_IceHook.h \
  920. OPCODE/Ice/IcePreprocessor.h \
  921. OPCODE/Ice/IceTypes.h \
  922. OPCODE/Ice/IceFPU.h \
  923. OPCODE/Ice/IceMemoryMacros.h \
  924. OPCODE/Ice/IceUtils.h \
  925. OPCODE/Ice/IceContainer.h \
  926. OPCODE/Ice/IcePairs.h \
  927. OPCODE/Ice/IceRevisitedRadix.h \
  928. OPCODE/Ice/IceRandom.h \
  929. OPCODE/Ice/IceAxes.h \
  930. OPCODE/Ice/IcePoint.h \
  931. OPCODE/Ice/IceHPoint.h \
  932. OPCODE/Ice/IceMatrix3x3.h \
  933. OPCODE/Ice/IceMatrix4x4.h \
  934. OPCODE/Ice/IcePlane.h \
  935. OPCODE/Ice/IceRay.h \
  936. OPCODE/Ice/IceIndexedTriangle.h \
  937. OPCODE/Ice/IceTriangle.h \
  938. OPCODE/Ice/IceTriList.h \
  939. OPCODE/Ice/IceAABB.h \
  940. OPCODE/Ice/IceOBB.h \
  941. OPCODE/Ice/IceBoundingSphere.h \
  942. OPCODE/Ice/IceSegment.h \
  943. OPCODE/Ice/IceLSS.h \
  944. OPCODE/OPC_Settings.h \
  945. OPCODE/OPC_Common.h \
  946. OPCODE/OPC_MeshInterface.h \
  947. OPCODE/OPC_TreeBuilders.h \
  948. OPCODE/OPC_AABBTree.h \
  949. OPCODE/OPC_OptimizedTree.h \
  950. OPCODE/OPC_BaseModel.h \
  951. OPCODE/OPC_Model.h \
  952. OPCODE/OPC_HybridModel.h \
  953. OPCODE/OPC_Collider.h \
  954. OPCODE/OPC_VolumeCollider.h \
  955. OPCODE/OPC_TreeCollider.h \
  956. OPCODE/OPC_RayCollider.h \
  957. OPCODE/OPC_SphereCollider.h \
  958. OPCODE/OPC_OBBCollider.h \
  959. OPCODE/OPC_AABBCollider.h \
  960. OPCODE/OPC_LSSCollider.h \
  961. OPCODE/OPC_PlanesCollider.h \
  962. OPCODE/OPC_Picking.h \
  963. OPCODE/OPC_BoxPruning.h \
  964. OPCODE/OPC_SweepAndPrune.h
  965. ode/src/OPC_OptimizedTree.o: \
  966. OPCODE/OPC_OptimizedTree.cpp \
  967. OPCODE/Stdafx.h \
  968. OPCODE/Opcode.h \
  969. OPCODE/OPC_IceHook.h \
  970. OPCODE/Ice/IcePreprocessor.h \
  971. OPCODE/Ice/IceTypes.h \
  972. OPCODE/Ice/IceFPU.h \
  973. OPCODE/Ice/IceMemoryMacros.h \
  974. OPCODE/Ice/IceUtils.h \
  975. OPCODE/Ice/IceContainer.h \
  976. OPCODE/Ice/IcePairs.h \
  977. OPCODE/Ice/IceRevisitedRadix.h \
  978. OPCODE/Ice/IceRandom.h \
  979. OPCODE/Ice/IceAxes.h \
  980. OPCODE/Ice/IcePoint.h \
  981. OPCODE/Ice/IceHPoint.h \
  982. OPCODE/Ice/IceMatrix3x3.h \
  983. OPCODE/Ice/IceMatrix4x4.h \
  984. OPCODE/Ice/IcePlane.h \
  985. OPCODE/Ice/IceRay.h \
  986. OPCODE/Ice/IceIndexedTriangle.h \
  987. OPCODE/Ice/IceTriangle.h \
  988. OPCODE/Ice/IceTriList.h \
  989. OPCODE/Ice/IceAABB.h \
  990. OPCODE/Ice/IceOBB.h \
  991. OPCODE/Ice/IceBoundingSphere.h \
  992. OPCODE/Ice/IceSegment.h \
  993. OPCODE/Ice/IceLSS.h \
  994. OPCODE/OPC_Settings.h \
  995. OPCODE/OPC_Common.h \
  996. OPCODE/OPC_MeshInterface.h \
  997. OPCODE/OPC_TreeBuilders.h \
  998. OPCODE/OPC_AABBTree.h \
  999. OPCODE/OPC_OptimizedTree.h \
  1000. OPCODE/OPC_BaseModel.h \
  1001. OPCODE/OPC_Model.h \
  1002. OPCODE/OPC_HybridModel.h \
  1003. OPCODE/OPC_Collider.h \
  1004. OPCODE/OPC_VolumeCollider.h \
  1005. OPCODE/OPC_TreeCollider.h \
  1006. OPCODE/OPC_RayCollider.h \
  1007. OPCODE/OPC_SphereCollider.h \
  1008. OPCODE/OPC_OBBCollider.h \
  1009. OPCODE/OPC_AABBCollider.h \
  1010. OPCODE/OPC_LSSCollider.h \
  1011. OPCODE/OPC_PlanesCollider.h \
  1012. OPCODE/OPC_Picking.h \
  1013. OPCODE/OPC_BoxPruning.h \
  1014. OPCODE/OPC_SweepAndPrune.h
  1015. ode/src/OPC_Picking.o: \
  1016. OPCODE/OPC_Picking.cpp \
  1017. OPCODE/Stdafx.h \
  1018. OPCODE/Opcode.h \
  1019. OPCODE/OPC_IceHook.h \
  1020. OPCODE/Ice/IcePreprocessor.h \
  1021. OPCODE/Ice/IceTypes.h \
  1022. OPCODE/Ice/IceFPU.h \
  1023. OPCODE/Ice/IceMemoryMacros.h \
  1024. OPCODE/Ice/IceUtils.h \
  1025. OPCODE/Ice/IceContainer.h \
  1026. OPCODE/Ice/IcePairs.h \
  1027. OPCODE/Ice/IceRevisitedRadix.h \
  1028. OPCODE/Ice/IceRandom.h \
  1029. OPCODE/Ice/IceAxes.h \
  1030. OPCODE/Ice/IcePoint.h \
  1031. OPCODE/Ice/IceHPoint.h \
  1032. OPCODE/Ice/IceMatrix3x3.h \
  1033. OPCODE/Ice/IceMatrix4x4.h \
  1034. OPCODE/Ice/IcePlane.h \
  1035. OPCODE/Ice/IceRay.h \
  1036. OPCODE/Ice/IceIndexedTriangle.h \
  1037. OPCODE/Ice/IceTriangle.h \
  1038. OPCODE/Ice/IceTriList.h \
  1039. OPCODE/Ice/IceAABB.h \
  1040. OPCODE/Ice/IceOBB.h \
  1041. OPCODE/Ice/IceBoundingSphere.h \
  1042. OPCODE/Ice/IceSegment.h \
  1043. OPCODE/Ice/IceLSS.h \
  1044. OPCODE/OPC_Settings.h \
  1045. OPCODE/OPC_Common.h \
  1046. OPCODE/OPC_MeshInterface.h \
  1047. OPCODE/OPC_TreeBuilders.h \
  1048. OPCODE/OPC_AABBTree.h \
  1049. OPCODE/OPC_OptimizedTree.h \
  1050. OPCODE/OPC_BaseModel.h \
  1051. OPCODE/OPC_Model.h \
  1052. OPCODE/OPC_HybridModel.h \
  1053. OPCODE/OPC_Collider.h \
  1054. OPCODE/OPC_VolumeCollider.h \
  1055. OPCODE/OPC_TreeCollider.h \
  1056. OPCODE/OPC_RayCollider.h \
  1057. OPCODE/OPC_SphereCollider.h \
  1058. OPCODE/OPC_OBBCollider.h \
  1059. OPCODE/OPC_AABBCollider.h \
  1060. OPCODE/OPC_LSSCollider.h \
  1061. OPCODE/OPC_PlanesCollider.h \
  1062. OPCODE/OPC_Picking.h \
  1063. OPCODE/OPC_BoxPruning.h \
  1064. OPCODE/OPC_SweepAndPrune.h
  1065. ode/src/OPC_PlanesCollider.o: \
  1066. OPCODE/OPC_PlanesCollider.cpp \
  1067. OPCODE/Stdafx.h \
  1068. OPCODE/Opcode.h \
  1069. OPCODE/OPC_IceHook.h \
  1070. OPCODE/Ice/IcePreprocessor.h \
  1071. OPCODE/Ice/IceTypes.h \
  1072. OPCODE/Ice/IceFPU.h \
  1073. OPCODE/Ice/IceMemoryMacros.h \
  1074. OPCODE/Ice/IceUtils.h \
  1075. OPCODE/Ice/IceContainer.h \
  1076. OPCODE/Ice/IcePairs.h \
  1077. OPCODE/Ice/IceRevisitedRadix.h \
  1078. OPCODE/Ice/IceRandom.h \
  1079. OPCODE/Ice/IceAxes.h \
  1080. OPCODE/Ice/IcePoint.h \
  1081. OPCODE/Ice/IceHPoint.h \
  1082. OPCODE/Ice/IceMatrix3x3.h \
  1083. OPCODE/Ice/IceMatrix4x4.h \
  1084. OPCODE/Ice/IcePlane.h \
  1085. OPCODE/Ice/IceRay.h \
  1086. OPCODE/Ice/IceIndexedTriangle.h \
  1087. OPCODE/Ice/IceTriangle.h \
  1088. OPCODE/Ice/IceTriList.h \
  1089. OPCODE/Ice/IceAABB.h \
  1090. OPCODE/Ice/IceOBB.h \
  1091. OPCODE/Ice/IceBoundingSphere.h \
  1092. OPCODE/Ice/IceSegment.h \
  1093. OPCODE/Ice/IceLSS.h \
  1094. OPCODE/OPC_Settings.h \
  1095. OPCODE/OPC_Common.h \
  1096. OPCODE/OPC_MeshInterface.h \
  1097. OPCODE/OPC_TreeBuilders.h \
  1098. OPCODE/OPC_AABBTree.h \
  1099. OPCODE/OPC_OptimizedTree.h \
  1100. OPCODE/OPC_BaseModel.h \
  1101. OPCODE/OPC_Model.h \
  1102. OPCODE/OPC_HybridModel.h \
  1103. OPCODE/OPC_Collider.h \
  1104. OPCODE/OPC_VolumeCollider.h \
  1105. OPCODE/OPC_TreeCollider.h \
  1106. OPCODE/OPC_RayCollider.h \
  1107. OPCODE/OPC_SphereCollider.h \
  1108. OPCODE/OPC_OBBCollider.h \
  1109. OPCODE/OPC_AABBCollider.h \
  1110. OPCODE/OPC_LSSCollider.h \
  1111. OPCODE/OPC_PlanesCollider.h \
  1112. OPCODE/OPC_Picking.h \
  1113. OPCODE/OPC_BoxPruning.h \
  1114. OPCODE/OPC_SweepAndPrune.h \
  1115. OPCODE/OPC_PlanesAABBOverlap.h \
  1116. OPCODE/OPC_PlanesTriOverlap.h
  1117. ode/src/OPC_RayCollider.o: \
  1118. OPCODE/OPC_RayCollider.cpp \
  1119. OPCODE/Stdafx.h \
  1120. OPCODE/Opcode.h \
  1121. OPCODE/OPC_IceHook.h \
  1122. OPCODE/Ice/IcePreprocessor.h \
  1123. OPCODE/Ice/IceTypes.h \
  1124. OPCODE/Ice/IceFPU.h \
  1125. OPCODE/Ice/IceMemoryMacros.h \
  1126. OPCODE/Ice/IceUtils.h \
  1127. OPCODE/Ice/IceContainer.h \
  1128. OPCODE/Ice/IcePairs.h \
  1129. OPCODE/Ice/IceRevisitedRadix.h \
  1130. OPCODE/Ice/IceRandom.h \
  1131. OPCODE/Ice/IceAxes.h \
  1132. OPCODE/Ice/IcePoint.h \
  1133. OPCODE/Ice/IceHPoint.h \
  1134. OPCODE/Ice/IceMatrix3x3.h \
  1135. OPCODE/Ice/IceMatrix4x4.h \
  1136. OPCODE/Ice/IcePlane.h \
  1137. OPCODE/Ice/IceRay.h \
  1138. OPCODE/Ice/IceIndexedTriangle.h \
  1139. OPCODE/Ice/IceTriangle.h \
  1140. OPCODE/Ice/IceTriList.h \
  1141. OPCODE/Ice/IceAABB.h \
  1142. OPCODE/Ice/IceOBB.h \
  1143. OPCODE/Ice/IceBoundingSphere.h \
  1144. OPCODE/Ice/IceSegment.h \
  1145. OPCODE/Ice/IceLSS.h \
  1146. OPCODE/OPC_Settings.h \
  1147. OPCODE/OPC_Common.h \
  1148. OPCODE/OPC_MeshInterface.h \
  1149. OPCODE/OPC_TreeBuilders.h \
  1150. OPCODE/OPC_AABBTree.h \
  1151. OPCODE/OPC_OptimizedTree.h \
  1152. OPCODE/OPC_BaseModel.h \
  1153. OPCODE/OPC_Model.h \
  1154. OPCODE/OPC_HybridModel.h \
  1155. OPCODE/OPC_Collider.h \
  1156. OPCODE/OPC_VolumeCollider.h \
  1157. OPCODE/OPC_TreeCollider.h \
  1158. OPCODE/OPC_RayCollider.h \
  1159. OPCODE/OPC_SphereCollider.h \
  1160. OPCODE/OPC_OBBCollider.h \
  1161. OPCODE/OPC_AABBCollider.h \
  1162. OPCODE/OPC_LSSCollider.h \
  1163. OPCODE/OPC_PlanesCollider.h \
  1164. OPCODE/OPC_Picking.h \
  1165. OPCODE/OPC_BoxPruning.h \
  1166. OPCODE/OPC_SweepAndPrune.h \
  1167. OPCODE/OPC_RayAABBOverlap.h \
  1168. OPCODE/OPC_RayTriOverlap.h
  1169. ode/src/OPC_SphereCollider.o: \
  1170. OPCODE/OPC_SphereCollider.cpp \
  1171. OPCODE/Stdafx.h \
  1172. OPCODE/Opcode.h \
  1173. OPCODE/OPC_IceHook.h \
  1174. OPCODE/Ice/IcePreprocessor.h \
  1175. OPCODE/Ice/IceTypes.h \
  1176. OPCODE/Ice/IceFPU.h \
  1177. OPCODE/Ice/IceMemoryMacros.h \
  1178. OPCODE/Ice/IceUtils.h \
  1179. OPCODE/Ice/IceContainer.h \
  1180. OPCODE/Ice/IcePairs.h \
  1181. OPCODE/Ice/IceRevisitedRadix.h \
  1182. OPCODE/Ice/IceRandom.h \
  1183. OPCODE/Ice/IceAxes.h \
  1184. OPCODE/Ice/IcePoint.h \
  1185. OPCODE/Ice/IceHPoint.h \
  1186. OPCODE/Ice/IceMatrix3x3.h \
  1187. OPCODE/Ice/IceMatrix4x4.h \
  1188. OPCODE/Ice/IcePlane.h \
  1189. OPCODE/Ice/IceRay.h \
  1190. OPCODE/Ice/IceIndexedTriangle.h \
  1191. OPCODE/Ice/IceTriangle.h \
  1192. OPCODE/Ice/IceTriList.h \
  1193. OPCODE/Ice/IceAABB.h \
  1194. OPCODE/Ice/IceOBB.h \
  1195. OPCODE/Ice/IceBoundingSphere.h \
  1196. OPCODE/Ice/IceSegment.h \
  1197. OPCODE/Ice/IceLSS.h \
  1198. OPCODE/OPC_Settings.h \
  1199. OPCODE/OPC_Common.h \
  1200. OPCODE/OPC_MeshInterface.h \
  1201. OPCODE/OPC_TreeBuilders.h \
  1202. OPCODE/OPC_AABBTree.h \
  1203. OPCODE/OPC_OptimizedTree.h \
  1204. OPCODE/OPC_BaseModel.h \
  1205. OPCODE/OPC_Model.h \
  1206. OPCODE/OPC_HybridModel.h \
  1207. OPCODE/OPC_Collider.h \
  1208. OPCODE/OPC_VolumeCollider.h \
  1209. OPCODE/OPC_TreeCollider.h \
  1210. OPCODE/OPC_RayCollider.h \
  1211. OPCODE/OPC_SphereCollider.h \
  1212. OPCODE/OPC_OBBCollider.h \
  1213. OPCODE/OPC_AABBCollider.h \
  1214. OPCODE/OPC_LSSCollider.h \
  1215. OPCODE/OPC_PlanesCollider.h \
  1216. OPCODE/OPC_Picking.h \
  1217. OPCODE/OPC_BoxPruning.h \
  1218. OPCODE/OPC_SweepAndPrune.h \
  1219. OPCODE/OPC_SphereAABBOverlap.h \
  1220. OPCODE/OPC_SphereTriOverlap.h
  1221. ode/src/OPC_SweepAndPrune.o: \
  1222. OPCODE/OPC_SweepAndPrune.cpp \
  1223. OPCODE/Stdafx.h \
  1224. OPCODE/Opcode.h \
  1225. OPCODE/OPC_IceHook.h \
  1226. OPCODE/Ice/IcePreprocessor.h \
  1227. OPCODE/Ice/IceTypes.h \
  1228. OPCODE/Ice/IceFPU.h \
  1229. OPCODE/Ice/IceMemoryMacros.h \
  1230. OPCODE/Ice/IceUtils.h \
  1231. OPCODE/Ice/IceContainer.h \
  1232. OPCODE/Ice/IcePairs.h \
  1233. OPCODE/Ice/IceRevisitedRadix.h \
  1234. OPCODE/Ice/IceRandom.h \
  1235. OPCODE/Ice/IceAxes.h \
  1236. OPCODE/Ice/IcePoint.h \
  1237. OPCODE/Ice/IceHPoint.h \
  1238. OPCODE/Ice/IceMatrix3x3.h \
  1239. OPCODE/Ice/IceMatrix4x4.h \
  1240. OPCODE/Ice/IcePlane.h \
  1241. OPCODE/Ice/IceRay.h \
  1242. OPCODE/Ice/IceIndexedTriangle.h \
  1243. OPCODE/Ice/IceTriangle.h \
  1244. OPCODE/Ice/IceTriList.h \
  1245. OPCODE/Ice/IceAABB.h \
  1246. OPCODE/Ice/IceOBB.h \
  1247. OPCODE/Ice/IceBoundingSphere.h \
  1248. OPCODE/Ice/IceSegment.h \
  1249. OPCODE/Ice/IceLSS.h \
  1250. OPCODE/OPC_Settings.h \
  1251. OPCODE/OPC_Common.h \
  1252. OPCODE/OPC_MeshInterface.h \
  1253. OPCODE/OPC_TreeBuilders.h \
  1254. OPCODE/OPC_AABBTree.h \
  1255. OPCODE/OPC_OptimizedTree.h \
  1256. OPCODE/OPC_BaseModel.h \
  1257. OPCODE/OPC_Model.h \
  1258. OPCODE/OPC_HybridModel.h \
  1259. OPCODE/OPC_Collider.h \
  1260. OPCODE/OPC_VolumeCollider.h \
  1261. OPCODE/OPC_TreeCollider.h \
  1262. OPCODE/OPC_RayCollider.h \
  1263. OPCODE/OPC_SphereCollider.h \
  1264. OPCODE/OPC_OBBCollider.h \
  1265. OPCODE/OPC_AABBCollider.h \
  1266. OPCODE/OPC_LSSCollider.h \
  1267. OPCODE/OPC_PlanesCollider.h \
  1268. OPCODE/OPC_Picking.h \
  1269. OPCODE/OPC_BoxPruning.h \
  1270. OPCODE/OPC_SweepAndPrune.h
  1271. ode/src/OPC_TreeBuilders.o: \
  1272. OPCODE/OPC_TreeBuilders.cpp \
  1273. OPCODE/Stdafx.h \
  1274. OPCODE/Opcode.h \
  1275. OPCODE/OPC_IceHook.h \
  1276. OPCODE/Ice/IcePreprocessor.h \
  1277. OPCODE/Ice/IceTypes.h \
  1278. OPCODE/Ice/IceFPU.h \
  1279. OPCODE/Ice/IceMemoryMacros.h \
  1280. OPCODE/Ice/IceUtils.h \
  1281. OPCODE/Ice/IceContainer.h \
  1282. OPCODE/Ice/IcePairs.h \
  1283. OPCODE/Ice/IceRevisitedRadix.h \
  1284. OPCODE/Ice/IceRandom.h \
  1285. OPCODE/Ice/IceAxes.h \
  1286. OPCODE/Ice/IcePoint.h \
  1287. OPCODE/Ice/IceHPoint.h \
  1288. OPCODE/Ice/IceMatrix3x3.h \
  1289. OPCODE/Ice/IceMatrix4x4.h \
  1290. OPCODE/Ice/IcePlane.h \
  1291. OPCODE/Ice/IceRay.h \
  1292. OPCODE/Ice/IceIndexedTriangle.h \
  1293. OPCODE/Ice/IceTriangle.h \
  1294. OPCODE/Ice/IceTriList.h \
  1295. OPCODE/Ice/IceAABB.h \
  1296. OPCODE/Ice/IceOBB.h \
  1297. OPCODE/Ice/IceBoundingSphere.h \
  1298. OPCODE/Ice/IceSegment.h \
  1299. OPCODE/Ice/IceLSS.h \
  1300. OPCODE/OPC_Settings.h \
  1301. OPCODE/OPC_Common.h \
  1302. OPCODE/OPC_MeshInterface.h \
  1303. OPCODE/OPC_TreeBuilders.h \
  1304. OPCODE/OPC_AABBTree.h \
  1305. OPCODE/OPC_OptimizedTree.h \
  1306. OPCODE/OPC_BaseModel.h \
  1307. OPCODE/OPC_Model.h \
  1308. OPCODE/OPC_HybridModel.h \
  1309. OPCODE/OPC_Collider.h \
  1310. OPCODE/OPC_VolumeCollider.h \
  1311. OPCODE/OPC_TreeCollider.h \
  1312. OPCODE/OPC_RayCollider.h \
  1313. OPCODE/OPC_SphereCollider.h \
  1314. OPCODE/OPC_OBBCollider.h \
  1315. OPCODE/OPC_AABBCollider.h \
  1316. OPCODE/OPC_LSSCollider.h \
  1317. OPCODE/OPC_PlanesCollider.h \
  1318. OPCODE/OPC_Picking.h \
  1319. OPCODE/OPC_BoxPruning.h \
  1320. OPCODE/OPC_SweepAndPrune.h
  1321. ode/src/OPC_TreeCollider.o: \
  1322. OPCODE/OPC_TreeCollider.cpp \
  1323. OPCODE/Stdafx.h \
  1324. OPCODE/Opcode.h \
  1325. OPCODE/OPC_IceHook.h \
  1326. OPCODE/Ice/IcePreprocessor.h \
  1327. OPCODE/Ice/IceTypes.h \
  1328. OPCODE/Ice/IceFPU.h \
  1329. OPCODE/Ice/IceMemoryMacros.h \
  1330. OPCODE/Ice/IceUtils.h \
  1331. OPCODE/Ice/IceContainer.h \
  1332. OPCODE/Ice/IcePairs.h \
  1333. OPCODE/Ice/IceRevisitedRadix.h \
  1334. OPCODE/Ice/IceRandom.h \
  1335. OPCODE/Ice/IceAxes.h \
  1336. OPCODE/Ice/IcePoint.h \
  1337. OPCODE/Ice/IceHPoint.h \
  1338. OPCODE/Ice/IceMatrix3x3.h \
  1339. OPCODE/Ice/IceMatrix4x4.h \
  1340. OPCODE/Ice/IcePlane.h \
  1341. OPCODE/Ice/IceRay.h \
  1342. OPCODE/Ice/IceIndexedTriangle.h \
  1343. OPCODE/Ice/IceTriangle.h \
  1344. OPCODE/Ice/IceTriList.h \
  1345. OPCODE/Ice/IceAABB.h \
  1346. OPCODE/Ice/IceOBB.h \
  1347. OPCODE/Ice/IceBoundingSphere.h \
  1348. OPCODE/Ice/IceSegment.h \
  1349. OPCODE/Ice/IceLSS.h \
  1350. OPCODE/OPC_Settings.h \
  1351. OPCODE/OPC_Common.h \
  1352. OPCODE/OPC_MeshInterface.h \
  1353. OPCODE/OPC_TreeBuilders.h \
  1354. OPCODE/OPC_AABBTree.h \
  1355. OPCODE/OPC_OptimizedTree.h \
  1356. OPCODE/OPC_BaseModel.h \
  1357. OPCODE/OPC_Model.h \
  1358. OPCODE/OPC_HybridModel.h \
  1359. OPCODE/OPC_Collider.h \
  1360. OPCODE/OPC_VolumeCollider.h \
  1361. OPCODE/OPC_TreeCollider.h \
  1362. OPCODE/OPC_RayCollider.h \
  1363. OPCODE/OPC_SphereCollider.h \
  1364. OPCODE/OPC_OBBCollider.h \
  1365. OPCODE/OPC_AABBCollider.h \
  1366. OPCODE/OPC_LSSCollider.h \
  1367. OPCODE/OPC_PlanesCollider.h \
  1368. OPCODE/OPC_Picking.h \
  1369. OPCODE/OPC_BoxPruning.h \
  1370. OPCODE/OPC_SweepAndPrune.h \
  1371. OPCODE/OPC_BoxBoxOverlap.h \
  1372. OPCODE/OPC_TriBoxOverlap.h \
  1373. OPCODE/OPC_TriTriOverlap.h
  1374. ode/src/OPC_VolumeCollider.o: \
  1375. OPCODE/OPC_VolumeCollider.cpp \
  1376. OPCODE/Stdafx.h \
  1377. OPCODE/Opcode.h \
  1378. OPCODE/OPC_IceHook.h \
  1379. OPCODE/Ice/IcePreprocessor.h \
  1380. OPCODE/Ice/IceTypes.h \
  1381. OPCODE/Ice/IceFPU.h \
  1382. OPCODE/Ice/IceMemoryMacros.h \
  1383. OPCODE/Ice/IceUtils.h \
  1384. OPCODE/Ice/IceContainer.h \
  1385. OPCODE/Ice/IcePairs.h \
  1386. OPCODE/Ice/IceRevisitedRadix.h \
  1387. OPCODE/Ice/IceRandom.h \
  1388. OPCODE/Ice/IceAxes.h \
  1389. OPCODE/Ice/IcePoint.h \
  1390. OPCODE/Ice/IceHPoint.h \
  1391. OPCODE/Ice/IceMatrix3x3.h \
  1392. OPCODE/Ice/IceMatrix4x4.h \
  1393. OPCODE/Ice/IcePlane.h \
  1394. OPCODE/Ice/IceRay.h \
  1395. OPCODE/Ice/IceIndexedTriangle.h \
  1396. OPCODE/Ice/IceTriangle.h \
  1397. OPCODE/Ice/IceTriList.h \
  1398. OPCODE/Ice/IceAABB.h \
  1399. OPCODE/Ice/IceOBB.h \
  1400. OPCODE/Ice/IceBoundingSphere.h \
  1401. OPCODE/Ice/IceSegment.h \
  1402. OPCODE/Ice/IceLSS.h \
  1403. OPCODE/OPC_Settings.h \
  1404. OPCODE/OPC_Common.h \
  1405. OPCODE/OPC_MeshInterface.h \
  1406. OPCODE/OPC_TreeBuilders.h \
  1407. OPCODE/OPC_AABBTree.h \
  1408. OPCODE/OPC_OptimizedTree.h \
  1409. OPCODE/OPC_BaseModel.h \
  1410. OPCODE/OPC_Model.h \
  1411. OPCODE/OPC_HybridModel.h \
  1412. OPCODE/OPC_Collider.h \
  1413. OPCODE/OPC_VolumeCollider.h \
  1414. OPCODE/OPC_TreeCollider.h \
  1415. OPCODE/OPC_RayCollider.h \
  1416. OPCODE/OPC_SphereCollider.h \
  1417. OPCODE/OPC_OBBCollider.h \
  1418. OPCODE/OPC_AABBCollider.h \
  1419. OPCODE/OPC_LSSCollider.h \
  1420. OPCODE/OPC_PlanesCollider.h \
  1421. OPCODE/OPC_Picking.h \
  1422. OPCODE/OPC_BoxPruning.h \
  1423. OPCODE/OPC_SweepAndPrune.h
  1424. ode/src/fastldlt.o: \
  1425. ode/src/fastldlt.c \
  1426. include/ode/matrix.h \
  1427. include/ode/common.h \
  1428. include/ode/config.h \
  1429. include/ode/error.h
  1430. ode/src/fastlsolve.o: \
  1431. ode/src/fastlsolve.c \
  1432. include/ode/matrix.h \
  1433. include/ode/common.h \
  1434. include/ode/config.h \
  1435. include/ode/error.h
  1436. ode/src/fastltsolve.o: \
  1437. ode/src/fastltsolve.c \
  1438. include/ode/matrix.h \
  1439. include/ode/common.h \
  1440. include/ode/config.h \
  1441. include/ode/error.h
  1442. ode/src/fastdot.o: \
  1443. ode/src/fastdot.c \
  1444. include/ode/matrix.h \
  1445. include/ode/common.h \
  1446. include/ode/config.h \
  1447. include/ode/error.h
  1448. drawstuff/src/drawstuff.o: \
  1449. drawstuff/src/drawstuff.cpp \
  1450. include/ode/config.h \
  1451. include/drawstuff/drawstuff.h \
  1452. include/drawstuff/version.h \
  1453. drawstuff/src/internal.h
  1454. drawstuff/src/x11.o: \
  1455. drawstuff/src/x11.cpp \
  1456. include/ode/config.h \
  1457. include/drawstuff/drawstuff.h \
  1458. include/drawstuff/version.h \
  1459. drawstuff/src/internal.h
  1460. ode/test/test_ode.o: \
  1461. ode/test/test_ode.cpp \
  1462. include/ode/ode.h \
  1463. include/ode/config.h \
  1464. include/ode/compatibility.h \
  1465. include/ode/common.h \
  1466. include/ode/error.h \
  1467. include/ode/contact.h \
  1468. include/ode/memory.h \
  1469. include/ode/odemath.h \
  1470. include/ode/matrix.h \
  1471. include/ode/timer.h \
  1472. include/ode/rotation.h \
  1473. include/ode/mass.h \
  1474. include/ode/misc.h \
  1475. include/ode/objects.h \
  1476. include/ode/odecpp.h \
  1477. include/ode/collision_space.h \
  1478. include/ode/collision.h \
  1479. include/ode/collision_trimesh.h \
  1480. include/ode/odecpp_collision.h \
  1481. include/ode/export-dif.h
  1482. ode/test/test_chain2.o: \
  1483. ode/test/test_chain2.cpp \
  1484. include/ode/ode.h \
  1485. include/ode/config.h \
  1486. include/ode/compatibility.h \
  1487. include/ode/common.h \
  1488. include/ode/error.h \
  1489. include/ode/contact.h \
  1490. include/ode/memory.h \
  1491. include/ode/odemath.h \
  1492. include/ode/matrix.h \
  1493. include/ode/timer.h \
  1494. include/ode/rotation.h \
  1495. include/ode/mass.h \
  1496. include/ode/misc.h \
  1497. include/ode/objects.h \
  1498. include/ode/odecpp.h \
  1499. include/ode/collision_space.h \
  1500. include/ode/collision.h \
  1501. include/ode/collision_trimesh.h \
  1502. include/ode/odecpp_collision.h \
  1503. include/ode/export-dif.h \
  1504. include/drawstuff/drawstuff.h \
  1505. include/drawstuff/version.h
  1506. ode/test/test_hinge.o: \
  1507. ode/test/test_hinge.cpp \
  1508. include/ode/ode.h \
  1509. include/ode/config.h \
  1510. include/ode/compatibility.h \
  1511. include/ode/common.h \
  1512. include/ode/error.h \
  1513. include/ode/contact.h \
  1514. include/ode/memory.h \
  1515. include/ode/odemath.h \
  1516. include/ode/matrix.h \
  1517. include/ode/timer.h \
  1518. include/ode/rotation.h \
  1519. include/ode/mass.h \
  1520. include/ode/misc.h \
  1521. include/ode/objects.h \
  1522. include/ode/odecpp.h \
  1523. include/ode/collision_space.h \
  1524. include/ode/collision.h \
  1525. include/ode/collision_trimesh.h \
  1526. include/ode/odecpp_collision.h \
  1527. include/ode/export-dif.h \
  1528. include/drawstuff/drawstuff.h \
  1529. include/drawstuff/version.h
  1530. ode/test/test_slider.o: \
  1531. ode/test/test_slider.cpp \
  1532. include/ode/ode.h \
  1533. include/ode/config.h \
  1534. include/ode/compatibility.h \
  1535. include/ode/common.h \
  1536. include/ode/error.h \
  1537. include/ode/contact.h \
  1538. include/ode/memory.h \
  1539. include/ode/odemath.h \
  1540. include/ode/matrix.h \
  1541. include/ode/timer.h \
  1542. include/ode/rotation.h \
  1543. include/ode/mass.h \
  1544. include/ode/misc.h \
  1545. include/ode/objects.h \
  1546. include/ode/odecpp.h \
  1547. include/ode/collision_space.h \
  1548. include/ode/collision.h \
  1549. include/ode/collision_trimesh.h \
  1550. include/ode/odecpp_collision.h \
  1551. include/ode/export-dif.h \
  1552. include/drawstuff/drawstuff.h \
  1553. include/drawstuff/version.h
  1554. ode/test/test_collision.o: \
  1555. ode/test/test_collision.cpp \
  1556. include/ode/ode.h \
  1557. include/ode/config.h \
  1558. include/ode/compatibility.h \
  1559. include/ode/common.h \
  1560. include/ode/error.h \
  1561. include/ode/contact.h \
  1562. include/ode/memory.h \
  1563. include/ode/odemath.h \
  1564. include/ode/matrix.h \
  1565. include/ode/timer.h \
  1566. include/ode/rotation.h \
  1567. include/ode/mass.h \
  1568. include/ode/misc.h \
  1569. include/ode/objects.h \
  1570. include/ode/odecpp.h \
  1571. include/ode/collision_space.h \
  1572. include/ode/collision.h \
  1573. include/ode/collision_trimesh.h \
  1574. include/ode/odecpp_collision.h \
  1575. include/ode/export-dif.h \
  1576. include/drawstuff/drawstuff.h \
  1577. include/drawstuff/version.h
  1578. ode/test/test_boxstack.o: \
  1579. ode/test/test_boxstack.cpp \
  1580. include/ode/ode.h \
  1581. include/ode/config.h \
  1582. include/ode/compatibility.h \
  1583. include/ode/common.h \
  1584. include/ode/error.h \
  1585. include/ode/contact.h \
  1586. include/ode/memory.h \
  1587. include/ode/odemath.h \
  1588. include/ode/matrix.h \
  1589. include/ode/timer.h \
  1590. include/ode/rotation.h \
  1591. include/ode/mass.h \
  1592. include/ode/misc.h \
  1593. include/ode/objects.h \
  1594. include/ode/odecpp.h \
  1595. include/ode/collision_space.h \
  1596. include/ode/collision.h \
  1597. include/ode/collision_trimesh.h \
  1598. include/ode/odecpp_collision.h \
  1599. include/ode/export-dif.h \
  1600. include/drawstuff/drawstuff.h \
  1601. include/drawstuff/version.h
  1602. ode/test/test_buggy.o: \
  1603. ode/test/test_buggy.cpp \
  1604. include/ode/ode.h \
  1605. include/ode/config.h \
  1606. include/ode/compatibility.h \
  1607. include/ode/common.h \
  1608. include/ode/error.h \
  1609. include/ode/contact.h \
  1610. include/ode/memory.h \
  1611. include/ode/odemath.h \
  1612. include/ode/matrix.h \
  1613. include/ode/timer.h \
  1614. include/ode/rotation.h \
  1615. include/ode/mass.h \
  1616. include/ode/misc.h \
  1617. include/ode/objects.h \
  1618. include/ode/odecpp.h \
  1619. include/ode/collision_space.h \
  1620. include/ode/collision.h \
  1621. include/ode/collision_trimesh.h \
  1622. include/ode/odecpp_collision.h \
  1623. include/ode/export-dif.h \
  1624. include/drawstuff/drawstuff.h \
  1625. include/drawstuff/version.h
  1626. ode/test/test_crash.o: \
  1627. ode/test/test_crash.cpp \
  1628. include/ode/ode.h \
  1629. include/ode/config.h \
  1630. include/ode/compatibility.h \
  1631. include/ode/common.h \
  1632. include/ode/error.h \
  1633. include/ode/contact.h \
  1634. include/ode/memory.h \
  1635. include/ode/odemath.h \
  1636. include/ode/matrix.h \
  1637. include/ode/timer.h \
  1638. include/ode/rotation.h \
  1639. include/ode/mass.h \
  1640. include/ode/misc.h \
  1641. include/ode/objects.h \
  1642. include/ode/odecpp.h \
  1643. include/ode/collision_space.h \
  1644. include/ode/collision.h \
  1645. include/ode/collision_trimesh.h \
  1646. include/ode/odecpp_collision.h \
  1647. include/ode/export-dif.h \
  1648. include/drawstuff/drawstuff.h \
  1649. include/drawstuff/version.h
  1650. ode/test/test_joints.o: \
  1651. ode/test/test_joints.cpp \
  1652. include/ode/ode.h \
  1653. include/ode/config.h \
  1654. include/ode/compatibility.h \
  1655. include/ode/common.h \
  1656. include/ode/error.h \
  1657. include/ode/contact.h \
  1658. include/ode/memory.h \
  1659. include/ode/odemath.h \
  1660. include/ode/matrix.h \
  1661. include/ode/timer.h \
  1662. include/ode/rotation.h \
  1663. include/ode/mass.h \
  1664. include/ode/misc.h \
  1665. include/ode/objects.h \
  1666. include/ode/odecpp.h \
  1667. include/ode/collision_space.h \
  1668. include/ode/collision.h \
  1669. include/ode/collision_trimesh.h \
  1670. include/ode/odecpp_collision.h \
  1671. include/ode/export-dif.h \
  1672. include/drawstuff/drawstuff.h \
  1673. include/drawstuff/version.h
  1674. ode/test/test_space.o: \
  1675. ode/test/test_space.cpp \
  1676. include/ode/ode.h \
  1677. include/ode/config.h \
  1678. include/ode/compatibility.h \
  1679. include/ode/common.h \
  1680. include/ode/error.h \
  1681. include/ode/contact.h \
  1682. include/ode/memory.h \
  1683. include/ode/odemath.h \
  1684. include/ode/matrix.h \
  1685. include/ode/timer.h \
  1686. include/ode/rotation.h \
  1687. include/ode/mass.h \
  1688. include/ode/misc.h \
  1689. include/ode/objects.h \
  1690. include/ode/odecpp.h \
  1691. include/ode/collision_space.h \
  1692. include/ode/collision.h \
  1693. include/ode/collision_trimesh.h \
  1694. include/ode/odecpp_collision.h \
  1695. include/ode/export-dif.h \
  1696. include/drawstuff/drawstuff.h \
  1697. include/drawstuff/version.h
  1698. ode/test/test_I.o: \
  1699. ode/test/test_I.cpp \
  1700. include/ode/ode.h \
  1701. include/ode/config.h \
  1702. include/ode/compatibility.h \
  1703. include/ode/common.h \
  1704. include/ode/error.h \
  1705. include/ode/contact.h \
  1706. include/ode/memory.h \
  1707. include/ode/odemath.h \
  1708. include/ode/matrix.h \
  1709. include/ode/timer.h \
  1710. include/ode/rotation.h \
  1711. include/ode/mass.h \
  1712. include/ode/misc.h \
  1713. include/ode/objects.h \
  1714. include/ode/odecpp.h \
  1715. include/ode/collision_space.h \
  1716. include/ode/collision.h \
  1717. include/ode/collision_trimesh.h \
  1718. include/ode/odecpp_collision.h \
  1719. include/ode/export-dif.h \
  1720. include/drawstuff/drawstuff.h \
  1721. include/drawstuff/version.h
  1722. ode/test/test_step.o: \
  1723. ode/test/test_step.cpp \
  1724. include/ode/ode.h \
  1725. include/ode/config.h \
  1726. include/ode/compatibility.h \
  1727. include/ode/common.h \
  1728. include/ode/error.h \
  1729. include/ode/contact.h \
  1730. include/ode/memory.h \
  1731. include/ode/odemath.h \
  1732. include/ode/matrix.h \
  1733. include/ode/timer.h \
  1734. include/ode/rotation.h \
  1735. include/ode/mass.h \
  1736. include/ode/misc.h \
  1737. include/ode/objects.h \
  1738. include/ode/odecpp.h \
  1739. include/ode/collision_space.h \
  1740. include/ode/collision.h \
  1741. include/ode/collision_trimesh.h \
  1742. include/ode/odecpp_collision.h \
  1743. include/ode/export-dif.h \
  1744. include/drawstuff/drawstuff.h \
  1745. include/drawstuff/version.h
  1746. ode/test/test_friction.o: \
  1747. ode/test/test_friction.cpp \
  1748. include/ode/ode.h \
  1749. include/ode/config.h \
  1750. include/ode/compatibility.h \
  1751. include/ode/common.h \
  1752. include/ode/error.h \
  1753. include/ode/contact.h \
  1754. include/ode/memory.h \
  1755. include/ode/odemath.h \
  1756. include/ode/matrix.h \
  1757. include/ode/timer.h \
  1758. include/ode/rotation.h \
  1759. include/ode/mass.h \
  1760. include/ode/misc.h \
  1761. include/ode/objects.h \
  1762. include/ode/odecpp.h \
  1763. include/ode/collision_space.h \
  1764. include/ode/collision.h \
  1765. include/ode/collision_trimesh.h \
  1766. include/ode/odecpp_collision.h \
  1767. include/ode/export-dif.h \
  1768. include/drawstuff/drawstuff.h \
  1769. include/drawstuff/version.h
  1770. ode/test/test_space_stress.o: \
  1771. ode/test/test_space_stress.cpp \
  1772. include/ode/ode.h \
  1773. include/ode/config.h \
  1774. include/ode/compatibility.h \
  1775. include/ode/common.h \
  1776. include/ode/error.h \
  1777. include/ode/contact.h \
  1778. include/ode/memory.h \
  1779. include/ode/odemath.h \
  1780. include/ode/matrix.h \
  1781. include/ode/timer.h \
  1782. include/ode/rotation.h \
  1783. include/ode/mass.h \
  1784. include/ode/misc.h \
  1785. include/ode/objects.h \
  1786. include/ode/odecpp.h \
  1787. include/ode/collision_space.h \
  1788. include/ode/collision.h \
  1789. include/ode/collision_trimesh.h \
  1790. include/ode/odecpp_collision.h \
  1791. include/ode/export-dif.h \
  1792. include/drawstuff/drawstuff.h \
  1793. include/drawstuff/version.h
  1794. ode/test/test_trimesh.o: \
  1795. ode/test/test_trimesh.cpp \
  1796. include/ode/ode.h \
  1797. include/ode/config.h \
  1798. include/ode/compatibility.h \
  1799. include/ode/common.h \
  1800. include/ode/error.h \
  1801. include/ode/contact.h \
  1802. include/ode/memory.h \
  1803. include/ode/odemath.h \
  1804. include/ode/matrix.h \
  1805. include/ode/timer.h \
  1806. include/ode/rotation.h \
  1807. include/ode/mass.h \
  1808. include/ode/misc.h \
  1809. include/ode/objects.h \
  1810. include/ode/odecpp.h \
  1811. include/ode/collision_space.h \
  1812. include/ode/collision.h \
  1813. include/ode/collision_trimesh.h \
  1814. include/ode/odecpp_collision.h \
  1815. include/ode/export-dif.h \
  1816. include/drawstuff/drawstuff.h \
  1817. include/drawstuff/version.h
  1818. ode/test/test_moving_trimesh.o: \
  1819. ode/test/test_moving_trimesh.cpp \
  1820. include/ode/ode.h \
  1821. include/ode/config.h \
  1822. include/ode/compatibility.h \
  1823. include/ode/common.h \
  1824. include/ode/error.h \
  1825. include/ode/contact.h \
  1826. include/ode/memory.h \
  1827. include/ode/odemath.h \
  1828. include/ode/matrix.h \
  1829. include/ode/timer.h \
  1830. include/ode/rotation.h \
  1831. include/ode/mass.h \
  1832. include/ode/misc.h \
  1833. include/ode/objects.h \
  1834. include/ode/odecpp.h \
  1835. include/ode/collision_space.h \
  1836. include/ode/collision.h \
  1837. include/ode/collision_trimesh.h \
  1838. include/ode/odecpp_collision.h \
  1839. include/ode/export-dif.h \
  1840. include/drawstuff/drawstuff.h \
  1841. include/drawstuff/version.h
  1842. drawstuff/dstest/dstest.o: \
  1843. drawstuff/dstest/dstest.cpp \
  1844. include/drawstuff/drawstuff.h \
  1845. include/drawstuff/version.h