]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
dispatcher alias methods
[chaz/yoink] / src / Makefile.am
1
2 noinst_LTLIBRARIES = libmoof.la
3
4 libmoof_la_SOURCES = \
5 Moof/Aabb.cc \
6 Moof/Aabb.hh \
7 Moof/Animation.cc \
8 Moof/Animation.hh \
9 Moof/Camera.cc \
10 Moof/Camera.hh \
11 Moof/ConvertUTF.c \
12 Moof/ConvertUTF.h \
13 Moof/Cullable.hh \
14 Moof/Deserializer.cc \
15 Moof/Deserializer.hh \
16 Moof/Dispatcher.cc \
17 Moof/Dispatcher.hh \
18 Moof/Drawable.hh \
19 Moof/Engine.cc \
20 Moof/Engine.hh \
21 Moof/Entity.hh \
22 Moof/Event.hh \
23 Moof/Exception.hh \
24 Moof/Frustum.cc \
25 Moof/Frustum.hh \
26 Moof/Hash.cc \
27 Moof/Hash.hh \
28 Moof/Interpolator.hh \
29 Moof/Log.cc \
30 Moof/Log.hh \
31 Moof/Math.hh \
32 Moof/Mippleton.hh \
33 Moof/Octree.cc \
34 Moof/Octree.hh \
35 Moof/OpenGL.cc \
36 Moof/OpenGL.hh \
37 Moof/Physics.hh \
38 Moof/Plane.cc \
39 Moof/Plane.hh \
40 Moof/Random.cc \
41 Moof/Random.hh \
42 Moof/Rectangle.cc \
43 Moof/Rectangle.hh \
44 Moof/Resource.cc \
45 Moof/Resource.hh \
46 Moof/Scene.cc \
47 Moof/Scene.hh \
48 Moof/Serializable.cc \
49 Moof/Serializable.hh \
50 Moof/Serializer.cc \
51 Moof/Serializer.hh \
52 Moof/Settings.cc \
53 Moof/Settings.hh \
54 Moof/Sound.cc \
55 Moof/Sound.hh \
56 Moof/Sphere.cc \
57 Moof/Sphere.hh \
58 Moof/StringTools.cc \
59 Moof/StringTools.hh \
60 Moof/Texture.cc \
61 Moof/Texture.hh \
62 Moof/Thread.hh \
63 Moof/Tilemap.cc \
64 Moof/Tilemap.hh \
65 Moof/Timer.cc \
66 Moof/Timer.hh \
67 Moof/Video.cc \
68 Moof/Video.hh \
69 Moof/fastevents.c \
70 Moof/fastevents.h \
71 $(ENDLIST)
72
73 libmoof_la_CPPFLAGS = -I$(top_srcdir)/src/Moof -I$(top_srcdir)/yajl/src
74 libmoof_la_LIBADD = $(top_srcdir)/yajl/libyajl.la
75
76
77 bin_PROGRAMS = yoink
78
79 yoink_SOURCES = \
80 Character.cc \
81 Character.hh \
82 Hud.cc \
83 Hud.hh \
84 TilemapFont.cc \
85 TilemapFont.hh \
86 Typesetter.cc \
87 Typesetter.hh \
88 YoinkApp.cc \
89 YoinkApp.hh \
90 $(ENDLIST)
91
92 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
93 yoink_LDADD = libmoof.la
94
95
96 EXTRA_DIST = Moof/cml Moof/stlplus
97
98
99 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
100
101 run: all
102 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
103
104 debug: all
105 $(YOINK_ENVIRONMENT) gdb ./yoink
106
This page took 0.034922 seconds and 4 git commands to generate.