Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 5593 was 5593, checked in by stefalie, 18 years ago

WorldEntities: Added bomb

File size: 6.1 KB
Line 
1MAINSRCDIR=.
2include $(MAINSRCDIR)/defs/include_paths.am
3
4
5#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
6
7
8bin_PROGRAMS = orxonox
9
10orxonox_CPPFLAGS = -DIS_ORXONOX
11
12orxonox_DEPENDENCIES = lib/libORXlibs.a \
13                       util/libORXutils.a \
14                       lib/gui/gtk_gui/libORXgui.a \
15                       lib/graphics/importer/libORXimporter.a \
16                       lib/graphics/libORXgraphics.a \
17                       lib/sound/libORXsound.a \
18                       lib/event/libORXevent.a \
19                       lib/physics/libORXphysics.a \
20                       lib/particles/libORXparticles.a \
21                       lib/collision_detection/libORXcd.a \
22                       lib/graphics/spatial_separation/libORXquadtree.a \
23                       lib/tinyxml/libtinyxml.a \
24                       lib/gui/gl_gui/libORXglgui.a \
25                       lib/shell/libORXshell.a
26
27orxonox_LDADD = util/libORXutils.a \
28                lib/libORXlibs.a \
29                lib/gui/gtk_gui/libORXgui.a \
30                lib/graphics/importer/libORXimporter.a \
31                lib/graphics/libORXgraphics.a \
32                lib/sound/libORXsound.a \
33                lib/event/libORXevent.a \
34                lib/physics/libORXphysics.a \
35                lib/particles/libORXparticles.a \
36                lib/collision_detection/libORXcd.a \
37                lib/graphics/spatial_separation/libORXquadtree.a \
38                lib/tinyxml/libtinyxml.a \
39                lib/gui/gl_gui/libORXglgui.a \
40                lib/shell/libORXshell.a \
41                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
42
43orxonox_SOURCES = orxonox.cc \
44                  story_entities/story_entity.cc \
45                  story_entities/campaign.cc \
46                  story_entities/world.cc \
47                  world_entities/world_entity.cc \
48                  world_entities/camera.cc \
49                  world_entities/player.cc \
50                  world_entities/npc.cc \
51                  world_entities/npc2.cc \
52                  world_entities/environment.cc \
53                  world_entities/skysphere.cc \
54                  world_entities/skybox.cc \
55                  world_entities/terrain.cc \
56                  world_entities/satellite.cc \
57                  world_entities/character_attributes.cc \
58                  world_entities/test_entity.cc \
59                  world_entities/weapons/weapon_manager.cc \
60                  world_entities/weapons/weapon.cc \
61                  world_entities/weapons/projectile.cc \
62                  world_entities/weapons/test_gun.cc \
63                  world_entities/weapons/turret.cc \
64                  world_entities/weapons/aiming_turret.cc \
65                  world_entities/weapons/test_bullet.cc \
66                  world_entities/weapons/rocket.cc \
67                  world_entities/weapons/laser.cc \
68                  world_entities/weapons/aim.cc \
69                  world_entities/weapons/bomb.cc \
70                  world_entities/weapons/crosshair.cc \
71                  world_entities/power_ups/power_up.cc \
72                  world_entities/power_ups/turret_power_up.cc \
73                  world_entities/power_ups/laser_power_up.cc \
74                  subprojects/benchmark.cc
75
76noinst_HEADERS = orxonox.h \
77                 ability.h \
78                 defs/message_structures.h \
79                 story_entities/story_entity.h \
80                 story_entities/story_def.h \
81                 story_entities/campaign.h \
82                 story_entities/world.h \
83                 world_entities/world_entity.h \
84                 world_entities/camera.h \
85                 world_entities/player.h \
86                 world_entities/npc.h \
87                 world_entities/npc2.h \
88                 world_entities/environment.h \
89                 world_entities/skysphere.h \
90                 world_entities/skybox.h \
91                 world_entities/terrain.h \
92                 world_entities/satellite.h \
93                 world_entities/character_attributes.h \
94                 world_entities/test_entity.h \
95                 world_entities/weapons/weapon_manager.h \
96                 world_entities/weapons/weapon.h \
97                 world_entities/weapons/projectile.h \
98                 world_entities/weapons/test_gun.h \
99                 world_entities/weapons/turret.h \
100                 world_entities/weapons/aiming_turret.h \
101                 world_entities/weapons/test_bullet.h \
102                 world_entities/weapons/rocket.h \
103                 world_entities/weapons/laser.h \
104                 world_entities/weapons/aim.h \
105                 world_entities/weapons/bomb.h \
106                 world_entities/weapons/crosshair.h \
107                 world_entities/power_ups/power_up.h \
108                 world_entities/power_ups/turret_power_up.h \
109                 world_entities/power_ups/laser_power_up.h \
110                 defs/stdincl.h \
111                 defs/stdlibincl.h \
112                 defs/sdlincl.h \
113                 defs/glincl.h \
114                 defs/alincl.h \
115                 defs/comincl.h \
116                 defs/confincl.h \
117                 defs/error.h \
118                 defs/debug.h \
119                 defs/globals.h \
120                 defs/compiler.h \
121                 defs/class_id.h \
122                 defs/functor_list.h \
123                 subprojects/benchmark.h
124
125
126## orxonox.conf will be used from home-dir instead.
127EXTRA_DIST = proto/proto_class.h \
128             proto/proto_class.cc \
129             proto/proto_singleton.h \
130             proto/proto_singleton.cc \
131             proto/proto_world_entity.h \
132             proto/proto_world_entity.cc \
133             defs/include_paths.am
134
135if SUB_PROJECTS
136  SUB_PROGS = subprojects
137else
138  SUB_PROGS =
139endif
140
141SUBDIRS = lib \
142          util \
143          . \
144          $(SUB_PROGS)
145
146
147#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
148
149#  if you write a self-test script named `chk', uncomment the
150#  following and add `chk' to the EXTRA_DIST list
151#TESTS=chk
152
153#  build and install the .info pages
154#info_TEXINFOS = orxonox.texinfo
155#orxonox_TEXINFOS = gpl.texinfo
156
157#  install the man pages
158#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.