[3486] | 1 | MAINSRCDIR=. |
---|
[4428] | 2 | include $(MAINSRCDIR)/defs/include_paths.am |
---|
[3472] | 3 | |
---|
[3484] | 4 | |
---|
[1953] | 5 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
| 6 | |
---|
[1955] | 7 | |
---|
[4556] | 8 | bin_PROGRAMS = orxonox |
---|
[1953] | 9 | |
---|
[4725] | 10 | orxonox_CPPFLAGS = -DIS_ORXONOX |
---|
| 11 | |
---|
[4428] | 12 | orxonox_DEPENDENCIES = lib/gui/libORXgui.a \ |
---|
[4564] | 13 | lib/graphics/importer/libORXimporter.a \ |
---|
[4556] | 14 | lib/sound/libORXsound.a \ |
---|
| 15 | lib/event/libORXevent.a \ |
---|
| 16 | lib/physics/libORXphysics.a \ |
---|
| 17 | lib/particles/libORXparticles.a \ |
---|
| 18 | lib/collision_detection/libORXcd.a \ |
---|
[4853] | 19 | lib/graphics/spatial_separation/libORXquadtree.a \ |
---|
[5160] | 20 | lib/tinyxml/libtinyxml.a \ |
---|
| 21 | lib/shell/libORXshell.a |
---|
[4338] | 22 | |
---|
[4428] | 23 | orxonox_LDADD = lib/gui/libORXgui.a \ |
---|
[4564] | 24 | lib/graphics/importer/libORXimporter.a \ |
---|
[4556] | 25 | lib/sound/libORXsound.a \ |
---|
| 26 | lib/event/libORXevent.a \ |
---|
| 27 | lib/physics/libORXphysics.a \ |
---|
| 28 | lib/particles/libORXparticles.a \ |
---|
| 29 | lib/collision_detection/libORXcd.a \ |
---|
[4843] | 30 | lib/graphics/spatial_separation/libORXquadtree.a \ |
---|
[4270] | 31 | lib/tinyxml/libtinyxml.a \ |
---|
[5160] | 32 | lib/shell/libORXshell.a \ |
---|
[4261] | 33 | $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) |
---|
| 34 | |
---|
[4338] | 35 | |
---|
[4556] | 36 | orxonox_SOURCES = orxonox.cc \ |
---|
| 37 | util/loading/game_loader.cc \ |
---|
| 38 | util/track/track_manager.cc \ |
---|
| 39 | util/track/track_node.cc \ |
---|
| 40 | util/track/pilot_node.cc \ |
---|
| 41 | util/animation/animation.cc \ |
---|
| 42 | util/animation/animation3d.cc \ |
---|
| 43 | util/animation/animation_player.cc \ |
---|
[4940] | 44 | util/fast_factory.cc \ |
---|
[4556] | 45 | util/garbage_collector.cc \ |
---|
| 46 | util/resource_manager.cc \ |
---|
| 47 | util/loading/factory.cc \ |
---|
| 48 | util/loading/load_param.cc \ |
---|
| 49 | util/state.cc \ |
---|
[5040] | 50 | util/user_control.cc \ |
---|
[5010] | 51 | story_entities/story_entity.cc \ |
---|
[4556] | 52 | story_entities/campaign.cc \ |
---|
| 53 | story_entities/world.cc \ |
---|
| 54 | world_entities/world_entity.cc \ |
---|
| 55 | world_entities/camera.cc \ |
---|
| 56 | world_entities/player.cc \ |
---|
[4976] | 57 | world_entities/npc.cc \ |
---|
[4556] | 58 | world_entities/environment.cc \ |
---|
| 59 | world_entities/skysphere.cc \ |
---|
| 60 | world_entities/skybox.cc \ |
---|
| 61 | world_entities/terrain.cc \ |
---|
| 62 | world_entities/satellite.cc \ |
---|
| 63 | world_entities/character_attributes.cc \ |
---|
| 64 | world_entities/test_entity.cc \ |
---|
[4826] | 65 | world_entities/weapons/weapon_manager.cc \ |
---|
[4758] | 66 | world_entities/weapons/weapon.cc \ |
---|
| 67 | world_entities/weapons/projectile.cc \ |
---|
| 68 | world_entities/weapons/test_gun.cc \ |
---|
[4963] | 69 | world_entities/weapons/turret.cc \ |
---|
[4758] | 70 | world_entities/weapons/test_bullet.cc \ |
---|
[4779] | 71 | world_entities/weapons/crosshair.cc \ |
---|
[4556] | 72 | lib/coord/p_node.cc \ |
---|
| 73 | lib/coord/null_parent.cc \ |
---|
| 74 | lib/graphics/graphics_engine.cc \ |
---|
| 75 | lib/graphics/light.cc \ |
---|
| 76 | lib/graphics/text_engine.cc \ |
---|
[4839] | 77 | lib/graphics/render2D/element_2d.cc \ |
---|
| 78 | lib/graphics/render2D/render_2d.cc \ |
---|
[4556] | 79 | lib/lang/base_object.cc \ |
---|
[4758] | 80 | lib/lang/class_list.cc \ |
---|
[4556] | 81 | lib/util/ini_parser.cc \ |
---|
| 82 | lib/util/substring.cc \ |
---|
[5010] | 83 | lib/util/color.cc \ |
---|
[5141] | 84 | lib/util/helper_functions.cc \ |
---|
[4556] | 85 | lib/math/vector.cc \ |
---|
| 86 | lib/math/curve.cc \ |
---|
| 87 | glmenu/glmenu_imagescreen.cc \ |
---|
| 88 | subprojects/benchmark.cc |
---|
[4039] | 89 | |
---|
[3481] | 90 | noinst_HEADERS = orxonox.h \ |
---|
| 91 | ability.h \ |
---|
[4556] | 92 | defs/message_structures.h \ |
---|
| 93 | util/loading/game_loader.h \ |
---|
| 94 | util/track/track_manager.h \ |
---|
| 95 | util/track/track_node.h \ |
---|
| 96 | util/track/pilot_node.h \ |
---|
| 97 | util/animation/animation.h \ |
---|
| 98 | util/animation/t_animation.h \ |
---|
| 99 | util/animation/animation3d.h \ |
---|
| 100 | util/animation/animation_player.h \ |
---|
[4940] | 101 | util/fast_factory.h \ |
---|
[4556] | 102 | util/garbage_collector.h \ |
---|
| 103 | util/state.h \ |
---|
[5040] | 104 | util/user_control.h \ |
---|
[4556] | 105 | util/resource_manager.h \ |
---|
| 106 | util/loading/factory.h \ |
---|
| 107 | util/loading/load_param.h \ |
---|
| 108 | story_entities/story_entity.h \ |
---|
| 109 | story_entities/story_def.h \ |
---|
| 110 | story_entities/campaign.h \ |
---|
| 111 | story_entities/world.h \ |
---|
| 112 | world_entities/world_entity.h \ |
---|
| 113 | world_entities/camera.h \ |
---|
| 114 | world_entities/player.h \ |
---|
| 115 | world_entities/npc.h \ |
---|
| 116 | world_entities/environment.h \ |
---|
| 117 | world_entities/skysphere.h \ |
---|
| 118 | world_entities/skybox.h \ |
---|
| 119 | world_entities/power_up.h \ |
---|
| 120 | world_entities/terrain.h \ |
---|
| 121 | world_entities/satellite.h \ |
---|
| 122 | world_entities/character_attributes.h \ |
---|
| 123 | world_entities/test_entity.h \ |
---|
[4826] | 124 | world_entities/weapons/weapon_manager.h \ |
---|
[4758] | 125 | world_entities/weapons/weapon.h \ |
---|
| 126 | world_entities/weapons/projectile.h \ |
---|
| 127 | world_entities/weapons/test_gun.h \ |
---|
[4963] | 128 | world_entities/weapons/turret.h \ |
---|
[4758] | 129 | world_entities/weapons/test_bullet.h \ |
---|
[4779] | 130 | world_entities/weapons/crosshair.h \ |
---|
[4556] | 131 | defs/stdincl.h \ |
---|
| 132 | defs/stdlibincl.h \ |
---|
| 133 | defs/sdlincl.h \ |
---|
| 134 | defs/glincl.h \ |
---|
| 135 | defs/alincl.h \ |
---|
| 136 | defs/comincl.h \ |
---|
| 137 | defs/confincl.h \ |
---|
| 138 | defs/error.h \ |
---|
| 139 | defs/debug.h \ |
---|
| 140 | defs/globals.h \ |
---|
| 141 | defs/compiler.h \ |
---|
[4745] | 142 | defs/class_id.h \ |
---|
[5133] | 143 | defs/functor_list.h \ |
---|
[4556] | 144 | lib/coord/p_node.h \ |
---|
| 145 | lib/coord/null_parent.h \ |
---|
| 146 | lib/graphics/graphics_engine.h \ |
---|
| 147 | lib/graphics/light.h \ |
---|
| 148 | lib/graphics/text_engine.h \ |
---|
| 149 | lib/lang/base_object.h \ |
---|
[4839] | 150 | lib/graphics/render2D/element_2d.h \ |
---|
| 151 | lib/graphics/render2D/render_2d.h \ |
---|
[4743] | 152 | lib/lang/class_list.h \ |
---|
[4556] | 153 | lib/util/ini_parser.h \ |
---|
| 154 | lib/util/substring.h \ |
---|
[5100] | 155 | lib/util/array.h \ |
---|
[4556] | 156 | lib/util/list.h \ |
---|
[5010] | 157 | lib/util/color.h \ |
---|
[5141] | 158 | lib/util/helper_functions.h \ |
---|
[4556] | 159 | lib/math/vector.h \ |
---|
| 160 | lib/math/curve.h \ |
---|
| 161 | glmenu/glmenu_imagescreen.h \ |
---|
| 162 | subprojects/benchmark.h |
---|
[2589] | 163 | |
---|
[4028] | 164 | |
---|
[3198] | 165 | ## orxonox.conf will be used from home-dir instead. |
---|
[4261] | 166 | EXTRA_DIST = proto/proto_class.h \ |
---|
[4556] | 167 | proto/proto_class.cc \ |
---|
| 168 | proto/proto_singleton.h \ |
---|
| 169 | proto/proto_singleton.cc \ |
---|
| 170 | proto/proto_world_entity.h \ |
---|
| 171 | proto/proto_world_entity.cc \ |
---|
| 172 | defs/include_paths.am |
---|
| 173 | |
---|
[3377] | 174 | if SUB_PROJECTS |
---|
[4264] | 175 | SUB_PROGS = subprojects |
---|
[3377] | 176 | else |
---|
[4556] | 177 | SUB_PROGS = |
---|
[3377] | 178 | endif |
---|
[3182] | 179 | |
---|
[4730] | 180 | SUBDIRS = lib . $(SUB_PROGS) |
---|
[3191] | 181 | |
---|
[1953] | 182 | |
---|
| 183 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
| 184 | |
---|
| 185 | # if you write a self-test script named `chk', uncomment the |
---|
| 186 | # following and add `chk' to the EXTRA_DIST list |
---|
| 187 | #TESTS=chk |
---|
| 188 | |
---|
| 189 | # build and install the .info pages |
---|
| 190 | #info_TEXINFOS = orxonox.texinfo |
---|
| 191 | #orxonox_TEXINFOS = gpl.texinfo |
---|
| 192 | |
---|
| 193 | # install the man pages |
---|
| 194 | #man_MANS=orxonox.1 |
---|