1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
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
|