Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/camera/src/world_entities/Makefile.am @ 10210

Last change on this file since 10210 was 10206, checked in by gfilip, 17 years ago

update

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