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
Line 
1MAINSRCDIR=.
2include $(MAINSRCDIR)/defs/include_paths.am
3
4include world_entities/Makefile.am
5include story_entities/Makefile.am
6
7#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
8
9bin_PROGRAMS = orxonox
10
11orxonox_CPPFLAGS = -DIS_ORXONOX
12
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
30
31orxonox_LDADD = util/libORXutils.a \
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)
50
51orxonox_SOURCES = \
52                $(WorldEntities_SOURCES_) \
53                $(StoryEntities_SOURCES_) \
54                orxonox.cc \
55                subprojects/benchmark.cc
56
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
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             world_entities/Makefile.am \
87             story_entities/Makefile.am
88
89if SUB_PROJECTS
90  SUB_PROGS = subprojects
91else
92  SUB_PROGS =
93endif
94
95SUBDIRS = lib \
96          util \
97          . \
98          $(SUB_PROGS)
99
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.