]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
no more useless singleton class
[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/Sound.cc \
52 Moof/Sound.hh \
53 Moof/Sphere.cc \
54 Moof/Sphere.hh \
55 Moof/StringTools.cc \
56 Moof/StringTools.hh \
57 Moof/Texture.cc \
58 Moof/Texture.hh \
59 Moof/Thread.hh \
60 Moof/Tilemap.cc \
61 Moof/Tilemap.hh \
62 Moof/Timer.cc \
63 Moof/Timer.hh \
64 Moof/Video.cc \
65 Moof/Video.hh \
66 Moof/fastevents.c \
67 Moof/fastevents.h \
68 $(ENDLIST)
69
70 libmoof_la_CPPFLAGS = -I$(top_srcdir)/src/Moof -I$(top_srcdir)/yajl/src
71 libmoof_la_LIBADD = $(top_srcdir)/yajl/libyajl.la
72
73
74 bin_PROGRAMS = yoink
75
76 yoink_SOURCES = \
77 Character.cc \
78 Character.hh \
79 Hud.cc \
80 Hud.hh \
81 TilemapFont.cc \
82 TilemapFont.hh \
83 Typesetter.cc \
84 Typesetter.hh \
85 YoinkApp.cc \
86 YoinkApp.hh \
87 $(ENDLIST)
88
89 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
90 yoink_LDADD = libmoof.la
91
92
93 EXTRA_DIST = Moof/cml Moof/stlplus
94
95
96 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
97
98 run: all
99 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
100
101 debug: all
102 $(YOINK_ENVIRONMENT) gdb ./yoink
103
This page took 0.035852 seconds and 5 git commands to generate.