Makefile.am 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. AUTOMAKE_OPTIONS = gnu
  2. pinlibdir = $(libdir)/pinball
  3. pinincludedir = $(includedir)/pinball
  4. pinlib_LIBRARIES = libemilia_base.a
  5. INCLUDES = -I../addon
  6. libemilia_base_a_SOURCES = \
  7. AlignVisitor.cpp \
  8. AllegroVisitor.cpp \
  9. AmbientLightVisitor.cpp \
  10. Behavior.cpp \
  11. BehaviorVisitor.cpp \
  12. BillBoard.cpp \
  13. Camera.cpp \
  14. CollisionBounds.cpp \
  15. CollisionVisitor.cpp \
  16. Config.cpp \
  17. EMath.cpp \
  18. EmFont.cpp \
  19. Engine.cpp \
  20. Group.cpp \
  21. Keyboard.cpp \
  22. Light.cpp \
  23. Node.cpp \
  24. OctTree.cpp \
  25. OpenGLVisitor.cpp \
  26. PointLightVisitor.cpp \
  27. Polygon.cpp \
  28. Profiler.cpp \
  29. Shape3D.cpp \
  30. SignalSender.cpp \
  31. Sound.cpp \
  32. SoundUtil.cpp \
  33. SoundVisitor.cpp \
  34. TextureUtil.cpp \
  35. TransformVisitor.cpp
  36. pininclude_HEADERS = \
  37. AlignVisitor.h \
  38. AllegroVisitor.h \
  39. AmbientLightVisitor.h \
  40. BaseTest.h \
  41. Behavior.h \
  42. BehaviorVisitor.h \
  43. BillBoard.h \
  44. Camera.h \
  45. CollisionBounds.h \
  46. CollisionVisitor.h \
  47. Config.h \
  48. EMath.h \
  49. EmFont.h \
  50. Engine.h \
  51. Group.h \
  52. Keyboard.h \
  53. Light.h \
  54. Node.h \
  55. OctTree.h \
  56. OpenGLVisitor.h \
  57. PointLightVisitor.h \
  58. Polygon.h \
  59. Private.h \
  60. Profiler.h \
  61. Shape3D.h \
  62. SignalSender.h \
  63. Sound.h \
  64. SoundUtil.h \
  65. SoundVisitor.h \
  66. StateMachine.h \
  67. TextureUtil.h \
  68. TransformVisitor.h \
  69. Visitor.h