Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 9370 was 7281, checked in by bensch, 18 years ago

this really should compile and link (not at runtime) on windows

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