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