Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

sync

File size: 3.4 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                libORXground_turret.la \
53                \
54                libORXmisc_entities.la
55
56
57libORXplayables_la_SOURCES = \
58                space_ships/helicopter.cc \
59                space_ships/hover.cc \
60                space_ships/turbine_hover.cc \
61                creatures/md2_creature.cc
62
63libORXweapons_la_SOURCES = \
64                weapons/turret.cc \
65                weapons/aiming_turret.cc \
66                weapons/targeting_turret.cc \
67                weapons/cannon.cc \
68                weapons/hyperblaster.cc \
69                weapons/aim.cc\
70                weapons/test_gun.cc
71
72libORXprojectiles_la_SOURCES = \
73                projectiles/bomb.cc \
74                projectiles/laser.cc \
75                projectiles/test_bullet.cc \
76                projectiles/rocket.cc \
77                projectiles/guided_missile.cc \
78                projectiles/hyperblast.cc
79
80libORXpower_ups_la_SOURCES = \
81                power_ups/turret_power_up.cc \
82                power_ups/laser_power_up.cc
83
84
85libORXground_turret_la_SOURCES = \
86                npcs/ground_turret.cc
87#               npcs/npc_test.cc \
88                npcs/npc_test1.cc
89
90libORXenvironmentals_la_SOURCES = \
91                environment.cc \
92                skysphere.cc \
93                satellite.cc \
94                character_attributes.cc \
95                test_entity.cc \
96                planet.cc \
97                environments/water.cc \
98                environments/model_entity.cc \
99                environments/building.cc \
100                \
101                movie_entity.cc \
102                recorder.cc
103
104
105libORXmisc_entities_la_SOURCES = \
106                \
107                effects/lightning_bolt.cc
108
109
110noinst_HEADERS  = \
111                world_entity.h \
112                \
113                camera.h \
114                extendable.h \
115                playable.h \
116                player.h \
117                \
118                npcs/npc.h \
119                \
120                weapons/weapon_manager.h \
121                weapons/crosshair.h \
122                weapons/weapon.h \
123                weapons/ammo_container.h \
124                projectiles/projectile.h \
125                \
126                power_ups/power_up.h \
127                power_ups/param_power_up.h \
128                power_ups/weapon_power_up.h \
129                \
130                spawning_point.h \
131                \
132                \
133                effects/explosion.h \
134                \
135                \
136                \
137                npcs/npc_test.h \
138                npcs/npc_test1.h \
139                npcs/ground_turret.h \
140                environment.h \
141                skysphere.h \
142                skybox.h \
143                terrain.h \
144                satellite.h \
145                movie_entity.h \
146                recorder.h \
147                character_attributes.h \
148                test_entity.h \
149                planet.h \
150                \
151                weapons/test_gun.h \
152                weapons/cannon.h \
153                weapons/hyperblaster.h \
154                weapons/turret.h \
155                weapons/aiming_turret.h \
156                weapons/targeting_turret.h \
157                weapons/aim.h \
158                \
159                projectiles/bomb.h \
160                projectiles/laser.h \
161                projectiles/test_bullet.h \
162                projectiles/rocket.h \
163                projectiles/guided_missile.h \
164                projectiles/hyperblast.h \
165                \
166                power_ups/turret_power_up.h \
167                power_ups/laser_power_up.h \
168                \
169                space_ships/space_ship.h \
170                space_ships/helicopter.h \
171                space_ships/hover.h \
172                space_ships/turbine_hover.h \
173                creatures/md2_creature.h \
174                \
175                environments/water.h \
176                environments/model_entity.h \
177                environments/building.h \
178                elements/image_entity.h \
179                elements/text_element.h \
180                \
181                effects/lightning_bolt.h
182
Note: See TracBrowser for help on using the repository browser.