Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

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

File size: 4.0 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
[5463]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 \
[5580]22                       lib/network/libORXnet.a \
[5463]23                       lib/graphics/spatial_separation/libORXquadtree.a \
24                       lib/tinyxml/libtinyxml.a \
25                       lib/gui/gl_gui/libORXglgui.a \
26                       lib/shell/libORXshell.a
[4338]27
[5463]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 \
[5580]38                lib/network/libORXnet.a \
[5463]39                lib/graphics/spatial_separation/libORXquadtree.a \
40                lib/tinyxml/libtinyxml.a \
41                lib/gui/gl_gui/libORXglgui.a \
42                lib/shell/libORXshell.a \
[5265]43                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
[4261]44
[4556]45orxonox_SOURCES = orxonox.cc \
[5010]46                  story_entities/story_entity.cc \
[4556]47                  story_entities/campaign.cc \
48                  story_entities/world.cc \
[5463]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 \
[5561]72                  world_entities/power_ups/laser_power_up.cc
[5580]73##                  subprojects/benchmark.cc
[4039]74
[5580]75noinst_HEADERS = orxonox.h ability.h defs/message_structures.h
[2589]76
[4028]77
[3198]78## orxonox.conf will be used from home-dir instead.
[4261]79EXTRA_DIST = proto/proto_class.h \
[4556]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
[3377]87if SUB_PROJECTS
[4264]88  SUB_PROGS = subprojects
[3377]89else
[4556]90  SUB_PROGS =
[3377]91endif
[3182]92
[5349]93SUBDIRS = lib \
[5350]94          util \
[5349]95          $(SUB_PROGS) \
96          .
[3191]97
[1953]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.