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