]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
preliminary physics, sound, hud
[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/Frustum.cc \
24 Moof/Frustum.hh \
25 Moof/Hash.cc \
26 Moof/Hash.hh \
27 Moof/Interpolator.hh \
28 Moof/Math.hh \
29 Moof/Mippleton.hh \
30 Moof/Octree.cc \
31 Moof/Octree.hh \
32 Moof/OpenGL.cc \
33 Moof/OpenGL.hh \
34 Moof/Physics.hh \
35 Moof/Plane.cc \
36 Moof/Plane.hh \
37 Moof/Random.cc \
38 Moof/Random.hh \
39 Moof/Rectangle.cc \
40 Moof/Rectangle.hh \
41 Moof/Resource.cc \
42 Moof/Resource.hh \
43 Moof/Scene.cc \
44 Moof/Scene.hh \
45 Moof/Serializable.cc \
46 Moof/Serializable.hh \
47 Moof/Serializer.cc \
48 Moof/Serializer.hh \
49 Moof/Settings.cc \
50 Moof/Settings.hh \
51 Moof/Singleton.hh \
52 Moof/Sound.cc \
53 Moof/Sound.hh \
54 Moof/Sphere.cc \
55 Moof/Sphere.hh \
56 Moof/StringTools.cc \
57 Moof/StringTools.hh \
58 Moof/Texture.cc \
59 Moof/Texture.hh \
60 Moof/Thread.hh \
61 Moof/Tilemap.cc \
62 Moof/Tilemap.hh \
63 Moof/Timer.cc \
64 Moof/Timer.hh \
65 Moof/Video.cc \
66 Moof/Video.hh \
67 Moof/fastevents.c \
68 Moof/fastevents.h \
69 $(ENDLIST)
70
71 libmoof_la_CPPFLAGS = -I$(top_srcdir)/src/Moof -I$(top_srcdir)/yajl/src
72 libmoof_la_LIBADD = $(top_srcdir)/yajl/libyajl.la
73
74
75 bin_PROGRAMS = yoink
76
77 yoink_SOURCES = \
78 Character.cc \
79 Character.hh \
80 Hud.cc \
81 Hud.hh \
82 TilemapFont.cc \
83 TilemapFont.hh \
84 Typesetter.cc \
85 Typesetter.hh \
86 YoinkApp.cc \
87 YoinkApp.hh \
88 $(ENDLIST)
89
90 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
91 yoink_LDADD = libmoof.la
92
93
94 EXTRA_DIST = Moof/cml Moof/stlplus
95
96
97 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
98
99 run: all
100 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
101
102 debug: all
103 $(YOINK_ENVIRONMENT) gdb ./yoink
104
This page took 0.036922 seconds and 5 git commands to generate.