]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
new lua scripting for scene loading
[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/Log.cc \
40 Moof/Log.hh \
41 Moof/Math.hh \
42 Moof/Mippleton.hh \
43 Moof/Octree.cc \
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/Scene.cc \
56 Moof/Scene.hh \
57 Moof/Script.hh \
58 Moof/Serializable.cc \
59 Moof/Serializable.hh \
60 Moof/Serializer.cc \
61 Moof/Serializer.hh \
62 Moof/Settings.cc \
63 Moof/Settings.hh \
64 Moof/Sound.cc \
65 Moof/Sound.hh \
66 Moof/Sphere.cc \
67 Moof/Sphere.hh \
68 Moof/StringTools.cc \
69 Moof/StringTools.hh \
70 Moof/Texture.cc \
71 Moof/Texture.hh \
72 Moof/Thread.hh \
73 Moof/Tilemap.cc \
74 Moof/Tilemap.hh \
75 Moof/Timer.cc \
76 Moof/Timer.hh \
77 Moof/Video.cc \
78 Moof/Video.hh \
79 Moof/fastevents.c \
80 Moof/fastevents.h \
81 $(ENDLIST)
82
83 libmoof_a_SOURCES += \
84 Moof/yajl/src/yajl.c \
85 Moof/yajl/src/yajl_alloc.c \
86 Moof/yajl/src/yajl_alloc.h \
87 Moof/yajl/src/yajl_buf.c \
88 Moof/yajl/src/yajl_buf.h \
89 Moof/yajl/src/yajl_bytestack.h \
90 Moof/yajl/src/yajl_encode.c \
91 Moof/yajl/src/yajl_encode.h \
92 Moof/yajl/src/yajl_gen.c \
93 Moof/yajl/src/yajl_lex.c \
94 Moof/yajl/src/yajl_lex.h \
95 Moof/yajl/src/yajl_parser.c \
96 Moof/yajl/src/yajl_parser.h \
97 $(ENDLIST)
98
99 libmoof_a_CPPFLAGS = -I$(top_srcdir)/src/Moof -I$(top_srcdir)/src/Moof/yajl/src
100
101 EXTRA_DIST = Moof/cml Moof/stlplus Moof/yajl
102
103
104 #
105 # yoink
106 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
107
108 bin_PROGRAMS = yoink
109
110 yoink_SOURCES = \
111 Character.cc \
112 Character.hh \
113 Hud.cc \
114 Hud.hh \
115 TilemapFont.cc \
116 TilemapFont.hh \
117 Typesetter.cc \
118 Typesetter.hh \
119 YoinkApp.cc \
120 YoinkApp.hh \
121 $(ENDLIST)
122
123 if WIN32
124 yoink_SOURCES += yoink.rc yoink.ico
125 .rc.o:
126 @WINDRES@ -o $@ -i $<
127 endif
128
129 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
130 yoink_LDADD = libmoof.a
131
132
133 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
134
135 run: all
136 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
137
138 debug: all
139 $(YOINK_ENVIRONMENT) gdb ./yoink
140
This page took 0.039789 seconds and 5 git commands to generate.