Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

167 строки
6.1 KiB

  1. include $(top_srcdir)/build/autotools/common.am
  2. SUBDIRS = bullet lua data . t
  3. noinst_LIBRARIES = liblolcore.a
  4. liblolcore_a_SOURCES = \
  5. tiler.cpp tiler.h dict.cpp dict.h \
  6. audio.cpp audio.h scene.cpp scene.h font.cpp font.h \
  7. entity.cpp entity.h ticker.cpp ticker.h lolgl.h \
  8. tileset.cpp tileset.h forge.cpp forge.h video.cpp video.h \
  9. world.cpp world.h sample.cpp sample.h sampler.cpp sampler.h \
  10. profiler.cpp profiler.h text.cpp text.h emitter.cpp emitter.h \
  11. numeric.h utils.h messageservice.cpp messageservice.h \
  12. worldentity.cpp worldentity.h gradient.cpp gradient.h gradient.lolfx \
  13. platform.cpp platform.h sprite.cpp sprite.h camera.cpp camera.h \
  14. light.cpp light.h \
  15. \
  16. $(liblolcore_headers) \
  17. $(liblolcore_sources) \
  18. \
  19. $(ps3_sources) \
  20. $(xbox_sources) \
  21. $(nacl_sources) \
  22. $(sdl_sources) \
  23. $(d3d9_sources) \
  24. $(android_sources)
  25. #liblolcore_a_CPPFLAGS = -include-pch $(srcdir)/lol/engine-internal.h.pch $(AM_CPPFLAGS) -I$(srcdir)/bullet -I$(srcdir)/lua
  26. liblolcore_a_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/bullet -I$(srcdir)/lua
  27. EXTRA_DIST += easymesh/easymesh-scanner.l easymesh/easymesh-parser.y \
  28. gpu/lolfx-scanner.l gpu/lolfx-parser.y
  29. liblolcore_headers = \
  30. lol/engine-internal.h lol/engine.h lol/public.h lol/extras.h \
  31. \
  32. lol/base/all.h \
  33. lol/base/avl_tree.h lol/base/features.h lol/base/tuple.h lol/base/types.h \
  34. lol/base/array.h lol/base/assert.h lol/base/string.h lol/base/hash.h \
  35. lol/base/map.h lol/base/enum.h lol/base/log.h \
  36. \
  37. lol/math/all.h \
  38. lol/math/functions.h lol/math/vector.h lol/math/half.h lol/math/real.h \
  39. lol/math/geometry.h lol/math/interp.h lol/math/rand.h lol/math/array2d.h \
  40. lol/math/array3d.h lol/math/constants.h lol/math/matrix.h lol/math/ops.h \
  41. lol/math/transform.h lol/math/polynomial.h \
  42. lol/math/noise/gradient.h lol/math/noise/perlin.h \
  43. lol/math/noise/simplex.h \
  44. \
  45. lol/algorithm/all.h \
  46. lol/algorithm/sort.h lol/algorithm/portal.h lol/algorithm/aabb_tree.h \
  47. \
  48. lol/sys/all.h \
  49. lol/sys/init.h lol/sys/file.h lol/sys/thread.h lol/sys/timer.h \
  50. \
  51. lol/image/all.h \
  52. lol/image/pixel.h lol/image/color.h lol/image/image.h lol/image/movie.h \
  53. \
  54. lol/gpu/all.h \
  55. lol/gpu/shader.h lol/gpu/indexbuffer.h lol/gpu/vertexbuffer.h \
  56. lol/gpu/framebuffer.h lol/gpu/texture.h lol/gpu/lolfx.h \
  57. lol/gpu/renderer.h lol/gpu/rendercontext.h \
  58. \
  59. lol/debug/all.h \
  60. lol/debug/lines.h
  61. liblolcore_sources = \
  62. generated/location.hh generated/position.hh generated/stack.hh \
  63. \
  64. application/application.cpp application/application.h \
  65. eglapp.cpp eglapp.h \
  66. \
  67. commandstack.h \
  68. easymesh/easymeshbuild.cpp easymesh/easymeshbuild.h \
  69. easymesh/easymeshrender.cpp easymesh/easymeshrender.h \
  70. easymesh/easymesh.cpp easymesh/easymesh.h \
  71. easymesh/csgbsp.cpp easymesh/csgbsp.h \
  72. easymesh/shiny.lolfx easymesh/shinyflat.lolfx \
  73. easymesh/shinydebugwireframe.lolfx \
  74. easymesh/shinydebuglighting.lolfx easymesh/shinydebugnormal.lolfx \
  75. easymesh/shinydebugUV.lolfx easymesh/shiny_SK.lolfx \
  76. easymesh/easymesh-compiler.cpp easymesh/easymesh-compiler.h \
  77. generated/easymesh-parser.cpp generated/easymesh-parser.h \
  78. generated/easymesh-scanner.cpp \
  79. \
  80. base/assert.cpp base/hash.cpp base/log.cpp base/string.cpp \
  81. base/enum.cpp \
  82. \
  83. math/vector.cpp math/matrix.cpp math/transform.cpp math/trig.cpp \
  84. math/constants.cpp math/geometry.cpp math/real.cpp math/half.cpp \
  85. \
  86. gpu/shader.cpp gpu/indexbuffer.cpp gpu/vertexbuffer.cpp \
  87. gpu/framebuffer.cpp gpu/texture.cpp gpu/renderer.cpp \
  88. gpu/rendercontext.cpp \
  89. \
  90. input/input.cpp input/input.h input/input_internal.h input/keys.h \
  91. input/controller.cpp input/controller.h \
  92. \
  93. gpu/defaultmaterial.lolfx \
  94. gpu/tile.lolfx gpu/palette.lolfx gpu/line.lolfx \
  95. gpu/emptymaterial.lolfx \
  96. gpu/testmaterial.lolfx \
  97. \
  98. gpu/lolfx.cpp \
  99. gpu/lolfx-compiler.cpp gpu/lolfx-compiler.h \
  100. generated/lolfx-parser.cpp generated/lolfx-parser.h \
  101. generated/lolfx-scanner.cpp \
  102. \
  103. mesh/mesh.cpp mesh/mesh.h \
  104. mesh/primitive.cpp mesh/primitive.h \
  105. \
  106. sys/init.cpp sys/timer.cpp sys/file.cpp \
  107. sys/thread.cpp sys/threadbase.h \
  108. \
  109. image/image.cpp image/image-private.h image/kernel.cpp image/pixel.cpp \
  110. image/crop.cpp image/resample.cpp image/noise.cpp image/combine.cpp \
  111. image/codec/gdiplus-image.cpp image/codec/imlib2-image.cpp \
  112. image/codec/sdl-image.cpp image/codec/ios-image.cpp \
  113. image/codec/zed-image.cpp image/codec/zed-palette-image.cpp \
  114. image/codec/oric-image.cpp image/codec/dummy-image.cpp \
  115. image/color/cie1931.cpp image/color/color.cpp \
  116. image/dither/random.cpp image/dither/ediff.cpp image/dither/dbs.cpp \
  117. image/dither/ostromoukhov.cpp image/dither/ordered.cpp \
  118. image/filter/convolution.cpp image/filter/color.cpp \
  119. image/filter/dilate.cpp image/filter/median.cpp image/filter/yuv.cpp \
  120. image/movie.cpp \
  121. \
  122. loldebug.h \
  123. debug/fps.cpp debug/fps.h debug/lines.cpp \
  124. debug/record.cpp debug/record.h debug/stats.cpp debug/stats.h
  125. sdl_sources = \
  126. platform/sdl/sdlapp.cpp platform/sdl/sdlapp.h \
  127. platform/sdl/sdlinput.cpp platform/sdl/sdlinput.h
  128. d3d9_sources = \
  129. platform/d3d9/d3d9input.cpp platform/d3d9/d3d9input.h
  130. if USE_NACL
  131. nacl_sources = \
  132. platform/nacl/nacl-app.cpp platform/nacl/nacl-app.h \
  133. platform/nacl/nacl-instance.cpp platform/nacl/nacl-instance.h \
  134. platform/nacl/nacl-module.cpp \
  135. platform/nacl/opengl_context.cpp platform/nacl/opengl_context.h \
  136. platform/nacl/opengl_context_ptrs.h
  137. endif
  138. if USE_PS3
  139. ps3_sources = \
  140. image/codec/ps3-image.cpp \
  141. platform/ps3/threadbase.h \
  142. platform/ps3/ps3app.cpp platform/ps3/ps3app.h \
  143. platform/ps3/ps3input.cpp platform/ps3/ps3input.h
  144. endif
  145. if USE_X360
  146. xbox_sources = \
  147. platform/xbox/xboxapp.cpp platform/xbox/xboxapp.h \
  148. platform/xbox/xboxinput.cpp platform/xbox/xboxinput.h
  149. endif
  150. android_sources = \
  151. image/codec/android-image.cpp \
  152. platform/android/androidapp.cpp platform/android/androidapp.h