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