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