]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
fixed layer bugs; generalized octree
[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.hh \
45 Moof/OpenGL.hh \
46 Moof/Plane.cc \
47 Moof/Plane.hh \
48 Moof/Random.cc \
49 Moof/Random.hh \
50 Moof/Rectangle.cc \
51 Moof/Rectangle.hh \
52 Moof/Resource.cc \
53 Moof/Resource.hh \
54 Moof/RK4.hh \
55 Moof/Script.hh \
56 Moof/Serializable.cc \
57 Moof/Serializable.hh \
58 Moof/Serializer.cc \
59 Moof/Serializer.hh \
60 Moof/Settings.cc \
61 Moof/Settings.hh \
62 Moof/Sound.cc \
63 Moof/Sound.hh \
64 Moof/Sphere.cc \
65 Moof/Sphere.hh \
66 Moof/StringTools.cc \
67 Moof/StringTools.hh \
68 Moof/Texture.cc \
69 Moof/Texture.hh \
70 Moof/Thread.hh \
71 Moof/Tilemap.cc \
72 Moof/Tilemap.hh \
73 Moof/Timer.cc \
74 Moof/Timer.hh \
75 Moof/Transition.hh \
76 Moof/Video.cc \
77 Moof/Video.hh \
78 Moof/fastevents.c \
79 Moof/fastevents.h \
80 $(ENDLIST)
81
82 libmoof_a_SOURCES += \
83 Moof/yajl/src/yajl.c \
84 Moof/yajl/src/yajl_alloc.c \
85 Moof/yajl/src/yajl_alloc.h \
86 Moof/yajl/src/yajl_buf.c \
87 Moof/yajl/src/yajl_buf.h \
88 Moof/yajl/src/yajl_bytestack.h \
89 Moof/yajl/src/yajl_encode.c \
90 Moof/yajl/src/yajl_encode.h \
91 Moof/yajl/src/yajl_gen.c \
92 Moof/yajl/src/yajl_lex.c \
93 Moof/yajl/src/yajl_lex.h \
94 Moof/yajl/src/yajl_parser.c \
95 Moof/yajl/src/yajl_parser.h \
96 $(ENDLIST)
97
98 libmoof_a_CPPFLAGS = -I$(top_srcdir)/src/Moof -I$(top_srcdir)/src/Moof/yajl/src
99
100 EXTRA_DIST = Moof/cml Moof/stlplus Moof/yajl
101
102
103 #
104 # yoink
105 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
106
107 bin_PROGRAMS = yoink
108
109 yoink_SOURCES = \
110 Character.cc \
111 Character.hh \
112 GameLayer.cc \
113 GameLayer.hh \
114 Heroine.cc \
115 Heroine.hh \
116 Hud.cc \
117 Hud.hh \
118 MainLayer.cc \
119 MainLayer.hh \
120 Scene.cc \
121 Scene.hh \
122 TilemapFont.cc \
123 TilemapFont.hh \
124 TitleLayer.cc \
125 TitleLayer.hh \
126 Typesetter.cc \
127 Typesetter.hh \
128 $(ENDLIST)
129
130 if WIN32
131 yoink_SOURCES += yoink.rc yoink.ico
132 .rc.o:
133 @WINDRES@ -o $@ -i $<
134 endif
135
136 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
137 yoink_LDADD = libmoof.a
138
139
140 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
141
142 run: all
143 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
144
145 debug: all
146 $(YOINK_ENVIRONMENT) gdb ./yoink
147
This page took 0.038794 seconds and 5 git commands to generate.