Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

trunk: Simple water surface WE

File size: 2.8 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 \
[6455]18                lib/graphics/importer/libtc.a \
[6432]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
[4338]31
[5463]32orxonox_LDADD = util/libORXutils.a \
[6432]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 \
[6455]39                lib/graphics/importer/libtc.a \
[6432]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)
[4261]52
[6432]53orxonox_SOURCES = \
54                $(WorldEntities_SOURCES_) \
55                $(StoryEntities_SOURCES_) \
56                orxonox.cc \
57                subprojects/benchmark.cc
[4039]58
[6432]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
[2589]78
[4028]79
[3198]80## orxonox.conf will be used from home-dir instead.
[4261]81EXTRA_DIST = proto/proto_class.h \
[4556]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 \
[6432]87             defs/include_paths.am \
88             world_entities/Makefile.am \
89             story_entities/Makefile.am
[4556]90
[3377]91if SUB_PROJECTS
[4264]92  SUB_PROGS = subprojects
[3377]93else
[4556]94  SUB_PROGS =
[3377]95endif
[3182]96
[5349]97SUBDIRS = lib \
[5350]98          util \
[5549]99          . \
100          $(SUB_PROGS)
[3191]101
[1953]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.