[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 \ |
---|
| 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] | 33 | orxonox_SOURCES = \ |
---|
| 34 | $(WorldEntities_SOURCES_) \ |
---|
| 35 | $(StoryEntities_SOURCES_) \ |
---|
[7428] | 36 | lib/shell/some_shell_commands.cc \ |
---|
[6432] | 37 | orxonox.cc \ |
---|
[6630] | 38 | \ |
---|
| 39 | lib/particles/model_particles.cc \ |
---|
| 40 | lib/particles/spark_particles.cc \ |
---|
| 41 | lib/particles/sprite_particles.cc \ |
---|
[6873] | 42 | lib/particles/plane_emitter.cc \ |
---|
[6978] | 43 | lib/graphics/effects/fog_effect.cc \ |
---|
[7810] | 44 | lib/graphics/effects/volfog_effect.cc \ |
---|
| 45 | lib/graphics/effects/rain_effect.cc \ |
---|
| 46 | lib/graphics/effects/snow_effect.cc \ |
---|
| 47 | lib/graphics/effects/cloud_effect.cc \ |
---|
[9006] | 48 | lib/graphics/effects/lightning_effect.cc \ |
---|
[6978] | 49 | lib/graphics/effects/lense_flare.cc \ |
---|
[6630] | 50 | \ |
---|
[7036] | 51 | util/multiplayer_team_deathmatch.cc \ |
---|
[7462] | 52 | util/singleplayer_shootemup.cc \ |
---|
[7036] | 53 | \ |
---|
[7462] | 54 | util/kill_target.cc \ |
---|
| 55 | \ |
---|
[6432] | 56 | subprojects/benchmark.cc |
---|
[4039] | 57 | |
---|
[6432] | 58 | noinst_HEADERS = \ |
---|
| 59 | $(StoryEntities_HEADERS_) \ |
---|
| 60 | orxonox.h \ |
---|
| 61 | ability.h \ |
---|
| 62 | defs/message_structures.h \ |
---|
| 63 | defs/stdincl.h \ |
---|
| 64 | defs/stdlibincl.h \ |
---|
| 65 | defs/sdlincl.h \ |
---|
| 66 | defs/glincl.h \ |
---|
| 67 | defs/alincl.h \ |
---|
| 68 | defs/comincl.h \ |
---|
| 69 | defs/confincl.h \ |
---|
| 70 | defs/error.h \ |
---|
| 71 | defs/debug.h \ |
---|
| 72 | defs/globals.h \ |
---|
| 73 | defs/compiler.h \ |
---|
| 74 | defs/class_id.h \ |
---|
| 75 | subprojects/benchmark.h |
---|
[2589] | 76 | |
---|
[3198] | 77 | ## orxonox.conf will be used from home-dir instead. |
---|
[7661] | 78 | EXTRA_DIST = \ |
---|
| 79 | proto/proto_class.h \ |
---|
| 80 | proto/proto_class.cc \ |
---|
| 81 | proto/proto_singleton.h \ |
---|
| 82 | proto/proto_singleton.cc \ |
---|
| 83 | proto/proto_world_entity.h \ |
---|
| 84 | proto/proto_world_entity.cc \ |
---|
| 85 | defs/include_paths.am \ |
---|
| 86 | story_entities/Makefile.am |
---|
[4556] | 87 | |
---|
[3377] | 88 | if SUB_PROJECTS |
---|
[4264] | 89 | SUB_PROGS = subprojects |
---|
[3377] | 90 | else |
---|
[4556] | 91 | SUB_PROGS = |
---|
[3377] | 92 | endif |
---|
[3182] | 93 | |
---|
[7661] | 94 | SUBDIRS = \ |
---|
| 95 | lib \ |
---|
| 96 | util \ |
---|
| 97 | world_entities \ |
---|
| 98 | . \ |
---|
| 99 | $(SUB_PROGS) |
---|
[3191] | 100 | |
---|
[1953] | 101 | |
---|
| 102 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
| 103 | |
---|
| 104 | # if you write a self-test script named `chk', uncomment the |
---|
| 105 | # following and add `chk' to the EXTRA_DIST list |
---|
| 106 | #TESTS=chk |
---|
| 107 | |
---|
| 108 | # build and install the .info pages |
---|
| 109 | #info_TEXINFOS = orxonox.texinfo |
---|
| 110 | #orxonox_TEXINFOS = gpl.texinfo |
---|
| 111 | |
---|
| 112 | # install the man pages |
---|
| 113 | #man_MANS=orxonox.1 |
---|