Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: better build process: fake convenience lib through include of necessary files

File size: 2.7 KB
RevLine 
[3486]1MAINSRCDIR=.
[4428]2include $(MAINSRCDIR)/defs/include_paths.am
[3472]3
[6432]4include world_entities/Makefile.am
5include story_entities/Makefile.am
[3484]6
[1953]7#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
8
[4556]9bin_PROGRAMS = orxonox
[1953]10
[4725]11orxonox_CPPFLAGS = -DIS_ORXONOX
12
[6432]13orxonox_DEPENDENCIES = \
14                lib/libORXlibs.a \
15                util/libORXutils.a \
16                lib/gui/gtk_gui/libORXgui.a \
17                lib/graphics/importer/libORXimporter.a \
18                lib/graphics/libORXgraphics.a \
19                lib/sound/libORXsound.a \
20                lib/event/libORXevent.a \
21                lib/physics/libORXphysics.a \
22                lib/particles/libORXparticles.a \
23                lib/collision_detection/libORXcd.a \
24                lib/graphics/spatial_separation/libORXquadtree.a \
25                lib/parser/tinyxml/libtinyxml.a \
26                lib/parser/ini_parser/libIniParser.a \
27                lib/gui/gl_gui/libORXglgui.a \
28                lib/shell/libORXshell.a \
29                lib/network/libORXnet.a
[4338]30
[5463]31orxonox_LDADD = util/libORXutils.a \
[6432]32                \
33                lib/collision_detection/libORXcd.a \
34                \
35                lib/libORXlibs.a \
36                lib/gui/gtk_gui/libORXgui.a \
37                lib/graphics/importer/libORXimporter.a \
38                lib/graphics/libORXgraphics.a \
39                lib/sound/libORXsound.a \
40                lib/event/libORXevent.a \
41                lib/physics/libORXphysics.a \
42                lib/particles/libORXparticles.a \
43                lib/graphics/spatial_separation/libORXquadtree.a \
44                lib/parser/tinyxml/libtinyxml.a \
45                lib/parser/ini_parser/libIniParser.a \
46                lib/gui/gl_gui/libORXglgui.a \
47                lib/shell/libORXshell.a \
48                lib/network/libORXnet.a \
49                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
[4261]50
[6432]51orxonox_SOURCES = \
52                $(WorldEntities_SOURCES_) \
53                $(StoryEntities_SOURCES_) \
54                orxonox.cc \
55                subprojects/benchmark.cc
[4039]56
[6432]57noinst_HEADERS = \
58                $(WorldEntities_HEADERS_) \
59                $(StoryEntities_HEADERS_) \
60                orxonox.h \
61                ability.h \
62                defs/message_structures.h \
63                defs/stdincl.h \
64                defs/stdlibincl.h \
65                defs/sdlincl.h \
66                defs/glincl.h \
67                defs/alincl.h \
68                defs/comincl.h \
69                defs/confincl.h \
70                defs/error.h \
71                defs/debug.h \
72                defs/globals.h \
73                defs/compiler.h \
74                defs/class_id.h \
75                subprojects/benchmark.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 \
[6432]85             defs/include_paths.am \
86             world_entities/Makefile.am \
87             story_entities/Makefile.am
[4556]88
[3377]89if SUB_PROJECTS
[4264]90  SUB_PROGS = subprojects
[3377]91else
[4556]92  SUB_PROGS =
[3377]93endif
[3182]94
[5349]95SUBDIRS = lib \
[5350]96          util \
[5549]97          . \
98          $(SUB_PROGS)
[3191]99
[1953]100
101#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
102
103#  if you write a self-test script named `chk', uncomment the
104#  following and add `chk' to the EXTRA_DIST list
105#TESTS=chk
106
107#  build and install the .info pages
108#info_TEXINFOS = orxonox.texinfo
109#orxonox_TEXINFOS = gpl.texinfo
110
111#  install the man pages
112#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.