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