[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 |
---|
[3966] | 10 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/particles |
---|
[3489] | 11 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui |
---|
[4054] | 12 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui/gui |
---|
[3486] | 13 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/lang |
---|
| 14 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/util |
---|
| 15 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/math |
---|
| 16 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/defs |
---|
| 17 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/font |
---|
| 18 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/network |
---|
| 19 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/glmenu |
---|
| 20 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/ai |
---|
[3868] | 21 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util |
---|
| 22 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/animation |
---|
[3869] | 23 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/common |
---|
[4131] | 24 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/subprojects |
---|
[3472] | 25 | |
---|
[3484] | 26 | |
---|
[1955] | 27 | |
---|
[1953] | 28 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
| 29 | |
---|
[1955] | 30 | |
---|
[4054] | 31 | bin_PROGRAMS=orxonox |
---|
[4057] | 32 | noinst_LIBRARIES = libORXgui.a |
---|
[1953] | 33 | |
---|
[4057] | 34 | orxonox_DEPENDENCIES = libORXgui.a |
---|
[4143] | 35 | orxonox_LDADD = libORXgui.a $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) |
---|
[3182] | 36 | orxonox_SOURCES= orxonox.cc \ |
---|
[3478] | 37 | game_loader.cc \ |
---|
[3182] | 38 | command_node.cc \ |
---|
| 39 | keynames.cc \ |
---|
[3869] | 40 | world_entities/camera.cc \ |
---|
[3478] | 41 | track_manager.cc \ |
---|
[3522] | 42 | track_node.cc \ |
---|
[4010] | 43 | factory.cc \ |
---|
[3868] | 44 | util/animation/animation.cc \ |
---|
| 45 | util/animation/animation3d.cc \ |
---|
| 46 | util/animation/animation_player.cc \ |
---|
[4245] | 47 | util/object_manager.cc \ |
---|
[3646] | 48 | garbage_collector.cc \ |
---|
[3478] | 49 | story_entities/story_entity.cc \ |
---|
[3472] | 50 | story_entities/campaign.cc \ |
---|
[3478] | 51 | story_entities/world.cc \ |
---|
| 52 | world_entities/world_entity.cc \ |
---|
| 53 | world_entities/player.cc \ |
---|
[3472] | 54 | world_entities/environment.cc \ |
---|
[3478] | 55 | world_entities/skysphere.cc \ |
---|
[3796] | 56 | world_entities/skybox.cc \ |
---|
[3559] | 57 | world_entities/terrain.cc \ |
---|
[3573] | 58 | world_entities/weapon.cc \ |
---|
| 59 | world_entities/projectile.cc \ |
---|
[3750] | 60 | world_entities/satellite.cc \ |
---|
[3580] | 61 | world_entities/character_attributes.cc \ |
---|
[3618] | 62 | world_entities/test_gun.cc \ |
---|
[3710] | 63 | world_entities/test_bullet.cc \ |
---|
[4245] | 64 | world_entities/test_entity.cc \ |
---|
[3481] | 65 | ai/ai.cc \ |
---|
[3488] | 66 | lib/coord/p_node.cc \ |
---|
| 67 | lib/coord/null_parent.cc \ |
---|
| 68 | lib/coord/helper_parent.cc \ |
---|
| 69 | lib/data/data_tank.cc \ |
---|
[3610] | 70 | lib/graphics/graphics_engine.cc \ |
---|
[3603] | 71 | lib/graphics/light.cc \ |
---|
[3790] | 72 | lib/graphics/text_engine.cc \ |
---|
[3484] | 73 | lib/graphics/importer/array.cc \ |
---|
| 74 | lib/graphics/importer/objModel.cc \ |
---|
[4245] | 75 | lib/graphics/importer/md2Model.cc \ |
---|
[3657] | 76 | lib/graphics/importer/primitive_model.cc \ |
---|
[3484] | 77 | lib/graphics/importer/model.cc \ |
---|
| 78 | lib/graphics/importer/material.cc \ |
---|
| 79 | lib/graphics/importer/texture.cc \ |
---|
[3966] | 80 | lib/graphics/particles/particle_engine.cc \ |
---|
| 81 | lib/graphics/particles/particle_system.cc \ |
---|
| 82 | lib/graphics/particles/particle_emitter.cc \ |
---|
[3484] | 83 | lib/lang/base_entity.cc \ |
---|
| 84 | lib/lang/base_object.cc \ |
---|
| 85 | lib/util/ini_parser.cc \ |
---|
[4220] | 86 | lib/util/substring.cc \ |
---|
[3869] | 87 | util/common/list.cc \ |
---|
| 88 | util/resource_manager.cc \ |
---|
[3483] | 89 | lib/math/vector.cc \ |
---|
| 90 | lib/math/curve.cc \ |
---|
[4010] | 91 | glmenu/glmenu_imagescreen.cc \ |
---|
| 92 | lib/xmlparser/tinyxml.cc \ |
---|
| 93 | lib/xmlparser/tinystr.cc \ |
---|
| 94 | lib/xmlparser/tinyxmlerror.cc \ |
---|
[4131] | 95 | lib/xmlparser/tinyxmlparser.cc \ |
---|
| 96 | subprojects/benchmark.cc |
---|
[4039] | 97 | |
---|
[3481] | 98 | noinst_HEADERS = orxonox.h \ |
---|
| 99 | game_loader.h \ |
---|
| 100 | track_manager.h \ |
---|
| 101 | ability.h \ |
---|
[3869] | 102 | world_entities/camera.h \ |
---|
[3182] | 103 | keynames.h \ |
---|
| 104 | command_node.h \ |
---|
| 105 | message_structures.h \ |
---|
[3522] | 106 | track_manager.h \ |
---|
| 107 | track_node.h \ |
---|
[3868] | 108 | util/animation/animation.h \ |
---|
| 109 | util/animation/t_animation.h \ |
---|
| 110 | util/animation/animation3d.h \ |
---|
| 111 | util/animation/animation_player.h \ |
---|
[4245] | 112 | util/object_manager.h \ |
---|
[3646] | 113 | garbage_collector.h \ |
---|
[3472] | 114 | story_entities/story_entity.h \ |
---|
| 115 | story_entities/story_def.h \ |
---|
| 116 | story_entities/campaign.h \ |
---|
[3481] | 117 | story_entities/world.h \ |
---|
| 118 | world_entities/world_entity.h \ |
---|
| 119 | world_entities/player.h \ |
---|
| 120 | world_entities/npc.h \ |
---|
| 121 | world_entities/environment.h \ |
---|
| 122 | world_entities/skysphere.h \ |
---|
[3796] | 123 | world_entities/skybox.h \ |
---|
[3483] | 124 | world_entities/power_up.h \ |
---|
[3559] | 125 | world_entities/terrain.h \ |
---|
[3573] | 126 | world_entities/weapon.h \ |
---|
| 127 | world_entities/projectile.h \ |
---|
[3750] | 128 | world_entities/satellite.h \ |
---|
[3580] | 129 | world_entities/character_attributes.h \ |
---|
[3618] | 130 | world_entities/test_gun.h \ |
---|
[3710] | 131 | world_entities/test_bullet.h \ |
---|
[4245] | 132 | world_entities/test_entity.h \ |
---|
[3481] | 133 | ai/ai.h \ |
---|
| 134 | network/synchronisable.h \ |
---|
| 135 | defs/stdincl.h \ |
---|
[3493] | 136 | defs/glincl.h \ |
---|
[3608] | 137 | defs/comincl.h \ |
---|
[3863] | 138 | defs/confincl.h \ |
---|
[3481] | 139 | defs/error.h \ |
---|
| 140 | defs/debug.h \ |
---|
[4091] | 141 | defs/globals.h \ |
---|
[3488] | 142 | lib/coord/p_node.h \ |
---|
| 143 | lib/coord/null_parent.h \ |
---|
| 144 | lib/coord/helper_parent.h \ |
---|
[3610] | 145 | lib/graphics/graphics_engine.h \ |
---|
[3603] | 146 | lib/graphics/light.h \ |
---|
[3790] | 147 | lib/graphics/text_engine.h \ |
---|
[4245] | 148 | lib/graphics/importer/array.h \ |
---|
| 149 | lib/graphics/importer/abstract_model.h \ |
---|
| 150 | lib/graphics/importer/objModel.h \ |
---|
| 151 | lib/graphics/importer/md2Model.h \ |
---|
| 152 | lib/graphics/importer/primitive_model.h \ |
---|
| 153 | lib/graphics/importer/model.h \ |
---|
| 154 | lib/graphics/importer/material.h \ |
---|
| 155 | lib/graphics/importer/texture.h \ |
---|
[3966] | 156 | lib/graphics/particles/particle_engine.h \ |
---|
| 157 | lib/graphics/particles/particle_system.h \ |
---|
| 158 | lib/graphics/particles/particle_emitter.h \ |
---|
[3484] | 159 | lib/data/data_tank.h \ |
---|
| 160 | lib/lang/base_entity.h \ |
---|
| 161 | lib/lang/base_object.h \ |
---|
[3869] | 162 | util/common/list.h \ |
---|
| 163 | util/common/list_template.h \ |
---|
| 164 | util/resource_manager.h \ |
---|
[3484] | 165 | lib/util/ini_parser.h \ |
---|
[4220] | 166 | lib/util/substring.h \ |
---|
[3483] | 167 | lib/math/vector.h \ |
---|
| 168 | lib/math/curve.h \ |
---|
[4028] | 169 | glmenu/glmenu_imagescreen.h \ |
---|
[4054] | 170 | lib/gui/gui/gui.h \ |
---|
| 171 | lib/gui/gui/gui_gtk.h \ |
---|
| 172 | lib/gui/gui/gui_element.h \ |
---|
| 173 | lib/gui/gui/gui_video.h \ |
---|
| 174 | lib/gui/gui/gui_audio.h \ |
---|
| 175 | lib/gui/gui/gui_exec.h \ |
---|
| 176 | lib/gui/gui/gui_flags.h \ |
---|
| 177 | lib/gui/gui/gui_banner.h \ |
---|
| 178 | lib/gui/gui/gui_keys.h \ |
---|
[4131] | 179 | lib/gui/gui/gui_update.h \ |
---|
| 180 | subprojects/benchmark.h |
---|
[2589] | 181 | |
---|
[4057] | 182 | libORXgui_a_CPPFLAGS=$(GTK2_CFLAGS) $(GTHREAD_CFLAGS) $(CURL_CFLAGS) $(MSBITFIELDS) |
---|
[3490] | 183 | |
---|
[4057] | 184 | libORXgui_a_SOURCES = lib/gui/gui/gui.cc \ |
---|
[4054] | 185 | lib/gui/gui/gui_gtk.cc \ |
---|
| 186 | lib/gui/gui/gui_element.cc \ |
---|
| 187 | lib/gui/gui/gui_video.cc \ |
---|
| 188 | lib/gui/gui/gui_audio.cc \ |
---|
| 189 | lib/gui/gui/gui_exec.cc \ |
---|
| 190 | lib/gui/gui/gui_flags.cc \ |
---|
| 191 | lib/gui/gui/gui_banner.cc \ |
---|
| 192 | lib/gui/gui/gui_keys.cc \ |
---|
| 193 | lib/gui/gui/gui_update.cc |
---|
[4028] | 194 | |
---|
| 195 | |
---|
[3198] | 196 | ## orxonox.conf will be used from home-dir instead. |
---|
[3655] | 197 | EXTRA_DIST = orxonox.conf \ |
---|
| 198 | proto/proto_class.h \ |
---|
| 199 | proto/proto_class.cc \ |
---|
| 200 | proto/proto_singleton.h \ |
---|
[3761] | 201 | proto/proto_singleton.cc \ |
---|
| 202 | proto/proto_world_entity.h \ |
---|
| 203 | proto/proto_world_entity.cc |
---|
[2816] | 204 | |
---|
[3377] | 205 | if SUB_PROJECTS |
---|
[3549] | 206 | SUB_PROGS = lib subprojects |
---|
[3377] | 207 | else |
---|
| 208 | SUB_PROGS = |
---|
| 209 | endif |
---|
[3182] | 210 | |
---|
[3197] | 211 | SUBDIRS = . \ |
---|
[3377] | 212 | $(SUB_PROGS) |
---|
[3191] | 213 | |
---|
[3027] | 214 | # uncomment the following if orxonox requires the math library |
---|
[2190] | 215 | #orxonox_LDADD=-lm |
---|
[1953] | 216 | |
---|
| 217 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
| 218 | |
---|
| 219 | # if you write a self-test script named `chk', uncomment the |
---|
| 220 | # following and add `chk' to the EXTRA_DIST list |
---|
| 221 | #TESTS=chk |
---|
| 222 | |
---|
| 223 | # build and install the .info pages |
---|
| 224 | #info_TEXINFOS = orxonox.texinfo |
---|
| 225 | #orxonox_TEXINFOS = gpl.texinfo |
---|
| 226 | |
---|
| 227 | # install the man pages |
---|
| 228 | #man_MANS=orxonox.1 |
---|