123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- AUTOMAKE_OPTIONS = gnu
- pinlibdir = $(libdir)/pinball
- pinincludedir = $(includedir)/pinball
- pinlib_LIBRARIES = libemilia_base.a
- INCLUDES = -I../addon
- libemilia_base_a_SOURCES = \
- AlignVisitor.cpp \
- AllegroVisitor.cpp \
- AmbientLightVisitor.cpp \
- Behavior.cpp \
- BehaviorVisitor.cpp \
- BillBoard.cpp \
- Camera.cpp \
- CollisionBounds.cpp \
- CollisionVisitor.cpp \
- Config.cpp \
- EMath.cpp \
- EmFont.cpp \
- Engine.cpp \
- Group.cpp \
- Keyboard.cpp \
- Light.cpp \
- Node.cpp \
- OctTree.cpp \
- OpenGLVisitor.cpp \
- PointLightVisitor.cpp \
- Polygon.cpp \
- Profiler.cpp \
- Shape3D.cpp \
- SignalSender.cpp \
- Sound.cpp \
- SoundUtil.cpp \
- SoundVisitor.cpp \
- TextureUtil.cpp \
- TransformVisitor.cpp
- pininclude_HEADERS = \
- AlignVisitor.h \
- AllegroVisitor.h \
- AmbientLightVisitor.h \
- BaseTest.h \
- Behavior.h \
- BehaviorVisitor.h \
- BillBoard.h \
- Camera.h \
- CollisionBounds.h \
- CollisionVisitor.h \
- Config.h \
- EMath.h \
- EmFont.h \
- Engine.h \
- Group.h \
- Keyboard.h \
- Light.h \
- Node.h \
- OctTree.h \
- OpenGLVisitor.h \
- PointLightVisitor.h \
- Polygon.h \
- Private.h \
- Profiler.h \
- Shape3D.h \
- SignalSender.h \
- Sound.h \
- SoundUtil.h \
- SoundVisitor.h \
- StateMachine.h \
- TextureUtil.h \
- TransformVisitor.h \
- Visitor.h
|