Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

shared_lib: some functionality

File size: 1.1 KB
Line 
1MAINSRCDIR=..
2include $(MAINSRCDIR)/defs/include_paths.am
3include WorldEntities.am
4
5noinst_LIBRARIES = libORXwe.a
6#lib_LTLIBRARIES = libORXground_turret.la
7#libORXground_turret_la_SOURCES = npcs/ground_turret.cc
8
9## THESE ARE THE BASE CLASSES OF ALL WORLD_ENTITIES
10libORXwe_a_SOURCES = \
11                world_entity.cc \
12                \
13                camera.cc \
14                playable.cc \
15                player.cc \
16                \
17                npcs/npc.cc \
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                \
32                effects/explosion.cc
33
34
35
36noinst_HEADERS  = \
37                world_entity.h \
38                \
39                camera.h \
40                extendable.h \
41                playable.h \
42                player.h \
43                \
44                npcs/npc.h \
45                \
46                weapons/weapon_manager.h \
47                weapons/crosshair.h \
48                weapons/weapon.h \
49                weapons/ammo_container.h \
50                projectiles/projectile.h \
51                \
52                power_ups/power_up.h \
53                power_ups/param_power_up.h \
54                power_ups/weapon_power_up.h \
55                \
56                spawning_point.h \
57                \
58                \
59                effects/explosion.h \
60                \
61                $(WorldEntities_HEADERS_)
62
63
64EXTRA_DIST = WorldEntities.am
Note: See TracBrowser for help on using the repository browser.