Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

trunk: better make structure

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