Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 7269 was 7269, checked in by bensch, 19 years ago

creating and linking ltdl… hmm.. lets see if this works

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