Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/shared_lib/src/world_entities/Makefile.am @ 7179

Last change on this file since 7179 was 7179, checked in by bensch, 18 years ago

testing

File size: 3.5 KB
Line 
1MAINSRCDIR=..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4noinst_LIBRARIES = libORXwe.a
5
6## TODO ::
7WRONG_SORTED_SOURCES_ = space_ships/space_ship.cc
8
9
10## THESE ARE THE BASE CLASSES OF ALL WORLD_ENTITIES
11libORXwe_a_SOURCES = \
12                world_entity.cc \
13                \
14                camera.cc \
15                playable.cc \
16                player.cc \
17                \
18                npcs/npc.cc \
19                \
20                weapons/weapon_manager.cc \
21                weapons/crosshair.cc \
22                weapons/weapon.cc \
23                weapons/ammo_container.cc \
24                projectiles/projectile.cc \
25                \
26                power_ups/power_up.cc \
27                power_ups/param_power_up.cc \
28                power_ups/weapon_power_up.cc \
29                \
30                spawning_point.cc \
31                \
32                skybox.cc \
33                terrain.cc \
34                \
35                elements/image_entity.cc \
36                elements/text_element.cc \
37                \
38                effects/explosion.cc \
39                \
40                $(WRONG_SORTED_SOURCES_)
41
42LD_FLAGS = --export-dynamic
43
44pkglib_LTLIBRARIES = \
45                libORXplayables.la \
46                libORXweapons.la \
47                libORXprojectiles.la \
48                libORXpower_ups.la \
49                \
50                libORXenvironmentals.la \
51                \
52                libORXnpcs.la \
53                \
54                libORXmisc_entities.la
55
56libORXnpcs_la_SOURCES = \
57                npcs/ground_turret.cc \
58                npcs/npc_test.cc \
59                npcs/npc_test1.cc
60
61
62#libORXnpcs_ground_la_SOURCES = \
63                npcs/ground_turret.cc
64
65#libORXnpcs_air_la_SOURCES = \
66                npcs/npc_test.cc \
67                npcs/npc_test1.cc
68
69libORXenvironmentals_la_SOURCES = \
70                environment.cc \
71                skysphere.cc \
72                satellite.cc \
73                character_attributes.cc \
74                test_entity.cc \
75                planet.cc \
76                environments/water.cc \
77                environments/model_entity.cc \
78                environments/building.cc \
79                \
80                movie_entity.cc \
81                recorder.cc
82
83libORXweapons_la_SOURCES = \
84                weapons/turret.cc \
85                weapons/aiming_turret.cc \
86                weapons/targeting_turret.cc \
87                weapons/cannon.cc \
88                weapons/hyperblaster.cc \
89                weapons/aim.cc\
90                weapons/test_gun.cc
91
92libORXprojectiles_la_SOURCES = \
93                projectiles/bomb.cc \
94                projectiles/laser.cc \
95                projectiles/test_bullet.cc \
96                projectiles/rocket.cc \
97                projectiles/guided_missile.cc \
98                projectiles/hyperblast.cc
99
100libORXpower_ups_la_SOURCES = \
101                power_ups/turret_power_up.cc \
102                power_ups/laser_power_up.cc
103
104libORXplayables_la_SOURCES = \
105                space_ships/helicopter.cc \
106                space_ships/hover.cc \
107                space_ships/turbine_hover.cc \
108                creatures/md2_creature.cc
109
110libORXmisc_entities_la_SOURCES = \
111                \
112                effects/lightning_bolt.cc
113
114
115noinst_HEADERS  = \
116                world_entity.h \
117                \
118                camera.h \
119                extendable.h \
120                playable.h \
121                player.h \
122                \
123                npcs/npc.h \
124                \
125                weapons/weapon_manager.h \
126                weapons/crosshair.h \
127                weapons/weapon.h \
128                weapons/ammo_container.h \
129                projectiles/projectile.h \
130                \
131                power_ups/power_up.h \
132                power_ups/param_power_up.h \
133                power_ups/weapon_power_up.h \
134                \
135                spawning_point.h \
136                \
137                \
138                effects/explosion.h \
139                \
140                \
141                \
142                npcs/npc_test.h \
143                npcs/npc_test1.h \
144                npcs/ground_turret.h \
145                environment.h \
146                skysphere.h \
147                skybox.h \
148                terrain.h \
149                satellite.h \
150                movie_entity.h \
151                recorder.h \
152                character_attributes.h \
153                test_entity.h \
154                planet.h \
155                \
156                weapons/test_gun.h \
157                weapons/cannon.h \
158                weapons/hyperblaster.h \
159                weapons/turret.h \
160                weapons/aiming_turret.h \
161                weapons/targeting_turret.h \
162                weapons/aim.h \
163                \
164                projectiles/bomb.h \
165                projectiles/laser.h \
166                projectiles/test_bullet.h \
167                projectiles/rocket.h \
168                projectiles/guided_missile.h \
169                projectiles/hyperblast.h \
170                \
171                power_ups/turret_power_up.h \
172                power_ups/laser_power_up.h \
173                \
174                space_ships/space_ship.h \
175                space_ships/helicopter.h \
176                space_ships/hover.h \
177                space_ships/turbine_hover.h \
178                creatures/md2_creature.h \
179                \
180                environments/water.h \
181                environments/model_entity.h \
182                environments/building.h \
183                elements/image_entity.h \
184                elements/text_element.h \
185                \
186                effects/lightning_bolt.h
187
Note: See TracBrowser for help on using the repository browser.