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