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.
 
 
 

72 lines
2.2 KiB

  1. noinst_LIBRARIES = liblol.a
  2. liblol_a_SOURCES = \
  3. core.h tiler.cpp tiler.h dict.cpp dict.h \
  4. audio.cpp audio.h scene.cpp scene.h font.cpp font.h layer.cpp layer.h \
  5. map.cpp map.h entity.cpp entity.h ticker.cpp ticker.h lolgl.h \
  6. tileset.cpp tileset.h forge.cpp forge.h video.cpp video.h log.cpp log.h \
  7. timer.cpp timer.h bitfield.h profiler.cpp profiler.h input.h input.cpp \
  8. world.cpp world.h sample.cpp sample.h sampler.cpp sampler.h \
  9. text.cpp text.h emitter.cpp emitter.h numeric.h hash.cpp hash.h \
  10. worldentity.cpp worldentity.h gradient.cpp gradient.h \
  11. platform.cpp platform.h sprite.cpp sprite.h \
  12. \
  13. lol/unit.h \
  14. lol/math/vector.h lol/math/half.h lol/math/real.h lol/math/remez.h \
  15. \
  16. application/application.cpp application/application.h \
  17. eglapp.cpp eglapp.h \
  18. \
  19. $(ps3_sources) \
  20. $(xbox_sources) \
  21. $(nacl_sources) \
  22. $(sdl_sources) \
  23. \
  24. thread/threadbase.h thread/thread.h \
  25. \
  26. math/vector.cpp math/real.cpp math/half.cpp math/trig.cpp math/trig.h \
  27. \
  28. gpu/shader.cpp gpu/shader.h \
  29. gpu/vbo.cpp gpu/vbo.h \
  30. \
  31. image/image.cpp image/image.h image/image-private.h \
  32. image/codec/android-image.cpp \
  33. image/codec/gdiplus-image.cpp \
  34. image/codec/ios-image.cpp \
  35. image/codec/sdl-image.cpp \
  36. image/codec/ps3-image.cpp \
  37. image/codec/dummy-image.cpp \
  38. \
  39. loldebug.h \
  40. debug/fps.cpp debug/fps.h debug/sphere.cpp debug/sphere.h \
  41. debug/record.cpp debug/record.h debug/stats.cpp debug/stats.h \
  42. debug/quad.cpp debug/quad.h
  43. liblol_a_CPPFLAGS = @LOL_CFLAGS@
  44. sdl_sources = \
  45. platform/sdl/sdlapp.cpp platform/sdl/sdlapp.h \
  46. platform/sdl/sdlinput.cpp platform/sdl/sdlinput.h
  47. if USE_NACL
  48. nacl_sources = \
  49. platform/nacl/naclapp.cpp platform/nacl/naclapp.h \
  50. platform/nacl/nacl_instance.cpp platform/nacl/nacl_instance.h \
  51. platform/nacl/nacl_module.cpp \
  52. platform/nacl/opengl_context.cpp platform/nacl/opengl_context.h \
  53. platform/nacl/opengl_context_ptrs.h
  54. endif
  55. if HAVE_PS3
  56. ps3_sources = \
  57. platform/ps3/threadbase.h \
  58. platform/ps3/ps3app.cpp platform/ps3/ps3app.h \
  59. platform/ps3/ps3input.cpp platform/ps3/ps3input.h
  60. endif
  61. if HAVE_XBOX
  62. xbox_sources = \
  63. platform/xbox/xboxapp.cpp platform/xbox/xboxapp.h
  64. endif