Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/Makefile.am @ 9577

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

gui in gui itself

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                -L../extern_libs @LUA_LIBS@
32
33orxonox_SOURCES = \
34                $(WorldEntities_SOURCES_) \
35                $(StoryEntities_SOURCES_) \
36                lib/shell/some_shell_commands.cc \
37                orxonox.cc \
38                \
39                lib/particles/model_particles.cc \
40                lib/particles/spark_particles.cc \
41                lib/particles/sprite_particles.cc \
42                lib/particles/plane_emitter.cc \
43                lib/graphics/effects/fog_effect.cc \
44                lib/graphics/effects/volfog_effect.cc \
45                lib/graphics/effects/rain_effect.cc \
46                lib/graphics/effects/snow_effect.cc \
47                lib/graphics/effects/cloud_effect.cc \
48                lib/graphics/effects/lightning_effect.cc \
49                lib/graphics/effects/lense_flare.cc \
50                \
51                lib/network/monitor/network_stats_widget.cc \
52                \
53                util/multiplayer_team_deathmatch.cc \
54                util/singleplayer_shootemup.cc \
55                \
56                util/kill_target.cc \
57                \
58                subprojects/benchmark.cc
59
60noinst_HEADERS = \
61                $(StoryEntities_HEADERS_) \
62                orxonox.h \
63                ability.h \
64                defs/message_structures.h \
65                defs/stdincl.h \
66                defs/stdlibincl.h \
67                defs/sdlincl.h \
68                defs/glincl.h \
69                defs/alincl.h \
70                defs/comincl.h \
71                defs/confincl.h \
72                defs/error.h \
73                defs/debug.h \
74                defs/globals.h \
75                defs/compiler.h \
76                defs/class_id.h \
77                subprojects/benchmark.h
78
79## orxonox.conf will be used from home-dir instead.
80EXTRA_DIST = \
81                proto/proto_class.h \
82                proto/proto_class.cc \
83                proto/proto_singleton.h \
84                proto/proto_singleton.cc \
85                proto/proto_world_entity.h \
86                proto/proto_world_entity.cc \
87                defs/include_paths.am \
88                story_entities/Makefile.am
89
90if SUB_PROJECTS
91  SUB_PROGS = subprojects
92else
93  SUB_PROGS =
94endif
95
96SUBDIRS = \
97                lib \
98                util \
99                world_entities \
100                . \
101                $(SUB_PROGS)
102
103
104#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
105
106#  if you write a self-test script named `chk', uncomment the
107#  following and add `chk' to the EXTRA_DIST list
108#TESTS=chk
109
110#  build and install the .info pages
111#info_TEXINFOS = orxonox.texinfo
112#orxonox_TEXINFOS = gpl.texinfo
113
114#  install the man pages
115#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.