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