Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/shared_lib/src/Makefile.am @ 7186

Last change on this file since 7186 was 7177, checked in by bensch, 19 years ago

orxonox/dylib: the first level works again, had to fix out the TestGun (it had some bugs, i think)

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