Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: merged the Weather effects back here

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