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