Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: reverted to old revision 5409, removing the LIBTOOL-stuff with command:
svn merge . . -r HEAD:5409

Reason:
Timing:
Default:


real 1m1.111s
user 1m31.534s
sys 0m6.903s

LIBTOOL:


real 2m21.384s
user 3m12.141s
sys 0m36.896s

→ compileTime doubled

File size: 5.2 KB
RevLine 
[3486]1MAINSRCDIR=.
[4428]2include $(MAINSRCDIR)/defs/include_paths.am
[3472]3
[3484]4
[1953]5#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
6
[1955]7
[4556]8bin_PROGRAMS = orxonox
[1953]9
[4725]10orxonox_CPPFLAGS = -DIS_ORXONOX
11
[5413]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
[4338]26
[5413]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 \
[5265]41                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
[4261]42
[4556]43orxonox_SOURCES = orxonox.cc \
[5010]44                  story_entities/story_entity.cc \
[4556]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 \
[4976]50                  world_entities/npc.cc \
[5266]51                  world_entities/npc2.cc \
[4556]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 \
[4826]59                  world_entities/weapons/weapon_manager.cc \
[4758]60                  world_entities/weapons/weapon.cc \
61                  world_entities/weapons/projectile.cc \
62                  world_entities/weapons/test_gun.cc \
[4963]63                  world_entities/weapons/turret.cc \
[4758]64                  world_entities/weapons/test_bullet.cc \
[4779]65                  world_entities/weapons/crosshair.cc \
[4556]66                  subprojects/benchmark.cc
[4039]67
[3481]68noinst_HEADERS = orxonox.h \
69                 ability.h \
[4556]70                 defs/message_structures.h \
71                 story_entities/story_entity.h \
72                 story_entities/story_def.h \
73                 story_entities/campaign.h \
74                 story_entities/world.h \
75                 world_entities/world_entity.h \
76                 world_entities/camera.h \
77                 world_entities/player.h \
78                 world_entities/npc.h \
[5266]79                 world_entities/npc2.h \
[4556]80                 world_entities/environment.h \
81                 world_entities/skysphere.h \
82                 world_entities/skybox.h \
83                 world_entities/power_up.h \
84                 world_entities/terrain.h \
85                 world_entities/satellite.h \
86                 world_entities/character_attributes.h \
87                 world_entities/test_entity.h \
[4826]88                 world_entities/weapons/weapon_manager.h \
[4758]89                 world_entities/weapons/weapon.h \
90                 world_entities/weapons/projectile.h \
91                 world_entities/weapons/test_gun.h \
[4963]92                 world_entities/weapons/turret.h \
[4758]93                 world_entities/weapons/test_bullet.h \
[4779]94                 world_entities/weapons/crosshair.h \
[4556]95                 defs/stdincl.h \
96                 defs/stdlibincl.h \
97                 defs/sdlincl.h \
98                 defs/glincl.h \
99                 defs/alincl.h \
100                 defs/comincl.h \
101                 defs/confincl.h \
102                 defs/error.h \
103                 defs/debug.h \
104                 defs/globals.h \
105                 defs/compiler.h \
[4745]106                 defs/class_id.h \
[5133]107                 defs/functor_list.h \
[4556]108                 subprojects/benchmark.h
[2589]109
[4028]110
[3198]111## orxonox.conf will be used from home-dir instead.
[4261]112EXTRA_DIST = proto/proto_class.h \
[4556]113             proto/proto_class.cc \
114             proto/proto_singleton.h \
115             proto/proto_singleton.cc \
116             proto/proto_world_entity.h \
117             proto/proto_world_entity.cc \
118             defs/include_paths.am
119
[3377]120if SUB_PROJECTS
[4264]121  SUB_PROGS = subprojects
[3377]122else
[4556]123  SUB_PROGS =
[3377]124endif
[3182]125
[5349]126SUBDIRS = lib \
[5350]127          util \
[5349]128          $(SUB_PROGS) \
129          .
[3191]130
[1953]131
132#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
133
134#  if you write a self-test script named `chk', uncomment the
135#  following and add `chk' to the EXTRA_DIST list
136#TESTS=chk
137
138#  build and install the .info pages
139#info_TEXINFOS = orxonox.texinfo
140#orxonox_TEXINFOS = gpl.texinfo
141
142#  install the man pages
143#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.