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
|
AUTOMAKE_OPTIONS = gnu
pinlibdir = $(libdir)/pinball
pinincludedir = $(includedir)/pinball
pinlib_LIBRARIES = libemilia_addon.a
INCLUDES = -I../base
libemilia_addon_a_SOURCES = \
BigSphere.cpp \
ColorBehavior.cpp \
Cone.cpp \
Cube.cpp \
Cylinder.cpp \
Grid.cpp \
KeyBehavior.cpp \
KeyRotBehavior.cpp \
Menu.cpp \
Sphere.cpp \
StdAnimation.cpp \
TexAnimation.cpp
pininclude_HEADERS = \
BigSphere.h \
ColorBehavior.h \
Cone.h \
Cube.h \
Cylinder.h \
Grid.h \
KeyBehavior.h \
KeyRotBehavior.h \
Menu.h \
Sphere.h \
StdAnimation.h \
TexAnimation.h
|