| 1 | MAINSRCDIR=. |
|---|
| 2 | AM_CXXFLAGS=-I$(MAINSRCDIR) |
|---|
| 3 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/world_entities |
|---|
| 4 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/story_entities |
|---|
| 5 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib |
|---|
| 6 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/coord |
|---|
| 7 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/data |
|---|
| 8 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics |
|---|
| 9 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/importer |
|---|
| 10 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui |
|---|
| 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 |
|---|
| 19 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util |
|---|
| 20 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/animation |
|---|
| 21 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/common |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | AM_LDFLAGS= $(MWINDOWS) |
|---|
| 25 | |
|---|
| 26 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | bin_PROGRAMS=orxonox |
|---|
| 30 | |
|---|
| 31 | orxonox_SOURCES= orxonox.cc \ |
|---|
| 32 | game_loader.cc \ |
|---|
| 33 | command_node.cc \ |
|---|
| 34 | keynames.cc \ |
|---|
| 35 | world_entities/camera.cc \ |
|---|
| 36 | track_manager.cc \ |
|---|
| 37 | track_node.cc \ |
|---|
| 38 | util/animation/animation.cc \ |
|---|
| 39 | util/animation/animation3d.cc \ |
|---|
| 40 | util/animation/animation_player.cc \ |
|---|
| 41 | garbage_collector.cc \ |
|---|
| 42 | story_entities/story_entity.cc \ |
|---|
| 43 | story_entities/campaign.cc \ |
|---|
| 44 | story_entities/world.cc \ |
|---|
| 45 | world_entities/world_entity.cc \ |
|---|
| 46 | world_entities/player.cc \ |
|---|
| 47 | world_entities/environment.cc \ |
|---|
| 48 | world_entities/skysphere.cc \ |
|---|
| 49 | world_entities/skybox.cc \ |
|---|
| 50 | world_entities/terrain.cc \ |
|---|
| 51 | world_entities/weapon.cc \ |
|---|
| 52 | world_entities/projectile.cc \ |
|---|
| 53 | world_entities/satellite.cc \ |
|---|
| 54 | world_entities/character_attributes.cc \ |
|---|
| 55 | world_entities/test_gun.cc \ |
|---|
| 56 | world_entities/test_bullet.cc \ |
|---|
| 57 | ai/ai.cc \ |
|---|
| 58 | lib/coord/p_node.cc \ |
|---|
| 59 | lib/coord/null_parent.cc \ |
|---|
| 60 | lib/coord/helper_parent.cc \ |
|---|
| 61 | lib/data/data_tank.cc \ |
|---|
| 62 | lib/graphics/graphics_engine.cc \ |
|---|
| 63 | lib/graphics/light.cc \ |
|---|
| 64 | lib/graphics/text_engine.cc \ |
|---|
| 65 | lib/graphics/importer/array.cc \ |
|---|
| 66 | lib/graphics/importer/objModel.cc \ |
|---|
| 67 | lib/graphics/importer/primitive_model.cc \ |
|---|
| 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 \ |
|---|
| 74 | util/common/list.cc \ |
|---|
| 75 | util/resource_manager.cc \ |
|---|
| 76 | lib/math/vector.cc \ |
|---|
| 77 | lib/math/curve.cc \ |
|---|
| 78 | glmenu/glmenu_imagescreen.cc |
|---|
| 79 | |
|---|
| 80 | noinst_HEADERS = orxonox.h \ |
|---|
| 81 | game_loader.h \ |
|---|
| 82 | track_manager.h \ |
|---|
| 83 | ability.h \ |
|---|
| 84 | world_entities/camera.h \ |
|---|
| 85 | keynames.h \ |
|---|
| 86 | command_node.h \ |
|---|
| 87 | message_structures.h \ |
|---|
| 88 | track_manager.h \ |
|---|
| 89 | track_node.h \ |
|---|
| 90 | util/animation/animation.h \ |
|---|
| 91 | util/animation/t_animation.h \ |
|---|
| 92 | util/animation/animation3d.h \ |
|---|
| 93 | util/animation/animation_player.h \ |
|---|
| 94 | garbage_collector.h \ |
|---|
| 95 | story_entities/story_entity.h \ |
|---|
| 96 | story_entities/story_def.h \ |
|---|
| 97 | story_entities/campaign.h \ |
|---|
| 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 \ |
|---|
| 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 | ai/ai.h \ |
|---|
| 114 | network/synchronisable.h \ |
|---|
| 115 | defs/stdincl.h \ |
|---|
| 116 | defs/glincl.h \ |
|---|
| 117 | defs/comincl.h \ |
|---|
| 118 | defs/confincl.h \ |
|---|
| 119 | defs/error.h \ |
|---|
| 120 | defs/debug.h \ |
|---|
| 121 | lib/coord/p_node.h \ |
|---|
| 122 | lib/coord/null_parent.h \ |
|---|
| 123 | lib/coord/helper_parent.h \ |
|---|
| 124 | lib/graphics/graphics_engine.h \ |
|---|
| 125 | lib/graphics/light.h \ |
|---|
| 126 | lib/graphics/text_engine.h \ |
|---|
| 127 | lib/data/data_tank.h \ |
|---|
| 128 | lib/lang/base_entity.h \ |
|---|
| 129 | lib/lang/base_object.h \ |
|---|
| 130 | util/common/list.h \ |
|---|
| 131 | util/common/list_template.h \ |
|---|
| 132 | util/resource_manager.h \ |
|---|
| 133 | lib/util/ini_parser.h \ |
|---|
| 134 | lib/math/vector.h \ |
|---|
| 135 | lib/math/curve.h \ |
|---|
| 136 | glmenu/glmenu_imagescreen.h |
|---|
| 137 | |
|---|
| 138 | |
|---|
| 139 | ## orxonox.conf will be used from home-dir instead. |
|---|
| 140 | EXTRA_DIST = orxonox.conf \ |
|---|
| 141 | proto/proto_class.h \ |
|---|
| 142 | proto/proto_class.cc \ |
|---|
| 143 | proto/proto_singleton.h \ |
|---|
| 144 | proto/proto_singleton.cc \ |
|---|
| 145 | proto/proto_world_entity.h \ |
|---|
| 146 | proto/proto_world_entity.cc |
|---|
| 147 | |
|---|
| 148 | if SUB_PROJECTS |
|---|
| 149 | SUB_PROGS = lib subprojects |
|---|
| 150 | else |
|---|
| 151 | SUB_PROGS = |
|---|
| 152 | endif |
|---|
| 153 | |
|---|
| 154 | SUBDIRS = . \ |
|---|
| 155 | $(SUB_PROGS) |
|---|
| 156 | |
|---|
| 157 | # uncomment the following if orxonox requires the math library |
|---|
| 158 | #orxonox_LDADD=-lm |
|---|
| 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 |
|---|