Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/atmospheric_engine/src/Makefile.am @ 7577

Last change on this file since 7577 was 7572, checked in by hdavid, 18 years ago

branches/atmospheric_engine

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                orxonox.cc \
32                \
33                lib/particles/model_particles.cc \
34                lib/particles/spark_particles.cc \
35                lib/particles/sprite_particles.cc \
36                lib/particles/plane_emitter.cc \
37                lib/graphics/effects/fog_effect.cc \
38                lib/graphics/effects/volfog_effect.cc \
39                lib/graphics/effects/rain_effect.cc \
40                lib/graphics/effects/snow_effect.cc \
41                lib/graphics/effects/lense_flare.cc \
42                \
43                util/multiplayer_team_deathmatch.cc \
44                \
45                subprojects/benchmark.cc
46
47noinst_HEADERS = \
48                $(StoryEntities_HEADERS_) \
49                orxonox.h \
50                ability.h \
51                defs/message_structures.h \
52                defs/stdincl.h \
53                defs/stdlibincl.h \
54                defs/sdlincl.h \
55                defs/glincl.h \
56                defs/alincl.h \
57                defs/comincl.h \
58                defs/confincl.h \
59                defs/error.h \
60                defs/debug.h \
61                defs/globals.h \
62                defs/compiler.h \
63                defs/class_id.h \
64                subprojects/benchmark.h
65
66## orxonox.conf will be used from home-dir instead.
67EXTRA_DIST = 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 = lib \
83          util \
84          world_entities \
85          . \
86          $(SUB_PROGS)
87
88
89#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
90
91#  if you write a self-test script named `chk', uncomment the
92#  following and add `chk' to the EXTRA_DIST list
93#TESTS=chk
94
95#  build and install the .info pages
96#info_TEXINFOS = orxonox.texinfo
97#orxonox_TEXINFOS = gpl.texinfo
98
99#  install the man pages
100#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.