Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

moved around the weather effecs

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