Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File size: 2.0 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
[7661]14orxonox_CPPFLAGS = \
15                -DIS_ORXONOX \
16                @QT_CXXFLAGS@
[4725]17
[7661]18orxonox_LDFLAGS = @QT_LDFLAGS@
19
[6432]20orxonox_DEPENDENCIES = \
[7151]21                world_entities/libORXwe.a \
[6432]22                util/libORXutils.a \
[7033]23                $(libORXlibs_a_LIBRARIES_)
[4338]24
[7151]25orxonox_LDADD = \
26                world_entities/libORXwe.a \
27                util/libORXutils.a \
[7033]28                $(libORXlibs_a_LIBRARIES_) \
[7661]29                $(CURL_LIBS) \
[8271]30                @QT_LIBS@ \
31                -L../extern_libs @LUA_LIBS@
[4261]32
[6432]33orxonox_SOURCES = \
34                $(WorldEntities_SOURCES_) \
35                $(StoryEntities_SOURCES_) \
[7428]36                lib/shell/some_shell_commands.cc \
[6432]37                orxonox.cc \
[6630]38                \
[7036]39                util/multiplayer_team_deathmatch.cc \
[7462]40                util/singleplayer_shootemup.cc \
[7036]41                \
[7462]42                util/kill_target.cc \
43                \
[6432]44                subprojects/benchmark.cc
[4039]45
[6432]46noinst_HEADERS = \
47                $(StoryEntities_HEADERS_) \
48                orxonox.h \
49                ability.h \
50                defs/message_structures.h \
51                defs/stdincl.h \
52                defs/stdlibincl.h \
53                defs/sdlincl.h \
54                defs/glincl.h \
55                defs/alincl.h \
56                defs/comincl.h \
57                defs/confincl.h \
58                defs/error.h \
59                defs/globals.h \
60                defs/compiler.h \
[9869]61                defs/class_id_DEPRECATED.h \
[6432]62                subprojects/benchmark.h
[2589]63
[3198]64## orxonox.conf will be used from home-dir instead.
[7661]65EXTRA_DIST = \
66                proto/proto_class.h \
67                proto/proto_class.cc \
68                proto/proto_singleton.h \
69                proto/proto_singleton.cc \
70                proto/proto_world_entity.h \
71                proto/proto_world_entity.cc \
72                defs/include_paths.am \
73                story_entities/Makefile.am
[4556]74
[3377]75if SUB_PROJECTS
[4264]76  SUB_PROGS = subprojects
[3377]77else
[4556]78  SUB_PROGS =
[3377]79endif
[3182]80
[7661]81SUBDIRS = \
82                lib \
83                util \
84                world_entities \
85                . \
86                $(SUB_PROGS)
[3191]87
[1953]88
89#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
90
91#  if you write a self-test script named `chk', uncomment the
92#  following and add `chk' to the EXTRA_DIST list
93#TESTS=chk
94
95#  build and install the .info pages
96#info_TEXINFOS = orxonox.texinfo
97#orxonox_TEXINFOS = gpl.texinfo
98
99#  install the man pages
100#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.