]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
new level-based controllers
[chaz/yoink] / src / Makefile.am
1
2 #
3 # Yoink
4 # Process this file with automake to produce a Makefile.
5 #
6
7
8 #
9 # libmoof.a
10 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11
12 noinst_LIBRARIES = libmoof.a
13
14 libmoof_a_SOURCES = \
15 Moof/Aabb.cc \
16 Moof/Aabb.hh \
17 Moof/Animation.cc \
18 Moof/Animation.hh \
19 Moof/Camera.cc \
20 Moof/Camera.hh \
21 Moof/ConvertUTF.c \
22 Moof/ConvertUTF.h \
23 Moof/Cullable.hh \
24 Moof/Deserializer.cc \
25 Moof/Deserializer.hh \
26 Moof/Dispatcher.cc \
27 Moof/Dispatcher.hh \
28 Moof/Drawable.hh \
29 Moof/Engine.cc \
30 Moof/Engine.hh \
31 Moof/Entity.hh \
32 Moof/Event.hh \
33 Moof/Exception.hh \
34 Moof/Frustum.cc \
35 Moof/Frustum.hh \
36 Moof/Hash.cc \
37 Moof/Hash.hh \
38 Moof/Interpolator.hh \
39 Moof/Layer.hh \
40 Moof/Log.cc \
41 Moof/Log.hh \
42 Moof/Math.hh \
43 Moof/Mippleton.hh \
44 Moof/Octree.cc \
45 Moof/Octree.hh \
46 Moof/OpenGL.hh \
47 Moof/Plane.cc \
48 Moof/Plane.hh \
49 Moof/Random.cc \
50 Moof/Random.hh \
51 Moof/Rectangle.cc \
52 Moof/Rectangle.hh \
53 Moof/Resource.cc \
54 Moof/Resource.hh \
55 Moof/RK4.hh \
56 Moof/Scene.cc \
57 Moof/Scene.hh \
58 Moof/Script.hh \
59 Moof/Serializable.cc \
60 Moof/Serializable.hh \
61 Moof/Serializer.cc \
62 Moof/Serializer.hh \
63 Moof/Settings.cc \
64 Moof/Settings.hh \
65 Moof/Sound.cc \
66 Moof/Sound.hh \
67 Moof/Sphere.cc \
68 Moof/Sphere.hh \
69 Moof/StringTools.cc \
70 Moof/StringTools.hh \
71 Moof/Texture.cc \
72 Moof/Texture.hh \
73 Moof/Thread.hh \
74 Moof/Tilemap.cc \
75 Moof/Tilemap.hh \
76 Moof/Timer.cc \
77 Moof/Timer.hh \
78 Moof/Video.cc \
79 Moof/Video.hh \
80 Moof/fastevents.c \
81 Moof/fastevents.h \
82 $(ENDLIST)
83
84 libmoof_a_SOURCES += \
85 Moof/yajl/src/yajl.c \
86 Moof/yajl/src/yajl_alloc.c \
87 Moof/yajl/src/yajl_alloc.h \
88 Moof/yajl/src/yajl_buf.c \
89 Moof/yajl/src/yajl_buf.h \
90 Moof/yajl/src/yajl_bytestack.h \
91 Moof/yajl/src/yajl_encode.c \
92 Moof/yajl/src/yajl_encode.h \
93 Moof/yajl/src/yajl_gen.c \
94 Moof/yajl/src/yajl_lex.c \
95 Moof/yajl/src/yajl_lex.h \
96 Moof/yajl/src/yajl_parser.c \
97 Moof/yajl/src/yajl_parser.h \
98 $(ENDLIST)
99
100 libmoof_a_CPPFLAGS = -I$(top_srcdir)/src/Moof -I$(top_srcdir)/src/Moof/yajl/src
101
102 EXTRA_DIST = Moof/cml Moof/stlplus Moof/yajl
103
104
105 #
106 # yoink
107 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
108
109 bin_PROGRAMS = yoink
110
111 yoink_SOURCES = \
112 Character.cc \
113 Character.hh \
114 GameLayer.cc \
115 GameLayer.hh \
116 Hud.cc \
117 Hud.hh \
118 MainLayer.cc \
119 MainLayer.hh \
120 TilemapFont.cc \
121 TilemapFont.hh \
122 Typesetter.cc \
123 Typesetter.hh \
124 $(ENDLIST)
125
126 if WIN32
127 yoink_SOURCES += yoink.rc yoink.ico
128 .rc.o:
129 @WINDRES@ -o $@ -i $<
130 endif
131
132 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
133 yoink_LDADD = libmoof.a
134
135
136 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
137
138 run: all
139 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
140
141 debug: all
142 $(YOINK_ENVIRONMENT) gdb ./yoink
143
This page took 0.040326 seconds and 5 git commands to generate.