Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/Makefile.am @ 7101

Last change on this file since 7101 was 7036, checked in by patrick, 18 years ago

trunk: the game rules are now loadable

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