Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/Makefile.am @ 5349

Last change on this file since 5349 was 5349, checked in by bensch, 19 years ago

orxonox/trunk: build everything in src/lib as a libORXlibs.a

File size: 6.4 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                       lib/gui/gtk_gui/libORXgui.a \
14                       lib/gui/gl_gui/libORXglgui.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/shell/libORXshell.a
25
26orxonox_LDADD = lib/libORXlibs.a \
27                lib/gui/gtk_gui/libORXgui.a \
28                lib/gui/gl_gui/libORXglgui.a \
29                lib/graphics/importer/libORXimporter.a \
30                lib/graphics/libORXgraphics.a \
31                lib/sound/libORXsound.a \
32                lib/event/libORXevent.a \
33                lib/physics/libORXphysics.a \
34                lib/particles/libORXparticles.a \
35                lib/collision_detection/libORXcd.a \
36                lib/graphics/spatial_separation/libORXquadtree.a \
37                lib/tinyxml/libtinyxml.a \
38                lib/shell/libORXshell.a \
39                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
40
41orxonox_SOURCES = orxonox.cc \
42                  util/loading/game_loader.cc \
43                  util/track/track_manager.cc \
44                  util/track/track_node.cc \
45                  util/track/pilot_node.cc \
46                  util/animation/animation.cc \
47                  util/animation/animation3d.cc \
48                  util/animation/animation_player.cc \
49                  util/fast_factory.cc \
50                  util/garbage_collector.cc \
51                  util/resource_manager.cc \
52                  util/loading/factory.cc \
53                  util/loading/load_param.cc \
54                  util/state.cc \
55                  util/user_control.cc \
56                  story_entities/story_entity.cc \
57                  story_entities/campaign.cc \
58                  story_entities/world.cc \
59                  world_entities/world_entity.cc \
60                  world_entities/camera.cc \
61                  world_entities/player.cc \
62                  world_entities/npc.cc \
63                  world_entities/npc2.cc \
64                  world_entities/environment.cc \
65                  world_entities/skysphere.cc \
66                  world_entities/skybox.cc \
67                  world_entities/terrain.cc \
68                  world_entities/satellite.cc \
69                  world_entities/character_attributes.cc \
70                  world_entities/test_entity.cc \
71                  world_entities/weapons/weapon_manager.cc \
72                  world_entities/weapons/weapon.cc \
73                  world_entities/weapons/projectile.cc \
74                  world_entities/weapons/test_gun.cc \
75                  world_entities/weapons/turret.cc \
76                  world_entities/weapons/test_bullet.cc \
77                  world_entities/weapons/crosshair.cc \
78                  subprojects/benchmark.cc
79
80noinst_HEADERS = orxonox.h \
81                 ability.h \
82                 defs/message_structures.h \
83                 util/loading/game_loader.h \
84                 util/track/track_manager.h \
85                 util/track/track_node.h \
86                 util/track/pilot_node.h \
87                 util/animation/animation.h \
88                 util/animation/t_animation.h \
89                 util/animation/animation3d.h \
90                 util/animation/animation_player.h \
91                 util/fast_factory.h \
92                 util/garbage_collector.h \
93                 util/state.h \
94                 util/user_control.h \
95                 util/resource_manager.h \
96                 util/loading/factory.h \
97                 util/loading/load_param.h \
98                 story_entities/story_entity.h \
99                 story_entities/story_def.h \
100                 story_entities/campaign.h \
101                 story_entities/world.h \
102                 world_entities/world_entity.h \
103                 world_entities/camera.h \
104                 world_entities/player.h \
105                 world_entities/npc.h \
106                 world_entities/npc2.h \
107                 world_entities/environment.h \
108                 world_entities/skysphere.h \
109                 world_entities/skybox.h \
110                 world_entities/power_up.h \
111                 world_entities/terrain.h \
112                 world_entities/satellite.h \
113                 world_entities/character_attributes.h \
114                 world_entities/test_entity.h \
115                 world_entities/weapons/weapon_manager.h \
116                 world_entities/weapons/weapon.h \
117                 world_entities/weapons/projectile.h \
118                 world_entities/weapons/test_gun.h \
119                 world_entities/weapons/turret.h \
120                 world_entities/weapons/test_bullet.h \
121                 world_entities/weapons/crosshair.h \
122                 defs/stdincl.h \
123                 defs/stdlibincl.h \
124                 defs/sdlincl.h \
125                 defs/glincl.h \
126                 defs/alincl.h \
127                 defs/comincl.h \
128                 defs/confincl.h \
129                 defs/error.h \
130                 defs/debug.h \
131                 defs/globals.h \
132                 defs/compiler.h \
133                 defs/class_id.h \
134                 defs/functor_list.h \
135                 subprojects/benchmark.h
136
137
138## orxonox.conf will be used from home-dir instead.
139EXTRA_DIST = proto/proto_class.h \
140             proto/proto_class.cc \
141             proto/proto_singleton.h \
142             proto/proto_singleton.cc \
143             proto/proto_world_entity.h \
144             proto/proto_world_entity.cc \
145             defs/include_paths.am
146
147if SUB_PROJECTS
148  SUB_PROGS = subprojects
149else
150  SUB_PROGS =
151endif
152
153SUBDIRS = lib \
154          $(SUB_PROGS) \
155          .
156
157
158#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
159
160#  if you write a self-test script named `chk', uncomment the
161#  following and add `chk' to the EXTRA_DIST list
162#TESTS=chk
163
164#  build and install the .info pages
165#info_TEXINFOS = orxonox.texinfo
166#orxonox_TEXINFOS = gpl.texinfo
167
168#  install the man pages
169#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.