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