[3486] | 1 | MAINSRCDIR=. |
---|
[4428] | 2 | include $(MAINSRCDIR)/defs/include_paths.am |
---|
[3472] | 3 | |
---|
[6432] | 4 | include story_entities/Makefile.am |
---|
[7151] | 5 | |
---|
| 6 | LIB_PREFIX=lib |
---|
[7033] | 7 | include lib/BuildLibs.am |
---|
[3484] | 8 | |
---|
[1953] | 9 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
| 10 | |
---|
[4556] | 11 | bin_PROGRAMS = orxonox |
---|
[1953] | 12 | |
---|
[7175] | 13 | orxonox_CPPFLAGS = -DIS_ORXONOX -DPKG_LIBDIR="\"$(pkglibdir)\"" |
---|
[7190] | 14 | orxonox_LDFLAGS = --export-dynamic |
---|
[7188] | 15 | ##-ldl -rdynamic |
---|
[4725] | 16 | |
---|
[6432] | 17 | orxonox_DEPENDENCIES = \ |
---|
[7151] | 18 | world_entities/libORXwe.a \ |
---|
[6432] | 19 | util/libORXutils.a \ |
---|
[7033] | 20 | $(libORXlibs_a_LIBRARIES_) |
---|
[4338] | 21 | |
---|
[7151] | 22 | orxonox_LDADD = \ |
---|
| 23 | world_entities/libORXwe.a \ |
---|
| 24 | util/libORXutils.a \ |
---|
[7033] | 25 | $(libORXlibs_a_LIBRARIES_) \ |
---|
[6432] | 26 | $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) |
---|
[4261] | 27 | |
---|
[6432] | 28 | orxonox_SOURCES = \ |
---|
| 29 | $(StoryEntities_SOURCES_) \ |
---|
| 30 | orxonox.cc \ |
---|
[6630] | 31 | \ |
---|
| 32 | lib/particles/model_particles.cc \ |
---|
| 33 | lib/particles/spark_particles.cc \ |
---|
| 34 | lib/particles/sprite_particles.cc \ |
---|
[6873] | 35 | lib/particles/plane_emitter.cc \ |
---|
[6978] | 36 | lib/graphics/effects/fog_effect.cc \ |
---|
| 37 | lib/graphics/effects/lense_flare.cc \ |
---|
[6630] | 38 | \ |
---|
[7036] | 39 | util/multiplayer_team_deathmatch.cc \ |
---|
| 40 | \ |
---|
[6432] | 41 | subprojects/benchmark.cc |
---|
[4039] | 42 | |
---|
[6432] | 43 | noinst_HEADERS = \ |
---|
| 44 | $(StoryEntities_HEADERS_) \ |
---|
| 45 | orxonox.h \ |
---|
| 46 | ability.h \ |
---|
| 47 | defs/message_structures.h \ |
---|
| 48 | defs/stdincl.h \ |
---|
| 49 | defs/stdlibincl.h \ |
---|
| 50 | defs/sdlincl.h \ |
---|
| 51 | defs/glincl.h \ |
---|
| 52 | defs/alincl.h \ |
---|
| 53 | defs/comincl.h \ |
---|
| 54 | defs/confincl.h \ |
---|
| 55 | defs/error.h \ |
---|
| 56 | defs/debug.h \ |
---|
| 57 | defs/globals.h \ |
---|
| 58 | defs/compiler.h \ |
---|
| 59 | defs/class_id.h \ |
---|
| 60 | subprojects/benchmark.h |
---|
[2589] | 61 | |
---|
[3198] | 62 | ## orxonox.conf will be used from home-dir instead. |
---|
[4261] | 63 | EXTRA_DIST = proto/proto_class.h \ |
---|
[4556] | 64 | proto/proto_class.cc \ |
---|
| 65 | proto/proto_singleton.h \ |
---|
| 66 | proto/proto_singleton.cc \ |
---|
| 67 | proto/proto_world_entity.h \ |
---|
| 68 | proto/proto_world_entity.cc \ |
---|
[6432] | 69 | defs/include_paths.am \ |
---|
| 70 | story_entities/Makefile.am |
---|
[4556] | 71 | |
---|
[3377] | 72 | if SUB_PROJECTS |
---|
[4264] | 73 | SUB_PROGS = subprojects |
---|
[3377] | 74 | else |
---|
[4556] | 75 | SUB_PROGS = |
---|
[3377] | 76 | endif |
---|
[3182] | 77 | |
---|
[5349] | 78 | SUBDIRS = lib \ |
---|
[5350] | 79 | util \ |
---|
[7151] | 80 | world_entities \ |
---|
[5549] | 81 | . \ |
---|
| 82 | $(SUB_PROGS) |
---|
[3191] | 83 | |
---|
[1953] | 84 | |
---|
| 85 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
| 86 | |
---|
| 87 | # if you write a self-test script named `chk', uncomment the |
---|
| 88 | # following and add `chk' to the EXTRA_DIST list |
---|
| 89 | #TESTS=chk |
---|
| 90 | |
---|
| 91 | # build and install the .info pages |
---|
| 92 | #info_TEXINFOS = orxonox.texinfo |
---|
| 93 | #orxonox_TEXINFOS = gpl.texinfo |
---|
| 94 | |
---|
| 95 | # install the man pages |
---|
| 96 | #man_MANS=orxonox.1 |
---|