Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/Makefile.am @ 4967

Last change on this file since 4967 was 4963, checked in by bensch, 19 years ago

orxonox/trunk: added class turret, a subclass for turrets, this is not finished yet, but will be in some time from now…

File size: 7.1 KB
RevLine 
[3486]1MAINSRCDIR=.
[4428]2include $(MAINSRCDIR)/defs/include_paths.am
[3472]3
[3484]4
[1953]5#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
6
[1955]7
[4556]8bin_PROGRAMS = orxonox
[1953]9
[4725]10orxonox_CPPFLAGS = -DIS_ORXONOX
11
[4428]12orxonox_DEPENDENCIES = lib/gui/libORXgui.a \
[4564]13                       lib/graphics/importer/libORXimporter.a \
[4556]14                       lib/sound/libORXsound.a \
15                       lib/event/libORXevent.a \
16                       lib/physics/libORXphysics.a \
17                       lib/particles/libORXparticles.a \
18                       lib/collision_detection/libORXcd.a \
[4853]19                       lib/graphics/spatial_separation/libORXquadtree.a \
[4643]20                       lib/tinyxml/libtinyxml.a
[4338]21
[4428]22orxonox_LDADD = lib/gui/libORXgui.a \
[4564]23                lib/graphics/importer/libORXimporter.a \
[4556]24                lib/sound/libORXsound.a \
25                lib/event/libORXevent.a \
26                lib/physics/libORXphysics.a \
27                lib/particles/libORXparticles.a \
28                lib/collision_detection/libORXcd.a \
[4843]29                lib/graphics/spatial_separation/libORXquadtree.a \
[4270]30                lib/tinyxml/libtinyxml.a \
[4261]31                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
32
[4338]33
[4556]34orxonox_SOURCES = orxonox.cc \
35                  util/loading/game_loader.cc \
36                  util/track/track_manager.cc \
37                  util/track/track_node.cc \
38                  util/track/pilot_node.cc \
39                  util/animation/animation.cc \
40                  util/animation/animation3d.cc \
41                  util/animation/animation_player.cc \
42                  util/object_manager.cc \
[4940]43                  util/fast_factory.cc \
[4556]44                  util/garbage_collector.cc \
45                  util/resource_manager.cc \
46                  util/loading/factory.cc \
47                  util/loading/load_param.cc \
48                  util/state.cc \
49                  story_entities/story_entity.cc \
50                  story_entities/campaign.cc \
51                  story_entities/world.cc \
52                  world_entities/world_entity.cc \
53                  world_entities/camera.cc \
54                  world_entities/player.cc \
55                  world_entities/environment.cc \
56                  world_entities/skysphere.cc \
57                  world_entities/skybox.cc \
58                  world_entities/terrain.cc \
59                  world_entities/satellite.cc \
60                  world_entities/character_attributes.cc \
61                  world_entities/test_entity.cc \
[4826]62                  world_entities/weapons/weapon_manager.cc \
[4758]63                  world_entities/weapons/weapon.cc \
64                  world_entities/weapons/projectile.cc \
65                  world_entities/weapons/test_gun.cc \
[4963]66                  world_entities/weapons/turret.cc \
[4758]67                  world_entities/weapons/test_bullet.cc \
[4779]68                  world_entities/weapons/crosshair.cc \
[4556]69                  lib/coord/p_node.cc \
70                  lib/coord/null_parent.cc \
71                  lib/graphics/graphics_engine.cc \
72                  lib/graphics/light.cc \
73                  lib/graphics/text_engine.cc \
[4839]74                  lib/graphics/render2D/element_2d.cc \
75                  lib/graphics/render2D/render_2d.cc \
[4556]76                  lib/lang/base_object.cc \
[4758]77                  lib/lang/class_list.cc \
[4556]78                  lib/util/ini_parser.cc \
79                  lib/util/substring.cc \
80                  lib/math/vector.cc \
81                  lib/math/curve.cc \
82                  glmenu/glmenu_imagescreen.cc \
83                  subprojects/benchmark.cc
[4039]84
[3481]85noinst_HEADERS = orxonox.h \
86                 ability.h \
[4556]87                 defs/message_structures.h \
88                 util/loading/game_loader.h \
89                 util/track/track_manager.h \
90                 util/track/track_node.h \
91                 util/track/pilot_node.h \
92                 util/animation/animation.h \
93                 util/animation/t_animation.h \
94                 util/animation/animation3d.h \
95                 util/animation/animation_player.h \
96                 util/object_manager.h \
[4940]97                 util/fast_factory.h \
[4556]98                 util/garbage_collector.h \
99                 util/state.h \
100                 util/resource_manager.h \
101                 util/loading/factory.h \
102                 util/loading/load_param.h \
103                 story_entities/story_entity.h \
104                 story_entities/story_def.h \
105                 story_entities/campaign.h \
106                 story_entities/world.h \
107                 world_entities/world_entity.h \
108                 world_entities/camera.h \
109                 world_entities/player.h \
110                 world_entities/npc.h \
111                 world_entities/environment.h \
112                 world_entities/skysphere.h \
113                 world_entities/skybox.h \
114                 world_entities/power_up.h \
115                 world_entities/terrain.h \
116                 world_entities/satellite.h \
117                 world_entities/character_attributes.h \
118                 world_entities/test_entity.h \
[4826]119                 world_entities/weapons/weapon_manager.h \
[4758]120                 world_entities/weapons/weapon.h \
121                 world_entities/weapons/projectile.h \
122                 world_entities/weapons/test_gun.h \
[4963]123                 world_entities/weapons/turret.h \
[4758]124                 world_entities/weapons/test_bullet.h \
[4779]125                 world_entities/weapons/crosshair.h \
[4556]126                 defs/stdincl.h \
127                 defs/stdlibincl.h \
128                 defs/sdlincl.h \
129                 defs/glincl.h \
130                 defs/alincl.h \
131                 defs/comincl.h \
132                 defs/confincl.h \
133                 defs/error.h \
134                 defs/debug.h \
135                 defs/globals.h \
136                 defs/compiler.h \
[4745]137                 defs/class_id.h \
[4556]138                 lib/coord/p_node.h \
139                 lib/coord/null_parent.h \
140                 lib/graphics/graphics_engine.h \
141                 lib/graphics/light.h \
142                 lib/graphics/text_engine.h \
143                 lib/lang/base_object.h \
[4839]144                 lib/graphics/render2D/element_2d.h \
145                 lib/graphics/render2D/render_2d.h \
[4743]146                 lib/lang/class_list.h \
[4556]147                 lib/util/ini_parser.h \
148                 lib/util/substring.h \
149                 lib/util/list.h \
150                 lib/math/vector.h \
151                 lib/math/curve.h \
152                 glmenu/glmenu_imagescreen.h \
153                 subprojects/benchmark.h
[2589]154
[4028]155
[3198]156## orxonox.conf will be used from home-dir instead.
[4261]157EXTRA_DIST = proto/proto_class.h \
[4556]158             proto/proto_class.cc \
159             proto/proto_singleton.h \
160             proto/proto_singleton.cc \
161             proto/proto_world_entity.h \
162             proto/proto_world_entity.cc \
163             defs/include_paths.am
164
[3377]165if SUB_PROJECTS
[4264]166  SUB_PROGS = subprojects
[3377]167else
[4556]168  SUB_PROGS =
[3377]169endif
[3182]170
[4730]171SUBDIRS = lib . $(SUB_PROGS)
[3191]172
[1953]173
174#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
175
176#  if you write a self-test script named `chk', uncomment the
177#  following and add `chk' to the EXTRA_DIST list
178#TESTS=chk
179
180#  build and install the .info pages
181#info_TEXINFOS = orxonox.texinfo
182#orxonox_TEXINFOS = gpl.texinfo
183
184#  install the man pages
185#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.