1 | MAINSRCDIR=.. |
---|
2 | include $(MAINSRCDIR)/defs/include_paths.am |
---|
3 | |
---|
4 | noinst_LIBRARIES = libORXwe.a |
---|
5 | |
---|
6 | ## TODO :: |
---|
7 | WRONG_SORTED_SOURCES_ = space_ships/space_ship.cc |
---|
8 | |
---|
9 | |
---|
10 | ## THESE ARE THE BASE CLASSES OF ALL WORLD_ENTITIES |
---|
11 | libORXwe_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 | |
---|
43 | AM_LDFLAGS = -no-undefined |
---|
44 | |
---|
45 | pkglib_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 | |
---|
58 | libORXplayables_la_SOURCES = \ |
---|
59 | space_ships/helicopter.cc \ |
---|
60 | space_ships/hover.cc \ |
---|
61 | space_ships/turbine_hover.cc \ |
---|
62 | creatures/md2_creature.cc |
---|
63 | |
---|
64 | libORXweapons_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 | |
---|
73 | libORXprojectiles_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 | |
---|
81 | libORXpower_ups_la_SOURCES = \ |
---|
82 | power_ups/turret_power_up.cc \ |
---|
83 | power_ups/laser_power_up.cc |
---|
84 | |
---|
85 | |
---|
86 | libORXnpcs_la_SOURCES = \ |
---|
87 | npcs/npc.cc \ |
---|
88 | npcs/ground_turret.cc \ |
---|
89 | npcs/npc_test.cc \ |
---|
90 | npcs/npc_test1.cc |
---|
91 | |
---|
92 | libORXenvironmentals_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 | |
---|
107 | libORXmisc_entities_la_SOURCES = \ |
---|
108 | \ |
---|
109 | effects/lightning_bolt.cc |
---|
110 | |
---|
111 | |
---|
112 | EXTRA_DIST = \ |
---|
113 | world_entity.am |
---|
114 | |
---|
115 | noinst_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 | |
---|