1 | MAINSRCDIR=. |
---|
2 | include $(MAINSRCDIR)/defs/include_paths.am |
---|
3 | |
---|
4 | |
---|
5 | |
---|
6 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
7 | |
---|
8 | |
---|
9 | bin_PROGRAMS = orxonox |
---|
10 | |
---|
11 | orxonox_DEPENDENCIES = lib/gui/libORXgui.a \ |
---|
12 | lib/physics/libORXphysics.a \ |
---|
13 | lib/particles/libORXparticles.a \ |
---|
14 | lib/tinyxml/libtinyxml.a |
---|
15 | |
---|
16 | orxonox_LDADD = lib/gui/libORXgui.a \ |
---|
17 | lib/physics/libORXphysics.a \ |
---|
18 | lib/particles/libORXparticles.a \ |
---|
19 | lib/tinyxml/libtinyxml.a \ |
---|
20 | $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) |
---|
21 | |
---|
22 | |
---|
23 | orxonox_SOURCES= orxonox.cc \ |
---|
24 | util/loading/game_loader.cc \ |
---|
25 | util/track/track_manager.cc \ |
---|
26 | util/track/track_node.cc \ |
---|
27 | util/animation/animation.cc \ |
---|
28 | util/animation/animation3d.cc \ |
---|
29 | util/animation/animation_player.cc \ |
---|
30 | util/event/event.cc \ |
---|
31 | util/event/event_handler.cc \ |
---|
32 | util/event/event_listener.cc \ |
---|
33 | util/event/key_mapper.cc \ |
---|
34 | util/event/key_names.cc \ |
---|
35 | util/object_manager.cc \ |
---|
36 | util/garbage_collector.cc \ |
---|
37 | util/common/list.cc \ |
---|
38 | util/resource_manager.cc \ |
---|
39 | util/loading/factory.cc \ |
---|
40 | util/loading/load_param.cc \ |
---|
41 | util/state.cc \ |
---|
42 | story_entities/story_entity.cc \ |
---|
43 | story_entities/campaign.cc \ |
---|
44 | story_entities/world.cc \ |
---|
45 | world_entities/world_entity.cc \ |
---|
46 | world_entities/camera.cc \ |
---|
47 | world_entities/player.cc \ |
---|
48 | world_entities/environment.cc \ |
---|
49 | world_entities/skysphere.cc \ |
---|
50 | world_entities/skybox.cc \ |
---|
51 | world_entities/terrain.cc \ |
---|
52 | world_entities/weapon.cc \ |
---|
53 | world_entities/projectile.cc \ |
---|
54 | world_entities/satellite.cc \ |
---|
55 | world_entities/character_attributes.cc \ |
---|
56 | world_entities/test_gun.cc \ |
---|
57 | world_entities/test_bullet.cc \ |
---|
58 | world_entities/test_entity.cc \ |
---|
59 | lib/coord/p_node.cc \ |
---|
60 | lib/coord/null_parent.cc \ |
---|
61 | lib/coord/helper_parent.cc \ |
---|
62 | lib/coord/pilot_node.cc \ |
---|
63 | lib/graphics/graphics_engine.cc \ |
---|
64 | lib/graphics/light.cc \ |
---|
65 | lib/graphics/text_engine.cc \ |
---|
66 | lib/graphics/importer/array.cc \ |
---|
67 | lib/graphics/importer/objModel.cc \ |
---|
68 | lib/graphics/importer/md2Model.cc \ |
---|
69 | lib/graphics/importer/primitive_model.cc \ |
---|
70 | lib/graphics/importer/model.cc \ |
---|
71 | lib/graphics/importer/material.cc \ |
---|
72 | lib/graphics/importer/texture.cc \ |
---|
73 | lib/lang/base_object.cc \ |
---|
74 | lib/util/ini_parser.cc \ |
---|
75 | lib/util/substring.cc \ |
---|
76 | lib/math/vector.cc \ |
---|
77 | lib/math/curve.cc \ |
---|
78 | glmenu/glmenu_imagescreen.cc \ |
---|
79 | subprojects/benchmark.cc |
---|
80 | |
---|
81 | noinst_HEADERS = orxonox.h \ |
---|
82 | ability.h \ |
---|
83 | action_listener.h \ |
---|
84 | defs/message_structures.h \ |
---|
85 | util/loading/game_loader.h \ |
---|
86 | util/track/track_manager.h \ |
---|
87 | util/track/track_node.h \ |
---|
88 | util/animation/animation.h \ |
---|
89 | util/animation/t_animation.h \ |
---|
90 | util/animation/animation3d.h \ |
---|
91 | util/animation/animation_player.h \ |
---|
92 | util/event/event.h \ |
---|
93 | util/event/event_def.h \ |
---|
94 | util/event/event_listener.h \ |
---|
95 | util/event/event_handler.h \ |
---|
96 | util/event/key_mapper.h \ |
---|
97 | util/event/key_names.h \ |
---|
98 | util/object_manager.h \ |
---|
99 | util/garbage_collector.h \ |
---|
100 | util/state.h \ |
---|
101 | story_entities/story_entity.h \ |
---|
102 | story_entities/story_def.h \ |
---|
103 | story_entities/campaign.h \ |
---|
104 | story_entities/world.h \ |
---|
105 | world_entities/world_entity.h \ |
---|
106 | world_entities/camera.h \ |
---|
107 | world_entities/player.h \ |
---|
108 | world_entities/npc.h \ |
---|
109 | world_entities/environment.h \ |
---|
110 | world_entities/skysphere.h \ |
---|
111 | world_entities/skybox.h \ |
---|
112 | world_entities/power_up.h \ |
---|
113 | world_entities/terrain.h \ |
---|
114 | world_entities/weapon.h \ |
---|
115 | world_entities/projectile.h \ |
---|
116 | world_entities/satellite.h \ |
---|
117 | world_entities/character_attributes.h \ |
---|
118 | world_entities/test_gun.h \ |
---|
119 | world_entities/test_bullet.h \ |
---|
120 | world_entities/test_entity.h \ |
---|
121 | ai/ai.h \ |
---|
122 | network/synchronisable.h \ |
---|
123 | defs/stdincl.h \ |
---|
124 | defs/stdlibincl.h \ |
---|
125 | defs/sdlincl.h \ |
---|
126 | defs/glincl.h \ |
---|
127 | defs/comincl.h \ |
---|
128 | defs/confincl.h \ |
---|
129 | defs/error.h \ |
---|
130 | defs/debug.h \ |
---|
131 | defs/globals.h \ |
---|
132 | defs/compiler.h \ |
---|
133 | lib/coord/p_node.h \ |
---|
134 | lib/coord/null_parent.h \ |
---|
135 | lib/coord/helper_parent.h \ |
---|
136 | lib/coord/pilot_node.h \ |
---|
137 | lib/graphics/graphics_engine.h \ |
---|
138 | lib/graphics/light.h \ |
---|
139 | lib/graphics/text_engine.h \ |
---|
140 | lib/graphics/importer/array.h \ |
---|
141 | lib/graphics/importer/abstract_model.h \ |
---|
142 | lib/graphics/importer/objModel.h \ |
---|
143 | lib/graphics/importer/md2Model.h \ |
---|
144 | lib/graphics/importer/primitive_model.h \ |
---|
145 | lib/graphics/importer/model.h \ |
---|
146 | lib/graphics/importer/material.h \ |
---|
147 | lib/graphics/importer/texture.h \ |
---|
148 | lib/lang/base_object.h \ |
---|
149 | util/common/list.h \ |
---|
150 | util/common/list_template.h \ |
---|
151 | util/resource_manager.h \ |
---|
152 | util/loading/factory.h \ |
---|
153 | util/loading/load_param.h \ |
---|
154 | lib/util/ini_parser.h \ |
---|
155 | lib/util/substring.h \ |
---|
156 | lib/math/vector.h \ |
---|
157 | lib/math/curve.h \ |
---|
158 | glmenu/glmenu_imagescreen.h \ |
---|
159 | subprojects/benchmark.h \ |
---|
160 | class_list.h |
---|
161 | |
---|
162 | |
---|
163 | ## orxonox.conf will be used from home-dir instead. |
---|
164 | EXTRA_DIST = proto/proto_class.h \ |
---|
165 | proto/proto_class.cc \ |
---|
166 | proto/proto_singleton.h \ |
---|
167 | proto/proto_singleton.cc \ |
---|
168 | proto/proto_world_entity.h \ |
---|
169 | proto/proto_world_entity.cc \ |
---|
170 | defs/include_paths.am |
---|
171 | if SUB_PROJECTS |
---|
172 | SUB_PROGS = subprojects |
---|
173 | else |
---|
174 | SUB_PROGS = |
---|
175 | endif |
---|
176 | |
---|
177 | SUBDIRS = lib \ |
---|
178 | . \ |
---|
179 | $(SUB_PROGS) |
---|
180 | |
---|
181 | # uncomment the following if orxonox requires the math library |
---|
182 | #orxonox_LDADD=-lm |
---|
183 | |
---|
184 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
185 | |
---|
186 | # if you write a self-test script named `chk', uncomment the |
---|
187 | # following and add `chk' to the EXTRA_DIST list |
---|
188 | #TESTS=chk |
---|
189 | |
---|
190 | # build and install the .info pages |
---|
191 | #info_TEXINFOS = orxonox.texinfo |
---|
192 | #orxonox_TEXINFOS = gpl.texinfo |
---|
193 | |
---|
194 | # install the man pages |
---|
195 | #man_MANS=orxonox.1 |
---|