[3486] | 1 | MAINSRCDIR=. |
---|
[4428] | 2 | include $(MAINSRCDIR)/defs/include_paths.am |
---|
[3472] | 3 | |
---|
[7151] | 4 | include world_entities/WorldEntities.am |
---|
[6432] | 5 | include story_entities/Makefile.am |
---|
[7151] | 6 | |
---|
| 7 | LIB_PREFIX=lib |
---|
[7033] | 8 | include lib/BuildLibs.am |
---|
[3484] | 9 | |
---|
[1953] | 10 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
| 11 | |
---|
[4556] | 12 | bin_PROGRAMS = orxonox |
---|
[1953] | 13 | |
---|
[7661] | 14 | orxonox_CPPFLAGS = \ |
---|
| 15 | -DIS_ORXONOX \ |
---|
| 16 | @QT_CXXFLAGS@ |
---|
[4725] | 17 | |
---|
[7661] | 18 | orxonox_LDFLAGS = @QT_LDFLAGS@ |
---|
| 19 | |
---|
[6432] | 20 | orxonox_DEPENDENCIES = \ |
---|
[7151] | 21 | world_entities/libORXwe.a \ |
---|
[6432] | 22 | util/libORXutils.a \ |
---|
[7033] | 23 | $(libORXlibs_a_LIBRARIES_) |
---|
[4338] | 24 | |
---|
[7151] | 25 | orxonox_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] | 34 | orxonox_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 | \ |
---|
[7462] | 43 | util/kill_target.cc \ |
---|
| 44 | \ |
---|
[6432] | 45 | subprojects/benchmark.cc |
---|
[4039] | 46 | |
---|
[6432] | 47 | noinst_HEADERS = \ |
---|
| 48 | $(StoryEntities_HEADERS_) \ |
---|
| 49 | orxonox.h \ |
---|
| 50 | ability.h \ |
---|
| 51 | defs/message_structures.h \ |
---|
| 52 | defs/stdincl.h \ |
---|
| 53 | defs/stdlibincl.h \ |
---|
| 54 | defs/sdlincl.h \ |
---|
| 55 | defs/glincl.h \ |
---|
| 56 | defs/alincl.h \ |
---|
| 57 | defs/comincl.h \ |
---|
| 58 | defs/confincl.h \ |
---|
| 59 | defs/error.h \ |
---|
| 60 | defs/globals.h \ |
---|
| 61 | defs/compiler.h \ |
---|
| 62 | subprojects/benchmark.h |
---|
[2589] | 63 | |
---|
[3198] | 64 | ## orxonox.conf will be used from home-dir instead. |
---|
[7661] | 65 | EXTRA_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] | 75 | if SUB_PROJECTS |
---|
[4264] | 76 | SUB_PROGS = subprojects |
---|
[3377] | 77 | else |
---|
[4556] | 78 | SUB_PROGS = |
---|
[3377] | 79 | endif |
---|
[3182] | 80 | |
---|
[7661] | 81 | SUBDIRS = \ |
---|
| 82 | lib \ |
---|
| 83 | util \ |
---|
[10376] | 84 | ai \ |
---|
[7661] | 85 | world_entities \ |
---|
| 86 | . \ |
---|
| 87 | $(SUB_PROGS) |
---|
[3191] | 88 | |
---|
[1953] | 89 | |
---|
| 90 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
| 91 | |
---|
| 92 | # if you write a self-test script named `chk', uncomment the |
---|
| 93 | # following and add `chk' to the EXTRA_DIST list |
---|
| 94 | #TESTS=chk |
---|
| 95 | |
---|
| 96 | # build and install the .info pages |
---|
| 97 | #info_TEXINFOS = orxonox.texinfo |
---|
| 98 | #orxonox_TEXINFOS = gpl.texinfo |
---|
| 99 | |
---|
| 100 | # install the man pages |
---|
| 101 | #man_MANS=orxonox.1 |
---|