Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

removed unused benchmark

File size: 1.9 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                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/globals.h \
59                defs/compiler.h \
60                subprojects/benchmark.h
[2589]61
[3198]62## orxonox.conf will be used from home-dir instead.
[7661]63EXTRA_DIST = \
64                proto/proto_class.h \
65                proto/proto_class.cc \
66                proto/proto_singleton.h \
67                proto/proto_singleton.cc \
68                proto/proto_world_entity.h \
69                proto/proto_world_entity.cc \
70                defs/include_paths.am \
71                story_entities/Makefile.am
[4556]72
[3377]73if SUB_PROJECTS
[4264]74  SUB_PROGS = subprojects
[3377]75else
[4556]76  SUB_PROGS =
[3377]77endif
[3182]78
[7661]79SUBDIRS = \
80                lib \
81                util \
[10376]82                ai \
[7661]83                world_entities \
84                . \
85                $(SUB_PROGS)
[3191]86
[1953]87
88#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
89
90#  if you write a self-test script named `chk', uncomment the
91#  following and add `chk' to the EXTRA_DIST list
92#TESTS=chk
93
94#  build and install the .info pages
95#info_TEXINFOS = orxonox.texinfo
96#orxonox_TEXINFOS = gpl.texinfo
97
98#  install the man pages
99#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.