Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: now the process should really work

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