Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: move the Pollution of the ShellCommand to some other File

File size: 2.2 KB
RevLine 
[3486]1MAINSRCDIR=.
[4428]2include $(MAINSRCDIR)/defs/include_paths.am
[3472]3
[7151]4include world_entities/WorldEntities.am
[6432]5include story_entities/Makefile.am
[7151]6
7LIB_PREFIX=lib
[7033]8include lib/BuildLibs.am
[3484]9
[1953]10#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
11
[4556]12bin_PROGRAMS = orxonox
[1953]13
[4725]14orxonox_CPPFLAGS = -DIS_ORXONOX
[6630]15orxonox_LDFLAGS = -u global_ModelParticles_Factory
[4725]16
[6432]17orxonox_DEPENDENCIES = \
[7151]18                world_entities/libORXwe.a \
[6432]19                util/libORXutils.a \
[7033]20                $(libORXlibs_a_LIBRARIES_)
[4338]21
[7151]22orxonox_LDADD = \
23                world_entities/libORXwe.a \
24                util/libORXutils.a \
[7033]25                $(libORXlibs_a_LIBRARIES_) \
[6432]26                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
[4261]27
[6432]28orxonox_SOURCES = \
29                $(WorldEntities_SOURCES_) \
30                $(StoryEntities_SOURCES_) \
[7428]31                lib/shell/some_shell_commands.cc \
[6432]32                orxonox.cc \
[6630]33                \
34                lib/particles/model_particles.cc \
35                lib/particles/spark_particles.cc \
36                lib/particles/sprite_particles.cc \
[6873]37                lib/particles/plane_emitter.cc \
[6978]38                lib/graphics/effects/fog_effect.cc \
39                lib/graphics/effects/lense_flare.cc \
[6630]40                \
[7036]41                util/multiplayer_team_deathmatch.cc \
42                \
[6432]43                subprojects/benchmark.cc
[4039]44
[6432]45noinst_HEADERS = \
46                $(StoryEntities_HEADERS_) \
47                orxonox.h \
48                ability.h \
49                defs/message_structures.h \
50                defs/stdincl.h \
51                defs/stdlibincl.h \
52                defs/sdlincl.h \
53                defs/glincl.h \
54                defs/alincl.h \
55                defs/comincl.h \
56                defs/confincl.h \
57                defs/error.h \
58                defs/debug.h \
59                defs/globals.h \
60                defs/compiler.h \
61                defs/class_id.h \
62                subprojects/benchmark.h
[2589]63
[3198]64## orxonox.conf will be used from home-dir instead.
[4261]65EXTRA_DIST = proto/proto_class.h \
[4556]66             proto/proto_class.cc \
67             proto/proto_singleton.h \
68             proto/proto_singleton.cc \
69             proto/proto_world_entity.h \
70             proto/proto_world_entity.cc \
[6432]71             defs/include_paths.am \
72             story_entities/Makefile.am
[4556]73
[3377]74if SUB_PROJECTS
[4264]75  SUB_PROGS = subprojects
[3377]76else
[4556]77  SUB_PROGS =
[3377]78endif
[3182]79
[5349]80SUBDIRS = lib \
[5350]81          util \
[7151]82          world_entities \
[5549]83          . \
84          $(SUB_PROGS)
[3191]85
[1953]86
87#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
88
89#  if you write a self-test script named `chk', uncomment the
90#  following and add `chk' to the EXTRA_DIST list
91#TESTS=chk
92
93#  build and install the .info pages
94#info_TEXINFOS = orxonox.texinfo
95#orxonox_TEXINFOS = gpl.texinfo
96
97#  install the man pages
98#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.