Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/powerups/src/Makefile.am @ 5965

Last change on this file since 5965 was 5965, checked in by manuel, 18 years ago

many changes:
created generic weapon_power_up that can contain any kind of weapon
space_ship is now extendable and can pickup weapon_power_ups

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