Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/cleanup/src/Makefile.am @ 10585

Last change on this file since 10585 was 10575, checked in by bensch, 17 years ago

simple threads splited up into multiple files

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