[3486] | 1 | MAINSRCDIR=. |
---|
[3487] | 2 | AM_CXXFLAGS=-I$(MAINSRCDIR) |
---|
| 3 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/world_entities |
---|
[3486] | 4 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/story_entities |
---|
| 5 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib |
---|
[3488] | 6 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/coord |
---|
[3486] | 7 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/data |
---|
[3603] | 8 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics |
---|
[3486] | 9 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/importer |
---|
[3966] | 10 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/particles |
---|
[3489] | 11 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui |
---|
[4054] | 12 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui/gui |
---|
[3486] | 13 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/lang |
---|
| 14 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/util |
---|
| 15 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/math |
---|
[4261] | 16 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/tinyxml |
---|
[4338] | 17 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/physics |
---|
| 18 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/physics/fields |
---|
[3486] | 19 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/defs |
---|
| 20 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/font |
---|
| 21 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/network |
---|
| 22 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/glmenu |
---|
| 23 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/ai |
---|
[3868] | 24 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util |
---|
| 25 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/animation |
---|
[3869] | 26 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/common |
---|
[4346] | 27 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/event |
---|
[4261] | 28 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/loading |
---|
[4262] | 29 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/track |
---|
[4131] | 30 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/subprojects |
---|
[3472] | 31 | |
---|
[3484] | 32 | |
---|
[1955] | 33 | |
---|
[1953] | 34 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
| 35 | |
---|
[1955] | 36 | |
---|
[4264] | 37 | bin_PROGRAMS = orxonox |
---|
[1953] | 38 | |
---|
[4264] | 39 | orxonox_DEPENDENCIES = lib/gui/gui/libORXgui.a \ |
---|
[4338] | 40 | lib/physics/libORXphysics.a \ |
---|
| 41 | lib/tinyxml/libtinyxml.a |
---|
| 42 | |
---|
[4270] | 43 | orxonox_LDADD = lib/gui/gui/libORXgui.a \ |
---|
[4338] | 44 | lib/physics/libORXphysics.a \ |
---|
[4270] | 45 | lib/tinyxml/libtinyxml.a \ |
---|
[4261] | 46 | $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) |
---|
| 47 | |
---|
[4338] | 48 | |
---|
[3182] | 49 | orxonox_SOURCES= orxonox.cc \ |
---|
| 50 | command_node.cc \ |
---|
[4262] | 51 | util/loading/game_loader.cc \ |
---|
| 52 | util/track/track_manager.cc \ |
---|
| 53 | util/track/track_node.cc \ |
---|
[3868] | 54 | util/animation/animation.cc \ |
---|
| 55 | util/animation/animation3d.cc \ |
---|
| 56 | util/animation/animation_player.cc \ |
---|
[4346] | 57 | util/event/event.cc \ |
---|
| 58 | util/event/event_handler.cc \ |
---|
| 59 | util/event/event_listener.cc \ |
---|
[4386] | 60 | util/event/key_mapper.cc \ |
---|
[4398] | 61 | util/event/key_names.cc \ |
---|
[4245] | 62 | util/object_manager.cc \ |
---|
[4262] | 63 | util/garbage_collector.cc \ |
---|
| 64 | util/common/list.cc \ |
---|
| 65 | util/resource_manager.cc \ |
---|
| 66 | util/loading/factory.cc \ |
---|
| 67 | util/loading/load_param.cc \ |
---|
[4338] | 68 | util/state.cc \ |
---|
[3478] | 69 | story_entities/story_entity.cc \ |
---|
[3472] | 70 | story_entities/campaign.cc \ |
---|
[3478] | 71 | story_entities/world.cc \ |
---|
| 72 | world_entities/world_entity.cc \ |
---|
[4262] | 73 | world_entities/camera.cc \ |
---|
[3478] | 74 | world_entities/player.cc \ |
---|
[3472] | 75 | world_entities/environment.cc \ |
---|
[3478] | 76 | world_entities/skysphere.cc \ |
---|
[3796] | 77 | world_entities/skybox.cc \ |
---|
[3559] | 78 | world_entities/terrain.cc \ |
---|
[3573] | 79 | world_entities/weapon.cc \ |
---|
| 80 | world_entities/projectile.cc \ |
---|
[3750] | 81 | world_entities/satellite.cc \ |
---|
[3580] | 82 | world_entities/character_attributes.cc \ |
---|
[3618] | 83 | world_entities/test_gun.cc \ |
---|
[3710] | 84 | world_entities/test_bullet.cc \ |
---|
[4245] | 85 | world_entities/test_entity.cc \ |
---|
[3488] | 86 | lib/coord/p_node.cc \ |
---|
| 87 | lib/coord/null_parent.cc \ |
---|
| 88 | lib/coord/helper_parent.cc \ |
---|
[4326] | 89 | lib/coord/pilot_node.cc \ |
---|
[3610] | 90 | lib/graphics/graphics_engine.cc \ |
---|
[3603] | 91 | lib/graphics/light.cc \ |
---|
[3790] | 92 | lib/graphics/text_engine.cc \ |
---|
[3484] | 93 | lib/graphics/importer/array.cc \ |
---|
| 94 | lib/graphics/importer/objModel.cc \ |
---|
[4245] | 95 | lib/graphics/importer/md2Model.cc \ |
---|
[3657] | 96 | lib/graphics/importer/primitive_model.cc \ |
---|
[3484] | 97 | lib/graphics/importer/model.cc \ |
---|
| 98 | lib/graphics/importer/material.cc \ |
---|
| 99 | lib/graphics/importer/texture.cc \ |
---|
[3966] | 100 | lib/graphics/particles/particle_engine.cc \ |
---|
| 101 | lib/graphics/particles/particle_system.cc \ |
---|
| 102 | lib/graphics/particles/particle_emitter.cc \ |
---|
[3484] | 103 | lib/lang/base_object.cc \ |
---|
| 104 | lib/util/ini_parser.cc \ |
---|
[4220] | 105 | lib/util/substring.cc \ |
---|
[3483] | 106 | lib/math/vector.cc \ |
---|
| 107 | lib/math/curve.cc \ |
---|
[4010] | 108 | glmenu/glmenu_imagescreen.cc \ |
---|
[4131] | 109 | subprojects/benchmark.cc |
---|
[4039] | 110 | |
---|
[3481] | 111 | noinst_HEADERS = orxonox.h \ |
---|
| 112 | ability.h \ |
---|
[3182] | 113 | command_node.h \ |
---|
[4326] | 114 | action_listener.h \ |
---|
[4262] | 115 | defs/message_structures.h \ |
---|
| 116 | util/loading/game_loader.h \ |
---|
| 117 | util/track/track_manager.h \ |
---|
| 118 | util/track/track_node.h \ |
---|
[3868] | 119 | util/animation/animation.h \ |
---|
| 120 | util/animation/t_animation.h \ |
---|
| 121 | util/animation/animation3d.h \ |
---|
| 122 | util/animation/animation_player.h \ |
---|
[4346] | 123 | util/event/event.h \ |
---|
| 124 | util/event/event_listener.h \ |
---|
| 125 | util/event/event_handler.h \ |
---|
[4386] | 126 | util/event/key_mapper.h \ |
---|
[4398] | 127 | util/event/key_names.h \ |
---|
[4245] | 128 | util/object_manager.h \ |
---|
[4262] | 129 | util/garbage_collector.h \ |
---|
[4338] | 130 | util/state.h \ |
---|
[3472] | 131 | story_entities/story_entity.h \ |
---|
| 132 | story_entities/story_def.h \ |
---|
| 133 | story_entities/campaign.h \ |
---|
[3481] | 134 | story_entities/world.h \ |
---|
| 135 | world_entities/world_entity.h \ |
---|
[4262] | 136 | world_entities/camera.h \ |
---|
[3481] | 137 | world_entities/player.h \ |
---|
| 138 | world_entities/npc.h \ |
---|
| 139 | world_entities/environment.h \ |
---|
| 140 | world_entities/skysphere.h \ |
---|
[3796] | 141 | world_entities/skybox.h \ |
---|
[3483] | 142 | world_entities/power_up.h \ |
---|
[3559] | 143 | world_entities/terrain.h \ |
---|
[3573] | 144 | world_entities/weapon.h \ |
---|
| 145 | world_entities/projectile.h \ |
---|
[3750] | 146 | world_entities/satellite.h \ |
---|
[3580] | 147 | world_entities/character_attributes.h \ |
---|
[3618] | 148 | world_entities/test_gun.h \ |
---|
[3710] | 149 | world_entities/test_bullet.h \ |
---|
[4245] | 150 | world_entities/test_entity.h \ |
---|
[3481] | 151 | ai/ai.h \ |
---|
| 152 | network/synchronisable.h \ |
---|
| 153 | defs/stdincl.h \ |
---|
[4381] | 154 | defs/stdlibincl.h \ |
---|
| 155 | defs/sdlincl.h \ |
---|
[3493] | 156 | defs/glincl.h \ |
---|
[3608] | 157 | defs/comincl.h \ |
---|
[3863] | 158 | defs/confincl.h \ |
---|
[3481] | 159 | defs/error.h \ |
---|
| 160 | defs/debug.h \ |
---|
[4091] | 161 | defs/globals.h \ |
---|
[4269] | 162 | defs/compiler.h \ |
---|
[3488] | 163 | lib/coord/p_node.h \ |
---|
| 164 | lib/coord/null_parent.h \ |
---|
| 165 | lib/coord/helper_parent.h \ |
---|
[4326] | 166 | lib/coord/pilot_node.h \ |
---|
[3610] | 167 | lib/graphics/graphics_engine.h \ |
---|
[3603] | 168 | lib/graphics/light.h \ |
---|
[3790] | 169 | lib/graphics/text_engine.h \ |
---|
[4245] | 170 | lib/graphics/importer/array.h \ |
---|
| 171 | lib/graphics/importer/abstract_model.h \ |
---|
| 172 | lib/graphics/importer/objModel.h \ |
---|
| 173 | lib/graphics/importer/md2Model.h \ |
---|
| 174 | lib/graphics/importer/primitive_model.h \ |
---|
| 175 | lib/graphics/importer/model.h \ |
---|
| 176 | lib/graphics/importer/material.h \ |
---|
| 177 | lib/graphics/importer/texture.h \ |
---|
[3966] | 178 | lib/graphics/particles/particle_engine.h \ |
---|
| 179 | lib/graphics/particles/particle_system.h \ |
---|
| 180 | lib/graphics/particles/particle_emitter.h \ |
---|
[3484] | 181 | lib/lang/base_object.h \ |
---|
[3869] | 182 | util/common/list.h \ |
---|
| 183 | util/common/list_template.h \ |
---|
| 184 | util/resource_manager.h \ |
---|
[4261] | 185 | util/loading/factory.h \ |
---|
| 186 | util/loading/load_param.h \ |
---|
[3484] | 187 | lib/util/ini_parser.h \ |
---|
[4220] | 188 | lib/util/substring.h \ |
---|
[3483] | 189 | lib/math/vector.h \ |
---|
| 190 | lib/math/curve.h \ |
---|
[4028] | 191 | glmenu/glmenu_imagescreen.h \ |
---|
[4131] | 192 | subprojects/benchmark.h |
---|
[2589] | 193 | |
---|
[4028] | 194 | |
---|
[3198] | 195 | ## orxonox.conf will be used from home-dir instead. |
---|
[4261] | 196 | EXTRA_DIST = proto/proto_class.h \ |
---|
[3655] | 197 | proto/proto_class.cc \ |
---|
| 198 | proto/proto_singleton.h \ |
---|
[3761] | 199 | proto/proto_singleton.cc \ |
---|
| 200 | proto/proto_world_entity.h \ |
---|
| 201 | proto/proto_world_entity.cc |
---|
[2816] | 202 | |
---|
[3377] | 203 | if SUB_PROJECTS |
---|
[4264] | 204 | SUB_PROGS = subprojects |
---|
[3377] | 205 | else |
---|
| 206 | SUB_PROGS = |
---|
| 207 | endif |
---|
[3182] | 208 | |
---|
[4264] | 209 | SUBDIRS = lib \ |
---|
| 210 | . \ |
---|
[3377] | 211 | $(SUB_PROGS) |
---|
[3191] | 212 | |
---|
[3027] | 213 | # uncomment the following if orxonox requires the math library |
---|
[2190] | 214 | #orxonox_LDADD=-lm |
---|
[1953] | 215 | |
---|
| 216 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
| 217 | |
---|
| 218 | # if you write a self-test script named `chk', uncomment the |
---|
| 219 | # following and add `chk' to the EXTRA_DIST list |
---|
| 220 | #TESTS=chk |
---|
| 221 | |
---|
| 222 | # build and install the .info pages |
---|
| 223 | #info_TEXINFOS = orxonox.texinfo |
---|
| 224 | #orxonox_TEXINFOS = gpl.texinfo |
---|
| 225 | |
---|
| 226 | # install the man pages |
---|
| 227 | #man_MANS=orxonox.1 |
---|