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