Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/Makefile.am @ 6404

Last change on this file since 6404 was 6404, checked in by patrick, 18 years ago

network: working on the last steps, completion is in reach. sadly the world isn't loaded anymore at the moment. continue work later. work flush

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