Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/preferences/src/Makefile.am @ 6398

Last change on this file since 6398 was 6393, checked in by rennerc, 19 years ago

added libargp to orxonox

File size: 7.7 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
[5463]12orxonox_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 \
[5944]23                       lib/parser/tinyxml/libtinyxml.a \
24                       lib/parser/ini_parser/libIniParser.a \
[6390]25                       lib/parser/preferences/libPrefsParser.a \
[5463]26                       lib/gui/gl_gui/libORXglgui.a \
[5996]27                       lib/shell/libORXshell.a \
[6393]28                       lib/network/libORXnet.a \
29                       lib/argp/libargp.a
[4338]30
[5463]31orxonox_LDADD = util/libORXutils.a \
[5674]32                lib/collision_detection/libORXcd.a \
[5463]33                lib/libORXlibs.a \
34                lib/gui/gtk_gui/libORXgui.a \
35                lib/graphics/importer/libORXimporter.a \
36                lib/graphics/libORXgraphics.a \
37                lib/sound/libORXsound.a \
38                lib/event/libORXevent.a \
39                lib/physics/libORXphysics.a \
40                lib/particles/libORXparticles.a \
41                lib/graphics/spatial_separation/libORXquadtree.a \
[5944]42                lib/parser/tinyxml/libtinyxml.a \
43                lib/parser/ini_parser/libIniParser.a \
[6383]44                lib/parser/preferences/libPrefsParser.a \
[5463]45                lib/gui/gl_gui/libORXglgui.a \
46                lib/shell/libORXshell.a \
[5996]47                lib/network/libORXnet.a \
[6393]48                lib/argp/libargp.a \
49                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
[4261]50
[4556]51orxonox_SOURCES = orxonox.cc \
[5010]52                  story_entities/story_entity.cc \
[4556]53                  story_entities/campaign.cc \
54                  story_entities/world.cc \
[6139]55                  story_entities/network_world.cc \
[5463]56                  world_entities/world_entity.cc \
57                  world_entities/camera.cc \
[5915]58                  world_entities/playable.cc \
[5463]59                  world_entities/player.cc \
[5750]60                  world_entities/npcs/npc.cc \
61                  world_entities/npcs/npc_test1.cc \
62                  world_entities/npcs/npc_test.cc \
[5463]63                  world_entities/environment.cc \
64                  world_entities/skysphere.cc \
65                  world_entities/skybox.cc \
66                  world_entities/terrain.cc \
67                  world_entities/satellite.cc \
68                  world_entities/character_attributes.cc \
69                  world_entities/test_entity.cc \
70                  world_entities/weapons/weapon_manager.cc \
71                  world_entities/weapons/weapon.cc \
72                  world_entities/weapons/projectile.cc \
73                  world_entities/weapons/test_gun.cc \
74                  world_entities/weapons/turret.cc \
[5750]75                  world_entities/weapons/ground_turret.cc \
76                  world_entities/weapons/aiming_turret.cc \
77                  world_entities/weapons/cannon.cc \
[5463]78                  world_entities/weapons/test_bullet.cc \
79                  world_entities/weapons/rocket.cc \
[5766]80                  world_entities/weapons/guided_missile.cc \
[5463]81                  world_entities/weapons/laser.cc \
[5556]82                  world_entities/weapons/aim.cc \
[5750]83                  world_entities/weapons/bomb.cc \
[5463]84                  world_entities/weapons/crosshair.cc \
85                  world_entities/power_ups/power_up.cc \
86                  world_entities/power_ups/turret_power_up.cc \
87                  world_entities/power_ups/laser_power_up.cc \
[6113]88                  world_entities/power_ups/weapon_power_up.cc \
89                  world_entities/power_ups/param_power_up.cc \
[5915]90                  world_entities/space_ships/space_ship.cc \
[6002]91                  world_entities/space_ships/helicopter.cc \
[6222]92                  world_entities/creatures/md2_creature.cc \
[6139]93                  world_entities/spawning_point.cc \
[4556]94                  subprojects/benchmark.cc
[4039]95
[3481]96noinst_HEADERS = orxonox.h \
97                 ability.h \
[4556]98                 defs/message_structures.h \
99                 story_entities/story_entity.h \
100                 story_entities/story_def.h \
101                 story_entities/campaign.h \
[5463]102                 story_entities/world.h \
[6139]103                 story_entities/network_world.h \
[5463]104                 world_entities/world_entity.h \
105                 world_entities/camera.h \
[6113]106                 world_entities/extendable.h \
[5915]107                 world_entities/playable.h \
[5463]108                 world_entities/player.h \
[5750]109                 world_entities/npcs/npc.h \
110                 world_entities/npcs/npc_test.h \
111                 world_entities/npcs/npc_test1.h \
[5463]112                 world_entities/environment.h \
113                 world_entities/skysphere.h \
114                 world_entities/skybox.h \
115                 world_entities/terrain.h \
116                 world_entities/satellite.h \
117                 world_entities/character_attributes.h \
118                 world_entities/test_entity.h \
119                 world_entities/weapons/weapon_manager.h \
120                 world_entities/weapons/weapon.h \
121                 world_entities/weapons/projectile.h \
122                 world_entities/weapons/test_gun.h \
[5750]123                 world_entities/weapons/cannon.h \
[5463]124                 world_entities/weapons/turret.h \
[5750]125                 world_entities/weapons/aiming_turret.h \
[5463]126                 world_entities/weapons/test_bullet.h \
127                 world_entities/weapons/rocket.h \
[5766]128                 world_entities/weapons/guided_missile.h \
[5463]129                 world_entities/weapons/laser.h \
[5556]130                 world_entities/weapons/aim.h \
[5750]131                 world_entities/weapons/bomb.h \
[5463]132                 world_entities/weapons/crosshair.h \
133                 world_entities/power_ups/power_up.h \
134                 world_entities/power_ups/turret_power_up.h \
135                 world_entities/power_ups/laser_power_up.h \
[6113]136                 world_entities/power_ups/param_power_up.h \
137                 world_entities/power_ups/weapon_power_up.h \
[6002]138                 world_entities/space_ships/space_ship.h \
139                 world_entities/space_ships/helicopter.h \
[6222]140                 world_entities/creatures/md2_creature.h \
[6139]141                 world_entities/spawning_point.h \
[4556]142                 defs/stdincl.h \
143                 defs/stdlibincl.h \
144                 defs/sdlincl.h \
145                 defs/glincl.h \
146                 defs/alincl.h \
147                 defs/comincl.h \
148                 defs/confincl.h \
149                 defs/error.h \
150                 defs/debug.h \
151                 defs/globals.h \
152                 defs/compiler.h \
[4745]153                 defs/class_id.h \
[4556]154                 subprojects/benchmark.h
[2589]155
[4028]156
[3198]157## orxonox.conf will be used from home-dir instead.
[4261]158EXTRA_DIST = proto/proto_class.h \
[4556]159             proto/proto_class.cc \
160             proto/proto_singleton.h \
161             proto/proto_singleton.cc \
162             proto/proto_world_entity.h \
163             proto/proto_world_entity.cc \
164             defs/include_paths.am
165
[3377]166if SUB_PROJECTS
[4264]167  SUB_PROGS = subprojects
[3377]168else
[4556]169  SUB_PROGS =
[3377]170endif
[3182]171
[5349]172SUBDIRS = lib \
[5350]173          util \
[5549]174          . \
175          $(SUB_PROGS)
[3191]176
[1953]177
178#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
179
180#  if you write a self-test script named `chk', uncomment the
181#  following and add `chk' to the EXTRA_DIST list
182#TESTS=chk
183
184#  build and install the .info pages
185#info_TEXINFOS = orxonox.texinfo
186#orxonox_TEXINFOS = gpl.texinfo
187
188#  install the man pages
189#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.