Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: added missing files to Makefiles.am's

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