Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/Makefile.am @ 9759

Last change on this file since 9759 was 9758, checked in by bensch, 18 years ago

orxonox/new_class_id: moved the Particle-engine

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