| 1 | MAINSRCDIR=. |
|---|
| 2 | include $(MAINSRCDIR)/defs/include_paths.am |
|---|
| 3 | |
|---|
| 4 | include story_entities/Makefile.am |
|---|
| 5 | |
|---|
| 6 | LIB_PREFIX=lib |
|---|
| 7 | include lib/BuildLibs.am |
|---|
| 8 | |
|---|
| 9 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
|---|
| 10 | |
|---|
| 11 | bin_PROGRAMS = orxonox |
|---|
| 12 | |
|---|
| 13 | orxonox_CPPFLAGS = -DIS_ORXONOX -DPKG_LIBDIR="\"$(pkglibdir)\"" |
|---|
| 14 | orxonox_LDFLAGS = --export-dynamic |
|---|
| 15 | ##-ldl -rdynamic |
|---|
| 16 | |
|---|
| 17 | orxonox_DEPENDENCIES = \ |
|---|
| 18 | world_entities/libORXwe.a \ |
|---|
| 19 | util/libORXutils.a \ |
|---|
| 20 | $(libORXlibs_a_LIBRARIES_) |
|---|
| 21 | |
|---|
| 22 | orxonox_LDADD = \ |
|---|
| 23 | world_entities/libORXwe.a \ |
|---|
| 24 | util/libORXutils.a \ |
|---|
| 25 | $(libORXlibs_a_LIBRARIES_) \ |
|---|
| 26 | $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) |
|---|
| 27 | |
|---|
| 28 | orxonox_SOURCES = \ |
|---|
| 29 | $(StoryEntities_SOURCES_) \ |
|---|
| 30 | orxonox.cc \ |
|---|
| 31 | \ |
|---|
| 32 | lib/particles/model_particles.cc \ |
|---|
| 33 | lib/particles/spark_particles.cc \ |
|---|
| 34 | lib/particles/sprite_particles.cc \ |
|---|
| 35 | lib/particles/plane_emitter.cc \ |
|---|
| 36 | lib/graphics/effects/fog_effect.cc \ |
|---|
| 37 | lib/graphics/effects/lense_flare.cc \ |
|---|
| 38 | \ |
|---|
| 39 | util/multiplayer_team_deathmatch.cc \ |
|---|
| 40 | \ |
|---|
| 41 | subprojects/benchmark.cc |
|---|
| 42 | |
|---|
| 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 |
|---|
| 61 | |
|---|
| 62 | ## orxonox.conf will be used from home-dir instead. |
|---|
| 63 | EXTRA_DIST = proto/proto_class.h \ |
|---|
| 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 \ |
|---|
| 69 | defs/include_paths.am \ |
|---|
| 70 | story_entities/Makefile.am |
|---|
| 71 | |
|---|
| 72 | if SUB_PROJECTS |
|---|
| 73 | SUB_PROGS = subprojects |
|---|
| 74 | else |
|---|
| 75 | SUB_PROGS = |
|---|
| 76 | endif |
|---|
| 77 | |
|---|
| 78 | SUBDIRS = lib \ |
|---|
| 79 | util \ |
|---|
| 80 | world_entities \ |
|---|
| 81 | . \ |
|---|
| 82 | $(SUB_PROGS) |
|---|
| 83 | |
|---|
| 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 |
|---|