Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/Makefile.am @ 5563

Last change on this file since 5563 was 5563, checked in by hdavid, 18 years ago

orxonox/branches/network: removed temporary timex.h in benchmark.cc. Know it runs on UBUNTU.

File size: 5.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/network/libORXnet.a \
23                       lib/graphics/spatial_separation/libORXquadtree.a \
24                       lib/tinyxml/libtinyxml.a \
25                       lib/gui/gl_gui/libORXglgui.a \
26                       lib/shell/libORXshell.a
27
28orxonox_LDADD = util/libORXutils.a \
29                lib/libORXlibs.a \
30                lib/gui/gtk_gui/libORXgui.a \
31                lib/graphics/importer/libORXimporter.a \
32                lib/graphics/libORXgraphics.a \
33                lib/sound/libORXsound.a \
34                lib/event/libORXevent.a \
35                lib/physics/libORXphysics.a \
36                lib/particles/libORXparticles.a \
37                lib/collision_detection/libORXcd.a \
38                lib/network/libORXnet.a \
39                lib/graphics/spatial_separation/libORXquadtree.a \
40                lib/tinyxml/libtinyxml.a \
41                lib/gui/gl_gui/libORXglgui.a \
42                lib/shell/libORXshell.a \
43                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
44
45orxonox_SOURCES = orxonox.cc \
46                  story_entities/story_entity.cc \
47                  story_entities/campaign.cc \
48                  story_entities/world.cc \
49                  world_entities/world_entity.cc \
50                  world_entities/camera.cc \
51                  world_entities/player.cc \
52                  world_entities/npc.cc \
53                  world_entities/npc2.cc \
54                  world_entities/environment.cc \
55                  world_entities/skysphere.cc \
56                  world_entities/skybox.cc \
57                  world_entities/terrain.cc \
58                  world_entities/satellite.cc \
59                  world_entities/character_attributes.cc \
60                  world_entities/test_entity.cc \
61                  world_entities/weapons/weapon_manager.cc \
62                  world_entities/weapons/weapon.cc \
63                  world_entities/weapons/projectile.cc \
64                  world_entities/weapons/test_gun.cc \
65                  world_entities/weapons/turret.cc \
66                  world_entities/weapons/test_bullet.cc \
67                  world_entities/weapons/rocket.cc \
68                  world_entities/weapons/laser.cc \
69                  world_entities/weapons/crosshair.cc \
70                  world_entities/power_ups/power_up.cc \
71                  world_entities/power_ups/turret_power_up.cc \
72                  world_entities/power_ups/laser_power_up.cc
73                  subprojects/benchmark.cc
74
75noinst_HEADERS = orxonox.h ability.h defs/message_structures.h \
76                story_entities/story_entity.h story_entities/story_def.h story_entities/campaign.h \
77                story_entities/world.h world_entities/world_entity.h world_entities/camera.h \
78                world_entities/player.h world_entities/npc.h world_entities/npc2.h world_entities/environment.h \
79                world_entities/skysphere.h world_entities/skybox.h world_entities/terrain.h \
80                world_entities/satellite.h world_entities/character_attributes.h world_entities/test_entity.h \
81                world_entities/weapons/weapon_manager.h world_entities/weapons/weapon.h world_entities/weapons/projectile.h \
82                world_entities/weapons/test_gun.h world_entities/weapons/turret.h world_entities/weapons/test_bullet.h \
83                world_entities/weapons/rocket.h world_entities/weapons/laser.h world_entities/weapons/crosshair.h \
84                world_entities/power_ups/power_up.h world_entities/power_ups/turret_power_up.h \
85                world_entities/power_ups/laser_power_up.h defs/stdincl.h defs/stdlibincl.h defs/sdlincl.h defs/glincl.h \
86                defs/alincl.h defs/comincl.h defs/confincl.h defs/error.h defs/debug.h defs/globals.h \
87                defs/compiler.h defs/class_id.h defs/functor_list.h subprojects/benchmark.h \
88                network_socket.h network_socket.h
89
90
91## orxonox.conf will be used from home-dir instead.
92EXTRA_DIST = proto/proto_class.h \
93             proto/proto_class.cc \
94             proto/proto_singleton.h \
95             proto/proto_singleton.cc \
96             proto/proto_world_entity.h \
97             proto/proto_world_entity.cc \
98             defs/include_paths.am
99
100if SUB_PROJECTS
101  SUB_PROGS = subprojects
102else
103  SUB_PROGS =
104endif
105
106SUBDIRS = lib \
107          util \
108          $(SUB_PROGS) \
109          .
110
111
112#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
113
114#  if you write a self-test script named `chk', uncomment the
115#  following and add `chk' to the EXTRA_DIST list
116#TESTS=chk
117
118#  build and install the .info pages
119#info_TEXINFOS = orxonox.texinfo
120#orxonox_TEXINFOS = gpl.texinfo
121
122#  install the man pages
123#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.