Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

146 righe
4.6 KiB

  1. include $(top_srcdir)/build/autotools/common.am
  2. SUBDIRS = bullet lua data
  3. noinst_LIBRARIES = liblolcore.a
  4. liblolcore_a_SOURCES = \
  5. core.h tiler.cpp tiler.h dict.cpp dict.h \
  6. audio.cpp audio.h scene.cpp scene.h font.cpp font.h layer.cpp layer.h \
  7. map.cpp map.h 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 numeric.h \
  11. worldentity.cpp worldentity.h gradient.cpp gradient.h gradient.lolfx \
  12. platform.cpp platform.h sprite.cpp sprite.h camera.cpp camera.h \
  13. light.cpp light.h \
  14. \
  15. $(liblolcore_headers) \
  16. $(liblolcore_sources) \
  17. \
  18. $(ps3_sources) \
  19. $(xbox_sources) \
  20. $(nacl_sources) \
  21. $(sdl_sources) \
  22. $(d3d9_sources) \
  23. $(android_sources)
  24. liblolcore_a_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/bullet -I$(srcdir)/lua
  25. EXTRA_DIST += easymesh/easymesh-scanner.l easymesh/easymesh-parser.y \
  26. gpu/lolfx-scanner.l gpu/lolfx-parser.y
  27. liblolcore_headers = \
  28. lol/base/all.h \
  29. lol/base/log.h lol/base/array.h lol/base/types.h lol/base/array.h \
  30. lol/base/assert.h lol/base/string.h lol/base/hash.h lol/base/map.h \
  31. \
  32. lol/math/all.h \
  33. lol/math/functions.h lol/math/vector.h lol/math/half.h lol/math/real.h \
  34. lol/math/remez.h lol/math/geometry.h lol/math/interp.h lol/math/rand.h \
  35. lol/math/constants.h \
  36. \
  37. lol/sys/all.h \
  38. lol/sys/init.h lol/sys/file.h lol/sys/thread.h lol/sys/atomic.h \
  39. lol/sys/timer.h \
  40. \
  41. lol/image/all.h \
  42. lol/image/color.h lol/image/image.h \
  43. \
  44. lol/gpu/all.h \
  45. lol/gpu/shader.h lol/gpu/indexbuffer.h lol/gpu/vertexbuffer.h \
  46. lol/gpu/framebuffer.h lol/gpu/texture.h lol/gpu/lolfx.h \
  47. \
  48. lol/debug/all.h \
  49. lol/debug/lines.h \
  50. \
  51. lol/unit.h
  52. liblolcore_sources = \
  53. generated/location.hh generated/position.hh generated/stack.hh \
  54. \
  55. application/application.cpp application/application.h \
  56. eglapp.cpp eglapp.h \
  57. \
  58. easymesh/easymesh.cpp easymesh/easymesh.h \
  59. easymesh/csgbsp.cpp easymesh/csgbsp.h \
  60. easymesh/shiny.lolfx easymesh/shinydebugwireframe.lolfx \
  61. easymesh/shinydebuglighting.lolfx easymesh/shinydebugnormal.lolfx \
  62. easymesh/shinydebugUV.lolfx easymesh/shiny_SK.lolfx \
  63. easymesh/easymesh-compiler.cpp easymesh/easymesh-compiler.h \
  64. generated/easymesh-parser.cpp generated/easymesh-parser.h \
  65. generated/easymesh-scanner.cpp \
  66. \
  67. base/assert.cpp base/hash.cpp base/log.cpp base/string.cpp \
  68. \
  69. math/vector.cpp math/real.cpp math/half.cpp math/trig.cpp \
  70. math/geometry.cpp \
  71. \
  72. gpu/shader.cpp gpu/indexbuffer.cpp gpu/vertexbuffer.cpp \
  73. gpu/framebuffer.cpp gpu/texture.cpp \
  74. \
  75. input/input.cpp input/input.h \
  76. input/keyboard.cpp input/keyboard.h \
  77. input/stick.cpp input/stick.h \
  78. \
  79. gpu/defaultmaterial.lolfx \
  80. gpu/tile.lolfx gpu/line.lolfx \
  81. gpu/emptymaterial.lolfx \
  82. gpu/testmaterial.lolfx \
  83. \
  84. gpu/lolfx.cpp \
  85. gpu/lolfx-compiler.cpp gpu/lolfx-compiler.h \
  86. generated/lolfx-parser.cpp generated/lolfx-parser.h \
  87. generated/lolfx-scanner.cpp \
  88. \
  89. mesh/mesh.cpp mesh/mesh.h \
  90. \
  91. sys/init.cpp sys/timer.cpp sys/file.cpp \
  92. sys/threadbase.h \
  93. \
  94. image/image.cpp image/image-private.h \
  95. image/codec/gdiplus-image.cpp \
  96. image/codec/ios-image.cpp \
  97. image/codec/dummy-image.cpp \
  98. image/color/cie1931.cpp \
  99. \
  100. loldebug.h \
  101. debug/fps.cpp debug/fps.h debug/lines.cpp \
  102. debug/record.cpp debug/record.h debug/stats.cpp debug/stats.h
  103. sdl_sources = \
  104. image/codec/sdl-image.cpp \
  105. platform/sdl/sdlapp.cpp platform/sdl/sdlapp.h \
  106. platform/sdl/sdlinput.cpp platform/sdl/sdlinput.h
  107. d3d9_sources = \
  108. platform/d3d9/d3d9input.cpp platform/d3d9/d3d9input.h
  109. if USE_NACL
  110. nacl_sources = \
  111. platform/nacl/nacl-app.cpp platform/nacl/nacl-app.h \
  112. platform/nacl/nacl-instance.cpp platform/nacl/nacl-instance.h \
  113. platform/nacl/nacl-module.cpp \
  114. platform/nacl/opengl_context.cpp platform/nacl/opengl_context.h \
  115. platform/nacl/opengl_context_ptrs.h
  116. endif
  117. if USE_PS3
  118. ps3_sources = \
  119. image/codec/ps3-image.cpp \
  120. platform/ps3/threadbase.h \
  121. platform/ps3/ps3app.cpp platform/ps3/ps3app.h \
  122. platform/ps3/ps3input.cpp platform/ps3/ps3input.h
  123. endif
  124. if USE_X360
  125. xbox_sources = \
  126. platform/xbox/xboxapp.cpp platform/xbox/xboxapp.h \
  127. platform/xbox/xboxinput.cpp platform/xbox/xboxinput.h
  128. endif
  129. android_sources = \
  130. image/codec/android-image.cpp \
  131. platform/android/androidapp.cpp platform/android/androidapp.h