[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 |
---|
[3472] | 19 | |
---|
[3484] | 20 | |
---|
[3180] | 21 | AM_LDFLAGS= $(MWINDOWS) |
---|
[1955] | 22 | |
---|
[1953] | 23 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
| 24 | |
---|
[1955] | 25 | |
---|
[1953] | 26 | bin_PROGRAMS=orxonox |
---|
| 27 | |
---|
[3182] | 28 | orxonox_SOURCES= orxonox.cc \ |
---|
[3478] | 29 | game_loader.cc \ |
---|
[3182] | 30 | command_node.cc \ |
---|
| 31 | keynames.cc \ |
---|
[3478] | 32 | camera.cc \ |
---|
| 33 | track_manager.cc \ |
---|
[3522] | 34 | track_node.cc \ |
---|
[3790] | 35 | animation.cc \ |
---|
[3851] | 36 | animation3d.cc \ |
---|
[3812] | 37 | animation_player.cc \ |
---|
[3646] | 38 | garbage_collector.cc \ |
---|
[3478] | 39 | story_entities/story_entity.cc \ |
---|
[3472] | 40 | story_entities/campaign.cc \ |
---|
[3478] | 41 | story_entities/world.cc \ |
---|
| 42 | world_entities/world_entity.cc \ |
---|
| 43 | world_entities/player.cc \ |
---|
[3472] | 44 | world_entities/environment.cc \ |
---|
[3478] | 45 | world_entities/skysphere.cc \ |
---|
[3796] | 46 | world_entities/skybox.cc \ |
---|
[3559] | 47 | world_entities/terrain.cc \ |
---|
[3573] | 48 | world_entities/weapon.cc \ |
---|
| 49 | world_entities/projectile.cc \ |
---|
[3750] | 50 | world_entities/satellite.cc \ |
---|
[3580] | 51 | world_entities/character_attributes.cc \ |
---|
[3618] | 52 | world_entities/test_gun.cc \ |
---|
[3710] | 53 | world_entities/test_bullet.cc \ |
---|
[3481] | 54 | ai/ai.cc \ |
---|
[3488] | 55 | lib/coord/p_node.cc \ |
---|
| 56 | lib/coord/null_parent.cc \ |
---|
| 57 | lib/coord/helper_parent.cc \ |
---|
| 58 | lib/data/data_tank.cc \ |
---|
[3610] | 59 | lib/graphics/graphics_engine.cc \ |
---|
[3603] | 60 | lib/graphics/light.cc \ |
---|
[3790] | 61 | lib/graphics/text_engine.cc \ |
---|
[3484] | 62 | lib/graphics/importer/array.cc \ |
---|
| 63 | lib/graphics/importer/objModel.cc \ |
---|
[3657] | 64 | lib/graphics/importer/primitive_model.cc \ |
---|
[3484] | 65 | lib/graphics/importer/model.cc \ |
---|
| 66 | lib/graphics/importer/material.cc \ |
---|
| 67 | lib/graphics/importer/texture.cc \ |
---|
| 68 | lib/lang/base_entity.cc \ |
---|
| 69 | lib/lang/base_object.cc \ |
---|
| 70 | lib/util/ini_parser.cc \ |
---|
[3483] | 71 | lib/util/list.cc \ |
---|
[3655] | 72 | lib/util/resource_manager.cc \ |
---|
[3483] | 73 | lib/math/vector.cc \ |
---|
| 74 | lib/math/curve.cc \ |
---|
[3761] | 75 | glmenu/glmenu_imagescreen.cc |
---|
[2589] | 76 | |
---|
[3481] | 77 | noinst_HEADERS = orxonox.h \ |
---|
| 78 | game_loader.h \ |
---|
| 79 | track_manager.h \ |
---|
| 80 | ability.h \ |
---|
[3182] | 81 | camera.h \ |
---|
| 82 | keynames.h \ |
---|
| 83 | command_node.h \ |
---|
| 84 | message_structures.h \ |
---|
[3522] | 85 | track_manager.h \ |
---|
| 86 | track_node.h \ |
---|
[3790] | 87 | animation.h \ |
---|
[3851] | 88 | t_animation.h \ |
---|
| 89 | animation3d.h \ |
---|
[3812] | 90 | animation_player.h \ |
---|
[3646] | 91 | garbage_collector.h \ |
---|
[3472] | 92 | story_entities/story_entity.h \ |
---|
| 93 | story_entities/story_def.h \ |
---|
| 94 | story_entities/campaign.h \ |
---|
[3481] | 95 | story_entities/world.h \ |
---|
| 96 | world_entities/world_entity.h \ |
---|
| 97 | world_entities/player.h \ |
---|
| 98 | world_entities/npc.h \ |
---|
| 99 | world_entities/environment.h \ |
---|
| 100 | world_entities/skysphere.h \ |
---|
[3796] | 101 | world_entities/skybox.h \ |
---|
[3483] | 102 | world_entities/power_up.h \ |
---|
[3559] | 103 | world_entities/terrain.h \ |
---|
[3573] | 104 | world_entities/weapon.h \ |
---|
| 105 | world_entities/projectile.h \ |
---|
[3750] | 106 | world_entities/satellite.h \ |
---|
[3580] | 107 | world_entities/character_attributes.h \ |
---|
[3618] | 108 | world_entities/test_gun.h \ |
---|
[3710] | 109 | world_entities/test_bullet.h \ |
---|
[3481] | 110 | ai/ai.h \ |
---|
| 111 | network/synchronisable.h \ |
---|
| 112 | defs/stdincl.h \ |
---|
[3493] | 113 | defs/glincl.h \ |
---|
[3608] | 114 | defs/comincl.h \ |
---|
[3481] | 115 | defs/error.h \ |
---|
| 116 | defs/debug.h \ |
---|
[3488] | 117 | lib/coord/p_node.h \ |
---|
| 118 | lib/coord/null_parent.h \ |
---|
| 119 | lib/coord/helper_parent.h \ |
---|
[3610] | 120 | lib/graphics/graphics_engine.h \ |
---|
[3603] | 121 | lib/graphics/light.h \ |
---|
[3790] | 122 | lib/graphics/text_engine.h \ |
---|
[3484] | 123 | lib/data/data_tank.h \ |
---|
| 124 | lib/lang/base_entity.h \ |
---|
| 125 | lib/lang/base_object.h \ |
---|
[3483] | 126 | lib/util/list.h \ |
---|
| 127 | lib/util/list_template.h \ |
---|
[3655] | 128 | lib/util/resource_manager.h \ |
---|
[3484] | 129 | lib/util/ini_parser.h \ |
---|
[3483] | 130 | lib/math/vector.h \ |
---|
| 131 | lib/math/curve.h \ |
---|
[3491] | 132 | glmenu/glmenu_imagescreen.h |
---|
[2589] | 133 | |
---|
[3490] | 134 | |
---|
[3198] | 135 | ## orxonox.conf will be used from home-dir instead. |
---|
[3655] | 136 | EXTRA_DIST = orxonox.conf \ |
---|
| 137 | proto/proto_class.h \ |
---|
| 138 | proto/proto_class.cc \ |
---|
| 139 | proto/proto_singleton.h \ |
---|
[3761] | 140 | proto/proto_singleton.cc \ |
---|
| 141 | proto/proto_world_entity.h \ |
---|
| 142 | proto/proto_world_entity.cc |
---|
[2816] | 143 | |
---|
[3377] | 144 | if SUB_PROJECTS |
---|
[3549] | 145 | SUB_PROGS = lib subprojects |
---|
[3377] | 146 | else |
---|
| 147 | SUB_PROGS = |
---|
| 148 | endif |
---|
[3182] | 149 | |
---|
[3197] | 150 | SUBDIRS = . \ |
---|
[3377] | 151 | $(SUB_PROGS) |
---|
[3191] | 152 | |
---|
[3027] | 153 | # uncomment the following if orxonox requires the math library |
---|
[2190] | 154 | #orxonox_LDADD=-lm |
---|
[1953] | 155 | |
---|
| 156 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
| 157 | |
---|
| 158 | # if you write a self-test script named `chk', uncomment the |
---|
| 159 | # following and add `chk' to the EXTRA_DIST list |
---|
| 160 | #TESTS=chk |
---|
| 161 | |
---|
| 162 | # build and install the .info pages |
---|
| 163 | #info_TEXINFOS = orxonox.texinfo |
---|
| 164 | #orxonox_TEXINFOS = gpl.texinfo |
---|
| 165 | |
---|
| 166 | # install the man pages |
---|
| 167 | #man_MANS=orxonox.1 |
---|