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

153 строки
5.7 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. $(xbox_sources) \
  20. $(nacl_sources) \
  21. $(sdl_sources) \
  22. $(d3d9_sources) \
  23. $(android_sources)
  24. #liblolcore_a_CPPFLAGS = -include-pch $(srcdir)/lol/engine-internal.h.pch $(AM_CPPFLAGS) -I$(srcdir)/bullet -I$(srcdir)/lua
  25. liblolcore_a_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/bullet -I$(srcdir)/lua
  26. EXTRA_DIST += easymesh/easymesh-scanner.l easymesh/easymesh-parser.y
  27. liblolcore_headers = \
  28. lol/engine-internal.h lol/engine.h lol/public.h lol/extras.h \
  29. \
  30. lol/base/all.h \
  31. lol/base/avl_tree.h lol/base/features.h lol/base/tuple.h lol/base/types.h \
  32. lol/base/array.h lol/base/assert.h lol/base/string.h lol/base/hash.h \
  33. lol/base/map.h lol/base/enum.h lol/base/log.h \
  34. \
  35. lol/math/all.h \
  36. lol/math/functions.h lol/math/vector.h lol/math/half.h lol/math/real.h \
  37. lol/math/geometry.h lol/math/interp.h lol/math/rand.h lol/math/array2d.h \
  38. lol/math/array3d.h lol/math/constants.h lol/math/matrix.h lol/math/ops.h \
  39. lol/math/transform.h lol/math/polynomial.h lol/math/bigint.h \
  40. lol/math/noise/gradient.h lol/math/noise/perlin.h \
  41. lol/math/noise/simplex.h \
  42. \
  43. lol/algorithm/all.h \
  44. lol/algorithm/sort.h lol/algorithm/portal.h lol/algorithm/aabb_tree.h \
  45. \
  46. lol/sys/all.h \
  47. lol/sys/init.h lol/sys/file.h lol/sys/thread.h lol/sys/timer.h \
  48. \
  49. lol/image/all.h \
  50. lol/image/pixel.h lol/image/color.h lol/image/image.h lol/image/movie.h \
  51. \
  52. lol/gpu/all.h \
  53. lol/gpu/shader.h lol/gpu/indexbuffer.h lol/gpu/vertexbuffer.h \
  54. lol/gpu/framebuffer.h lol/gpu/texture.h lol/gpu/lolfx.h \
  55. lol/gpu/renderer.h lol/gpu/rendercontext.h \
  56. \
  57. lol/debug/all.h \
  58. lol/debug/lines.h
  59. liblolcore_sources = \
  60. application/application.cpp application/application.h \
  61. application/baselua.cpp application/baselua.h \
  62. eglapp.cpp eglapp.h \
  63. \
  64. commandstack.h \
  65. easymesh/easymeshbuild.cpp easymesh/easymeshbuild.h \
  66. easymesh/easymeshrender.cpp easymesh/easymeshrender.h \
  67. easymesh/easymesh.cpp \
  68. easymesh/easymeshinternal.cpp easymesh/easymeshcsg.cpp \
  69. easymesh/easymeshprimitive.cpp easymesh/easymeshtransform.cpp \
  70. easymesh/easymeshcursor.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. \
  77. base/assert.cpp base/hash.cpp base/log.cpp base/string.cpp \
  78. base/enum.cpp \
  79. \
  80. math/vector.cpp math/matrix.cpp math/transform.cpp math/trig.cpp \
  81. math/constants.cpp math/geometry.cpp math/real.cpp math/half.cpp \
  82. \
  83. gpu/shader.cpp gpu/indexbuffer.cpp gpu/vertexbuffer.cpp \
  84. gpu/framebuffer.cpp gpu/texture.cpp gpu/renderer.cpp \
  85. gpu/rendercontext.cpp \
  86. \
  87. input/input.cpp input/input.h input/input_internal.h input/keys.h \
  88. input/controller.cpp input/controller.h \
  89. \
  90. gpu/defaultmaterial.lolfx \
  91. gpu/tile.lolfx gpu/palette.lolfx gpu/line.lolfx \
  92. gpu/emptymaterial.lolfx \
  93. gpu/testmaterial.lolfx \
  94. \
  95. gpu/lolfx.cpp \
  96. \
  97. mesh/mesh.cpp mesh/mesh.h \
  98. mesh/primitive.cpp mesh/primitive.h \
  99. \
  100. sys/init.cpp sys/timer.cpp sys/file.cpp sys/hacks.cpp \
  101. sys/thread.cpp sys/threadbase.h \
  102. \
  103. image/image.cpp image/image-private.h image/kernel.cpp image/pixel.cpp \
  104. image/crop.cpp image/resample.cpp image/noise.cpp image/combine.cpp \
  105. image/codec/gdiplus-image.cpp image/codec/imlib2-image.cpp \
  106. image/codec/sdl-image.cpp image/codec/ios-image.cpp \
  107. image/codec/zed-image.cpp image/codec/zed-palette-image.cpp \
  108. image/codec/oric-image.cpp image/codec/dummy-image.cpp \
  109. image/color/cie1931.cpp image/color/color.cpp \
  110. image/dither/random.cpp image/dither/ediff.cpp image/dither/dbs.cpp \
  111. image/dither/ostromoukhov.cpp image/dither/ordered.cpp \
  112. image/filter/convolution.cpp image/filter/color.cpp \
  113. image/filter/dilate.cpp image/filter/median.cpp image/filter/yuv.cpp \
  114. image/movie.cpp \
  115. \
  116. loldebug.h \
  117. debug/fps.cpp debug/fps.h debug/lines.cpp \
  118. debug/record.cpp debug/record.h debug/stats.cpp debug/stats.h
  119. sdl_sources = \
  120. platform/sdl/sdlapp.cpp platform/sdl/sdlapp.h \
  121. platform/sdl/sdlinput.cpp platform/sdl/sdlinput.h
  122. d3d9_sources = \
  123. platform/d3d9/d3d9input.cpp platform/d3d9/d3d9input.h
  124. if USE_NACL
  125. nacl_sources = \
  126. platform/nacl/nacl-app.cpp platform/nacl/nacl-app.h \
  127. platform/nacl/nacl-instance.cpp platform/nacl/nacl-instance.h \
  128. platform/nacl/nacl-module.cpp \
  129. platform/nacl/opengl_context.cpp platform/nacl/opengl_context.h \
  130. platform/nacl/opengl_context_ptrs.h
  131. endif
  132. if USE_X360
  133. xbox_sources = \
  134. platform/xbox/xboxapp.cpp platform/xbox/xboxapp.h \
  135. platform/xbox/xboxinput.cpp platform/xbox/xboxinput.h
  136. endif
  137. android_sources = \
  138. image/codec/android-image.cpp \
  139. platform/android/androidapp.cpp platform/android/androidapp.h