Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: merged the QT_GUI back to the trunk
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/qt_gui . -r7607:HEAD

absolutely no conflicts :)

File size: 2.2 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/lense_flare.cc \
44                \
45                util/multiplayer_team_deathmatch.cc \
46                util/singleplayer_shootemup.cc \
47                \
48                util/kill_target.cc \
49                \
50                subprojects/benchmark.cc
51
52noinst_HEADERS = \
53                $(StoryEntities_HEADERS_) \
54                orxonox.h \
55                ability.h \
56                defs/message_structures.h \
57                defs/stdincl.h \
58                defs/stdlibincl.h \
59                defs/sdlincl.h \
60                defs/glincl.h \
61                defs/alincl.h \
62                defs/comincl.h \
63                defs/confincl.h \
64                defs/error.h \
65                defs/debug.h \
66                defs/globals.h \
67                defs/compiler.h \
68                defs/class_id.h \
69                subprojects/benchmark.h
70
71## orxonox.conf will be used from home-dir instead.
72EXTRA_DIST = \
73                proto/proto_class.h \
74                proto/proto_class.cc \
75                proto/proto_singleton.h \
76                proto/proto_singleton.cc \
77                proto/proto_world_entity.h \
78                proto/proto_world_entity.cc \
79                defs/include_paths.am \
80                story_entities/Makefile.am
81
82if SUB_PROJECTS
83  SUB_PROGS = subprojects
84else
85  SUB_PROGS =
86endif
87
88SUBDIRS = \
89                lib \
90                util \
91                world_entities \
92                . \
93                $(SUB_PROGS)
94
95
96#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
97
98#  if you write a self-test script named `chk', uncomment the
99#  following and add `chk' to the EXTRA_DIST list
100#TESTS=chk
101
102#  build and install the .info pages
103#info_TEXINFOS = orxonox.texinfo
104#orxonox_TEXINFOS = gpl.texinfo
105
106#  install the man pages
107#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.