[3486] | 1 | MAINSRCDIR=. |
---|
[3487] | 2 | AM_CXXFLAGS=-I$(MAINSRCDIR) |
---|
| 3 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/world_entities |
---|
[3486] | 4 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/story_entities |
---|
| 5 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib |
---|
[3488] | 6 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/coord |
---|
[3486] | 7 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/data |
---|
[3603] | 8 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics |
---|
[3486] | 9 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/importer |
---|
[3489] | 10 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui |
---|
[3486] | 11 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/lang |
---|
| 12 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/util |
---|
| 13 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/math |
---|
| 14 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/defs |
---|
| 15 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/font |
---|
| 16 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/network |
---|
| 17 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/glmenu |
---|
| 18 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/ai |
---|
[3868] | 19 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util |
---|
| 20 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/animation |
---|
[3869] | 21 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/common |
---|
[3472] | 22 | |
---|
[3484] | 23 | |
---|
[3180] | 24 | AM_LDFLAGS= $(MWINDOWS) |
---|
[1955] | 25 | |
---|
[1953] | 26 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
| 27 | |
---|
[1955] | 28 | |
---|
[1953] | 29 | bin_PROGRAMS=orxonox |
---|
| 30 | |
---|
[3182] | 31 | orxonox_SOURCES= orxonox.cc \ |
---|
[3478] | 32 | game_loader.cc \ |
---|
[3182] | 33 | command_node.cc \ |
---|
| 34 | keynames.cc \ |
---|
[3869] | 35 | world_entities/camera.cc \ |
---|
[3478] | 36 | track_manager.cc \ |
---|
[3522] | 37 | track_node.cc \ |
---|
[3868] | 38 | util/animation/animation.cc \ |
---|
| 39 | util/animation/animation3d.cc \ |
---|
| 40 | util/animation/animation_player.cc \ |
---|
[3646] | 41 | garbage_collector.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 \ |
---|
| 46 | world_entities/player.cc \ |
---|
[3472] | 47 | world_entities/environment.cc \ |
---|
[3478] | 48 | world_entities/skysphere.cc \ |
---|
[3796] | 49 | world_entities/skybox.cc \ |
---|
[3559] | 50 | world_entities/terrain.cc \ |
---|
[3573] | 51 | world_entities/weapon.cc \ |
---|
| 52 | world_entities/projectile.cc \ |
---|
[3750] | 53 | world_entities/satellite.cc \ |
---|
[3580] | 54 | world_entities/character_attributes.cc \ |
---|
[3618] | 55 | world_entities/test_gun.cc \ |
---|
[3710] | 56 | world_entities/test_bullet.cc \ |
---|
[3481] | 57 | ai/ai.cc \ |
---|
[3488] | 58 | lib/coord/p_node.cc \ |
---|
| 59 | lib/coord/null_parent.cc \ |
---|
| 60 | lib/coord/helper_parent.cc \ |
---|
| 61 | lib/data/data_tank.cc \ |
---|
[3610] | 62 | lib/graphics/graphics_engine.cc \ |
---|
[3603] | 63 | lib/graphics/light.cc \ |
---|
[3790] | 64 | lib/graphics/text_engine.cc \ |
---|
[3484] | 65 | lib/graphics/importer/array.cc \ |
---|
| 66 | lib/graphics/importer/objModel.cc \ |
---|
[3657] | 67 | lib/graphics/importer/primitive_model.cc \ |
---|
[3484] | 68 | lib/graphics/importer/model.cc \ |
---|
| 69 | lib/graphics/importer/material.cc \ |
---|
| 70 | lib/graphics/importer/texture.cc \ |
---|
| 71 | lib/lang/base_entity.cc \ |
---|
| 72 | lib/lang/base_object.cc \ |
---|
| 73 | lib/util/ini_parser.cc \ |
---|
[3869] | 74 | util/common/list.cc \ |
---|
| 75 | util/resource_manager.cc \ |
---|
[3483] | 76 | lib/math/vector.cc \ |
---|
| 77 | lib/math/curve.cc \ |
---|
[3761] | 78 | glmenu/glmenu_imagescreen.cc |
---|
[2589] | 79 | |
---|
[3481] | 80 | noinst_HEADERS = orxonox.h \ |
---|
| 81 | game_loader.h \ |
---|
| 82 | track_manager.h \ |
---|
| 83 | ability.h \ |
---|
[3869] | 84 | world_entities/camera.h \ |
---|
[3182] | 85 | keynames.h \ |
---|
| 86 | command_node.h \ |
---|
| 87 | message_structures.h \ |
---|
[3522] | 88 | track_manager.h \ |
---|
| 89 | track_node.h \ |
---|
[3868] | 90 | util/animation/animation.h \ |
---|
| 91 | util/animation/t_animation.h \ |
---|
| 92 | util/animation/animation3d.h \ |
---|
| 93 | util/animation/animation_player.h \ |
---|
[3646] | 94 | garbage_collector.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 \ |
---|
| 100 | world_entities/player.h \ |
---|
| 101 | world_entities/npc.h \ |
---|
| 102 | world_entities/environment.h \ |
---|
| 103 | world_entities/skysphere.h \ |
---|
[3796] | 104 | world_entities/skybox.h \ |
---|
[3483] | 105 | world_entities/power_up.h \ |
---|
[3559] | 106 | world_entities/terrain.h \ |
---|
[3573] | 107 | world_entities/weapon.h \ |
---|
| 108 | world_entities/projectile.h \ |
---|
[3750] | 109 | world_entities/satellite.h \ |
---|
[3580] | 110 | world_entities/character_attributes.h \ |
---|
[3618] | 111 | world_entities/test_gun.h \ |
---|
[3710] | 112 | world_entities/test_bullet.h \ |
---|
[3481] | 113 | ai/ai.h \ |
---|
| 114 | network/synchronisable.h \ |
---|
| 115 | defs/stdincl.h \ |
---|
[3493] | 116 | defs/glincl.h \ |
---|
[3608] | 117 | defs/comincl.h \ |
---|
[3863] | 118 | defs/confincl.h \ |
---|
[3481] | 119 | defs/error.h \ |
---|
| 120 | defs/debug.h \ |
---|
[3488] | 121 | lib/coord/p_node.h \ |
---|
| 122 | lib/coord/null_parent.h \ |
---|
| 123 | lib/coord/helper_parent.h \ |
---|
[3610] | 124 | lib/graphics/graphics_engine.h \ |
---|
[3603] | 125 | lib/graphics/light.h \ |
---|
[3790] | 126 | lib/graphics/text_engine.h \ |
---|
[3484] | 127 | lib/data/data_tank.h \ |
---|
| 128 | lib/lang/base_entity.h \ |
---|
| 129 | lib/lang/base_object.h \ |
---|
[3869] | 130 | util/common/list.h \ |
---|
| 131 | util/common/list_template.h \ |
---|
| 132 | util/resource_manager.h \ |
---|
[3484] | 133 | lib/util/ini_parser.h \ |
---|
[3483] | 134 | lib/math/vector.h \ |
---|
| 135 | lib/math/curve.h \ |
---|
[3491] | 136 | glmenu/glmenu_imagescreen.h |
---|
[2589] | 137 | |
---|
[3490] | 138 | |
---|
[3198] | 139 | ## orxonox.conf will be used from home-dir instead. |
---|
[3655] | 140 | EXTRA_DIST = orxonox.conf \ |
---|
| 141 | proto/proto_class.h \ |
---|
| 142 | proto/proto_class.cc \ |
---|
| 143 | proto/proto_singleton.h \ |
---|
[3761] | 144 | proto/proto_singleton.cc \ |
---|
| 145 | proto/proto_world_entity.h \ |
---|
| 146 | proto/proto_world_entity.cc |
---|
[2816] | 147 | |
---|
[3377] | 148 | if SUB_PROJECTS |
---|
[3549] | 149 | SUB_PROGS = lib subprojects |
---|
[3377] | 150 | else |
---|
| 151 | SUB_PROGS = |
---|
| 152 | endif |
---|
[3182] | 153 | |
---|
[3197] | 154 | SUBDIRS = . \ |
---|
[3377] | 155 | $(SUB_PROGS) |
---|
[3191] | 156 | |
---|
[3027] | 157 | # uncomment the following if orxonox requires the math library |
---|
[2190] | 158 | #orxonox_LDADD=-lm |
---|
[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 |
---|