Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 7488 was 7462, checked in by patrick, 18 years ago

mission goals loadable

File size: 2.3 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 = -DIS_ORXONOX
15orxonox_LDFLAGS = -u global_ModelParticles_Factory
16
17orxonox_DEPENDENCIES = \
18                world_entities/libORXwe.a \
19                util/libORXutils.a \
20                $(libORXlibs_a_LIBRARIES_)
21
22orxonox_LDADD = \
23                world_entities/libORXwe.a \
24                util/libORXutils.a \
25                $(libORXlibs_a_LIBRARIES_) \
26                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
27
28orxonox_SOURCES = \
29                $(WorldEntities_SOURCES_) \
30                $(StoryEntities_SOURCES_) \
31                lib/shell/some_shell_commands.cc \
32                orxonox.cc \
33                \
34                lib/particles/model_particles.cc \
35                lib/particles/spark_particles.cc \
36                lib/particles/sprite_particles.cc \
37                lib/particles/plane_emitter.cc \
38                lib/graphics/effects/fog_effect.cc \
39                lib/graphics/effects/lense_flare.cc \
40                \
41                util/multiplayer_team_deathmatch.cc \
42                util/singleplayer_shootemup.cc \
43                \
44                util/kill_target.cc \
45                \
46                subprojects/benchmark.cc
47
48noinst_HEADERS = \
49                $(StoryEntities_HEADERS_) \
50                orxonox.h \
51                ability.h \
52                defs/message_structures.h \
53                defs/stdincl.h \
54                defs/stdlibincl.h \
55                defs/sdlincl.h \
56                defs/glincl.h \
57                defs/alincl.h \
58                defs/comincl.h \
59                defs/confincl.h \
60                defs/error.h \
61                defs/debug.h \
62                defs/globals.h \
63                defs/compiler.h \
64                defs/class_id.h \
65                subprojects/benchmark.h
66
67## orxonox.conf will be used from home-dir instead.
68EXTRA_DIST = proto/proto_class.h \
69             proto/proto_class.cc \
70             proto/proto_singleton.h \
71             proto/proto_singleton.cc \
72             proto/proto_world_entity.h \
73             proto/proto_world_entity.cc \
74             defs/include_paths.am \
75             story_entities/Makefile.am
76
77if SUB_PROJECTS
78  SUB_PROGS = subprojects
79else
80  SUB_PROGS =
81endif
82
83SUBDIRS = 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.