Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 5580 was 5580, checked in by bensch, 18 years ago

orxonox/branches/network: fixed makefiles
created working subproject network

File size: 4.0 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
77
78## orxonox.conf will be used from home-dir instead.
79EXTRA_DIST = proto/proto_class.h \
80             proto/proto_class.cc \
81             proto/proto_singleton.h \
82             proto/proto_singleton.cc \
83             proto/proto_world_entity.h \
84             proto/proto_world_entity.cc \
85             defs/include_paths.am
86
87if SUB_PROJECTS
88  SUB_PROGS = subprojects
89else
90  SUB_PROGS =
91endif
92
93SUBDIRS = lib \
94          util \
95          $(SUB_PROGS) \
96          .
97
98
99#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
100
101#  if you write a self-test script named `chk', uncomment the
102#  following and add `chk' to the EXTRA_DIST list
103#TESTS=chk
104
105#  build and install the .info pages
106#info_TEXINFOS = orxonox.texinfo
107#orxonox_TEXINFOS = gpl.texinfo
108
109#  install the man pages
110#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.