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