You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

158 rivejä
5.8 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. textureimage.cpp textureimage.h tileset.cpp tileset.h \
  9. forge.cpp forge.h video.cpp video.h \
  10. world.cpp world.h sample.cpp sample.h sampler.cpp sampler.h \
  11. profiler.cpp profiler.h text.cpp text.h emitter.cpp emitter.h \
  12. numeric.h utils.h messageservice.cpp messageservice.h \
  13. worldentity.cpp worldentity.h gradient.cpp gradient.h gradient.lolfx \
  14. platform.cpp platform.h sprite.cpp sprite.h camera.cpp camera.h \
  15. light.cpp light.h lolimgui.cpp lolimgui.h \
  16. \
  17. $(liblolcore_headers) \
  18. $(liblolcore_sources) \
  19. \
  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. liblolcore_headers = \
  29. lol/engine-internal.h lol/engine.h lol/public.h lol/extras.h \
  30. \
  31. lol/base/all.h \
  32. lol/base/avl_tree.h lol/base/features.h lol/base/tuple.h lol/base/types.h \
  33. lol/base/array.h lol/base/assert.h lol/base/string.h lol/base/hash.h \
  34. lol/base/map.h lol/base/enum.h lol/base/log.h \
  35. \
  36. lol/math/all.h \
  37. lol/math/functions.h lol/math/vector.h lol/math/half.h lol/math/real.h \
  38. lol/math/geometry.h lol/math/interp.h lol/math/rand.h lol/math/array2d.h \
  39. lol/math/array3d.h lol/math/constants.h lol/math/matrix.h lol/math/ops.h \
  40. lol/math/transform.h lol/math/polynomial.h lol/math/bigint.h \
  41. lol/math/noise/gradient.h lol/math/noise/perlin.h \
  42. lol/math/noise/simplex.h \
  43. \
  44. lol/algorithm/all.h \
  45. lol/algorithm/sort.h lol/algorithm/portal.h lol/algorithm/aabb_tree.h \
  46. \
  47. lol/sys/all.h \
  48. lol/sys/init.h lol/sys/file.h lol/sys/thread.h lol/sys/timer.h \
  49. \
  50. lol/image/all.h \
  51. lol/image/pixel.h lol/image/color.h lol/image/image.h lol/image/movie.h \
  52. \
  53. lol/gpu/all.h \
  54. lol/gpu/shader.h lol/gpu/indexbuffer.h lol/gpu/vertexbuffer.h \
  55. lol/gpu/framebuffer.h lol/gpu/texture.h lol/gpu/lolfx.h \
  56. lol/gpu/renderer.h lol/gpu/rendercontext.h \
  57. \
  58. lol/debug/all.h \
  59. lol/debug/lines.h
  60. liblolcore_sources = \
  61. application/application.cpp application/application.h \
  62. \
  63. lolua/baselua.cpp lolua/baselua.h \
  64. \
  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 \
  71. easymesh/easymeshinternal.cpp easymesh/easymeshcsg.cpp \
  72. easymesh/easymeshprimitive.cpp easymesh/easymeshtransform.cpp \
  73. easymesh/easymeshcursor.cpp easymesh/easymesh.h \
  74. easymesh/easymeshlua.cpp easymesh/easymeshlua.h \
  75. easymesh/csgbsp.cpp easymesh/csgbsp.h \
  76. easymesh/shiny.lolfx easymesh/shinyflat.lolfx \
  77. easymesh/shinydebugwireframe.lolfx \
  78. easymesh/shinydebuglighting.lolfx easymesh/shinydebugnormal.lolfx \
  79. easymesh/shinydebugUV.lolfx easymesh/shiny_SK.lolfx \
  80. \
  81. base/assert.cpp base/hash.cpp base/log.cpp base/string.cpp \
  82. base/enum.cpp \
  83. \
  84. math/vector.cpp math/matrix.cpp math/transform.cpp math/trig.cpp \
  85. math/constants.cpp math/geometry.cpp math/real.cpp math/half.cpp \
  86. \
  87. gpu/shader.cpp gpu/indexbuffer.cpp gpu/vertexbuffer.cpp \
  88. gpu/framebuffer.cpp gpu/texture.cpp gpu/renderer.cpp \
  89. gpu/rendercontext.cpp \
  90. \
  91. input/input.cpp input/input.h input/input_internal.h input/keys.h \
  92. input/controller.cpp input/controller.h \
  93. \
  94. gpu/defaultmaterial.lolfx \
  95. gpu/tile.lolfx gpu/palette.lolfx gpu/line.lolfx \
  96. gpu/emptymaterial.lolfx \
  97. gpu/testmaterial.lolfx \
  98. \
  99. gpu/lolfx.cpp \
  100. \
  101. mesh/mesh.cpp mesh/mesh.h \
  102. mesh/primitivemesh.cpp mesh/primitivemesh.h \
  103. \
  104. sys/init.cpp sys/timer.cpp sys/file.cpp sys/hacks.cpp \
  105. sys/thread.cpp sys/threadbase.h \
  106. sys/threadtypes.cpp \
  107. \
  108. image/image.cpp image/image-private.h image/kernel.cpp image/pixel.cpp \
  109. image/crop.cpp image/resample.cpp image/noise.cpp image/combine.cpp \
  110. image/codec/gdiplus-image.cpp image/codec/imlib2-image.cpp \
  111. image/codec/sdl-image.cpp image/codec/ios-image.cpp \
  112. image/codec/zed-image.cpp image/codec/zed-palette-image.cpp \
  113. image/codec/oric-image.cpp image/codec/dummy-image.cpp \
  114. image/color/cie1931.cpp image/color/color.cpp \
  115. image/dither/random.cpp image/dither/ediff.cpp image/dither/dbs.cpp \
  116. image/dither/ostromoukhov.cpp image/dither/ordered.cpp \
  117. image/filter/convolution.cpp image/filter/colors.cpp \
  118. image/filter/dilate.cpp image/filter/median.cpp image/filter/yuv.cpp \
  119. image/movie.cpp \
  120. \
  121. loldebug.h \
  122. debug/fps.cpp debug/fps.h debug/lines.cpp \
  123. debug/record.cpp debug/record.h debug/stats.cpp debug/stats.h
  124. sdl_sources = \
  125. platform/sdl/sdlapp.cpp platform/sdl/sdlapp.h \
  126. platform/sdl/sdlinput.cpp platform/sdl/sdlinput.h
  127. d3d9_sources = \
  128. platform/d3d9/d3d9input.cpp platform/d3d9/d3d9input.h
  129. if USE_NACL
  130. nacl_sources = \
  131. platform/nacl/nacl-app.cpp platform/nacl/nacl-app.h \
  132. platform/nacl/nacl-instance.cpp platform/nacl/nacl-instance.h \
  133. platform/nacl/nacl-module.cpp \
  134. platform/nacl/opengl_context.cpp platform/nacl/opengl_context.h \
  135. platform/nacl/opengl_context_ptrs.h
  136. endif
  137. if USE_X360
  138. xbox_sources = \
  139. platform/xbox/xboxapp.cpp platform/xbox/xboxapp.h \
  140. platform/xbox/xboxinput.cpp platform/xbox/xboxinput.h
  141. endif
  142. android_sources = \
  143. image/codec/android-image.cpp \
  144. platform/android/androidapp.cpp platform/android/androidapp.h