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