Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 7704 was 7679, checked in by amaechler, 19 years ago

branches/atmospheric_engine: cloud and lightening files

File size: 2.4 KB
RevLine 
[3486]1MAINSRCDIR=.
[4428]2include $(MAINSRCDIR)/defs/include_paths.am
[3472]3
[7151]4include world_entities/WorldEntities.am
[6432]5include story_entities/Makefile.am
[7151]6
7LIB_PREFIX=lib
[7033]8include lib/BuildLibs.am
[3484]9
[1953]10#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
11
[4556]12bin_PROGRAMS = orxonox
[1953]13
[4725]14orxonox_CPPFLAGS = -DIS_ORXONOX
[6630]15orxonox_LDFLAGS = -u global_ModelParticles_Factory
[4725]16
[6432]17orxonox_DEPENDENCIES = \
[7151]18                world_entities/libORXwe.a \
[6432]19                util/libORXutils.a \
[7033]20                $(libORXlibs_a_LIBRARIES_)
[4338]21
[7151]22orxonox_LDADD = \
23                world_entities/libORXwe.a \
24                util/libORXutils.a \
[7033]25                $(libORXlibs_a_LIBRARIES_) \
[6432]26                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
[4261]27
[6432]28orxonox_SOURCES = \
29                $(WorldEntities_SOURCES_) \
30                $(StoryEntities_SOURCES_) \
31                orxonox.cc \
[6630]32                \
33                lib/particles/model_particles.cc \
34                lib/particles/spark_particles.cc \
35                lib/particles/sprite_particles.cc \
[6873]36                lib/particles/plane_emitter.cc \
[6978]37                lib/graphics/effects/fog_effect.cc \
[7519]38                lib/graphics/effects/volfog_effect.cc \
[7572]39                lib/graphics/effects/rain_effect.cc \
40                lib/graphics/effects/snow_effect.cc \
[7679]41                lib/graphics/effects/cloud_effect.cc \
42                lib/graphics/effects/lightening_effect.cc \
[6978]43                lib/graphics/effects/lense_flare.cc \
[6630]44                \
[7036]45                util/multiplayer_team_deathmatch.cc \
46                \
[6432]47                subprojects/benchmark.cc
[4039]48
[6432]49noinst_HEADERS = \
50                $(StoryEntities_HEADERS_) \
51                orxonox.h \
52                ability.h \
53                defs/message_structures.h \
54                defs/stdincl.h \
55                defs/stdlibincl.h \
56                defs/sdlincl.h \
57                defs/glincl.h \
58                defs/alincl.h \
59                defs/comincl.h \
60                defs/confincl.h \
61                defs/error.h \
62                defs/debug.h \
63                defs/globals.h \
64                defs/compiler.h \
65                defs/class_id.h \
66                subprojects/benchmark.h
[2589]67
[3198]68## orxonox.conf will be used from home-dir instead.
[4261]69EXTRA_DIST = proto/proto_class.h \
[4556]70             proto/proto_class.cc \
71             proto/proto_singleton.h \
72             proto/proto_singleton.cc \
73             proto/proto_world_entity.h \
74             proto/proto_world_entity.cc \
[6432]75             defs/include_paths.am \
76             story_entities/Makefile.am
[4556]77
[3377]78if SUB_PROJECTS
[4264]79  SUB_PROGS = subprojects
[3377]80else
[4556]81  SUB_PROGS =
[3377]82endif
[3182]83
[5349]84SUBDIRS = lib \
[5350]85          util \
[7151]86          world_entities \
[5549]87          . \
88          $(SUB_PROGS)
[3191]89
[1953]90
91#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
92
93#  if you write a self-test script named `chk', uncomment the
94#  following and add `chk' to the EXTRA_DIST list
95#TESTS=chk
96
97#  build and install the .info pages
98#info_TEXINFOS = orxonox.texinfo
99#orxonox_TEXINFOS = gpl.texinfo
100
101#  install the man pages
102#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.