Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

trunk: Simple water surface WE

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