[3486] | 1 | MAINSRCDIR=. |
---|
[4428] | 2 | include $(MAINSRCDIR)/defs/include_paths.am |
---|
[3472] | 3 | |
---|
[3484] | 4 | |
---|
[1953] | 5 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
| 6 | |
---|
[1955] | 7 | |
---|
[4556] | 8 | bin_PROGRAMS = orxonox |
---|
[1953] | 9 | |
---|
[4725] | 10 | orxonox_CPPFLAGS = -DIS_ORXONOX |
---|
| 11 | |
---|
[5463] | 12 | orxonox_DEPENDENCIES = lib/libORXlibs.a \ |
---|
| 13 | util/libORXutils.a \ |
---|
| 14 | lib/gui/gtk_gui/libORXgui.a \ |
---|
| 15 | lib/graphics/importer/libORXimporter.a \ |
---|
| 16 | lib/graphics/libORXgraphics.a \ |
---|
| 17 | lib/sound/libORXsound.a \ |
---|
| 18 | lib/event/libORXevent.a \ |
---|
| 19 | lib/physics/libORXphysics.a \ |
---|
| 20 | lib/particles/libORXparticles.a \ |
---|
| 21 | lib/collision_detection/libORXcd.a \ |
---|
| 22 | lib/graphics/spatial_separation/libORXquadtree.a \ |
---|
| 23 | lib/tinyxml/libtinyxml.a \ |
---|
| 24 | lib/gui/gl_gui/libORXglgui.a \ |
---|
| 25 | lib/shell/libORXshell.a |
---|
[4338] | 26 | |
---|
[5463] | 27 | orxonox_LDADD = util/libORXutils.a \ |
---|
| 28 | lib/libORXlibs.a \ |
---|
| 29 | lib/gui/gtk_gui/libORXgui.a \ |
---|
| 30 | lib/graphics/importer/libORXimporter.a \ |
---|
| 31 | lib/graphics/libORXgraphics.a \ |
---|
| 32 | lib/sound/libORXsound.a \ |
---|
| 33 | lib/event/libORXevent.a \ |
---|
| 34 | lib/physics/libORXphysics.a \ |
---|
| 35 | lib/particles/libORXparticles.a \ |
---|
| 36 | lib/collision_detection/libORXcd.a \ |
---|
| 37 | lib/graphics/spatial_separation/libORXquadtree.a \ |
---|
| 38 | lib/tinyxml/libtinyxml.a \ |
---|
| 39 | lib/gui/gl_gui/libORXglgui.a \ |
---|
| 40 | lib/shell/libORXshell.a \ |
---|
[5265] | 41 | $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) |
---|
[4261] | 42 | |
---|
[4556] | 43 | orxonox_SOURCES = orxonox.cc \ |
---|
[5010] | 44 | story_entities/story_entity.cc \ |
---|
[4556] | 45 | story_entities/campaign.cc \ |
---|
| 46 | story_entities/world.cc \ |
---|
[5463] | 47 | world_entities/world_entity.cc \ |
---|
| 48 | world_entities/camera.cc \ |
---|
| 49 | world_entities/player.cc \ |
---|
[5685] | 50 | world_entities/npcs/npc.cc \ |
---|
| 51 | world_entities/npcs/npc_test1.cc \ |
---|
| 52 | world_entities/npcs/npc_test.cc \ |
---|
[5463] | 53 | world_entities/environment.cc \ |
---|
| 54 | world_entities/skysphere.cc \ |
---|
| 55 | world_entities/skybox.cc \ |
---|
| 56 | world_entities/terrain.cc \ |
---|
| 57 | world_entities/satellite.cc \ |
---|
| 58 | world_entities/character_attributes.cc \ |
---|
| 59 | world_entities/test_entity.cc \ |
---|
| 60 | world_entities/weapons/weapon_manager.cc \ |
---|
| 61 | world_entities/weapons/weapon.cc \ |
---|
| 62 | world_entities/weapons/projectile.cc \ |
---|
| 63 | world_entities/weapons/test_gun.cc \ |
---|
| 64 | world_entities/weapons/turret.cc \ |
---|
[5685] | 65 | world_entities/weapons/ground_turret.cc \ |
---|
[5527] | 66 | world_entities/weapons/aiming_turret.cc \ |
---|
[5621] | 67 | world_entities/weapons/cannon.cc \ |
---|
[5463] | 68 | world_entities/weapons/test_bullet.cc \ |
---|
| 69 | world_entities/weapons/rocket.cc \ |
---|
| 70 | world_entities/weapons/laser.cc \ |
---|
[5558] | 71 | world_entities/weapons/aim.cc \ |
---|
[5593] | 72 | world_entities/weapons/bomb.cc \ |
---|
[5463] | 73 | world_entities/weapons/crosshair.cc \ |
---|
| 74 | world_entities/power_ups/power_up.cc \ |
---|
| 75 | world_entities/power_ups/turret_power_up.cc \ |
---|
| 76 | world_entities/power_ups/laser_power_up.cc \ |
---|
[4556] | 77 | subprojects/benchmark.cc |
---|
[4039] | 78 | |
---|
[3481] | 79 | noinst_HEADERS = orxonox.h \ |
---|
| 80 | ability.h \ |
---|
[4556] | 81 | defs/message_structures.h \ |
---|
| 82 | story_entities/story_entity.h \ |
---|
| 83 | story_entities/story_def.h \ |
---|
| 84 | story_entities/campaign.h \ |
---|
[5463] | 85 | story_entities/world.h \ |
---|
| 86 | world_entities/world_entity.h \ |
---|
| 87 | world_entities/camera.h \ |
---|
| 88 | world_entities/player.h \ |
---|
[5685] | 89 | world_entities/npcs/npc.h \ |
---|
| 90 | world_entities/npcs/npc_test.h \ |
---|
| 91 | world_entities/npcs/npc_test1.h \ |
---|
[5463] | 92 | world_entities/environment.h \ |
---|
| 93 | world_entities/skysphere.h \ |
---|
| 94 | world_entities/skybox.h \ |
---|
| 95 | world_entities/terrain.h \ |
---|
| 96 | world_entities/satellite.h \ |
---|
| 97 | world_entities/character_attributes.h \ |
---|
| 98 | world_entities/test_entity.h \ |
---|
| 99 | world_entities/weapons/weapon_manager.h \ |
---|
| 100 | world_entities/weapons/weapon.h \ |
---|
| 101 | world_entities/weapons/projectile.h \ |
---|
| 102 | world_entities/weapons/test_gun.h \ |
---|
[5621] | 103 | world_entities/weapons/cannon.h \ |
---|
[5463] | 104 | world_entities/weapons/turret.h \ |
---|
[5527] | 105 | world_entities/weapons/aiming_turret.h \ |
---|
[5463] | 106 | world_entities/weapons/test_bullet.h \ |
---|
| 107 | world_entities/weapons/rocket.h \ |
---|
| 108 | world_entities/weapons/laser.h \ |
---|
[5558] | 109 | world_entities/weapons/aim.h \ |
---|
[5593] | 110 | world_entities/weapons/bomb.h \ |
---|
[5463] | 111 | world_entities/weapons/crosshair.h \ |
---|
| 112 | world_entities/power_ups/power_up.h \ |
---|
| 113 | world_entities/power_ups/turret_power_up.h \ |
---|
| 114 | world_entities/power_ups/laser_power_up.h \ |
---|
[4556] | 115 | defs/stdincl.h \ |
---|
| 116 | defs/stdlibincl.h \ |
---|
| 117 | defs/sdlincl.h \ |
---|
| 118 | defs/glincl.h \ |
---|
| 119 | defs/alincl.h \ |
---|
| 120 | defs/comincl.h \ |
---|
| 121 | defs/confincl.h \ |
---|
| 122 | defs/error.h \ |
---|
| 123 | defs/debug.h \ |
---|
| 124 | defs/globals.h \ |
---|
| 125 | defs/compiler.h \ |
---|
[4745] | 126 | defs/class_id.h \ |
---|
[5133] | 127 | defs/functor_list.h \ |
---|
[4556] | 128 | subprojects/benchmark.h |
---|
[2589] | 129 | |
---|
[4028] | 130 | |
---|
[3198] | 131 | ## orxonox.conf will be used from home-dir instead. |
---|
[4261] | 132 | EXTRA_DIST = proto/proto_class.h \ |
---|
[4556] | 133 | proto/proto_class.cc \ |
---|
| 134 | proto/proto_singleton.h \ |
---|
| 135 | proto/proto_singleton.cc \ |
---|
| 136 | proto/proto_world_entity.h \ |
---|
| 137 | proto/proto_world_entity.cc \ |
---|
| 138 | defs/include_paths.am |
---|
| 139 | |
---|
[3377] | 140 | if SUB_PROJECTS |
---|
[4264] | 141 | SUB_PROGS = subprojects |
---|
[3377] | 142 | else |
---|
[4556] | 143 | SUB_PROGS = |
---|
[3377] | 144 | endif |
---|
[3182] | 145 | |
---|
[5349] | 146 | SUBDIRS = lib \ |
---|
[5350] | 147 | util \ |
---|
[5558] | 148 | . \ |
---|
| 149 | $(SUB_PROGS) |
---|
[3191] | 150 | |
---|
[1953] | 151 | |
---|
| 152 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
| 153 | |
---|
| 154 | # if you write a self-test script named `chk', uncomment the |
---|
| 155 | # following and add `chk' to the EXTRA_DIST list |
---|
| 156 | #TESTS=chk |
---|
| 157 | |
---|
| 158 | # build and install the .info pages |
---|
| 159 | #info_TEXINFOS = orxonox.texinfo |
---|
| 160 | #orxonox_TEXINFOS = gpl.texinfo |
---|
| 161 | |
---|
| 162 | # install the man pages |
---|
| 163 | #man_MANS=orxonox.1 |
---|