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
Line 
1MAINSRCDIR=.
2include $(MAINSRCDIR)/defs/include_paths.am
3
4include world_entities/Makefile.am
5include story_entities/Makefile.am
6include lib/BuildLibs.am
7
8#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
9
10bin_PROGRAMS = orxonox
11
12orxonox_CPPFLAGS = -DIS_ORXONOX
13orxonox_LDFLAGS = -u global_ModelParticles_Factory
14
15orxonox_DEPENDENCIES = \
16                util/libORXutils.a \
17                $(libORXlibs_a_LIBRARIES_)
18
19orxonox_LDADD = util/libORXutils.a \
20                $(libORXlibs_a_LIBRARIES_) \
21                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
22
23orxonox_SOURCES = \
24                $(WorldEntities_SOURCES_) \
25                $(StoryEntities_SOURCES_) \
26                orxonox.cc \
27                \
28                lib/particles/model_particles.cc \
29                lib/particles/spark_particles.cc \
30                lib/particles/sprite_particles.cc \
31                lib/particles/plane_emitter.cc \
32                lib/graphics/effects/fog_effect.cc \
33                lib/graphics/effects/lense_flare.cc \
34                \
35                subprojects/benchmark.cc
36
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
56
57## orxonox.conf will be used from home-dir instead.
58EXTRA_DIST = proto/proto_class.h \
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 \
64             defs/include_paths.am \
65             world_entities/Makefile.am \
66             story_entities/Makefile.am
67
68if SUB_PROJECTS
69  SUB_PROGS = subprojects
70else
71  SUB_PROGS =
72endif
73
74SUBDIRS = lib \
75          util \
76          . \
77          $(SUB_PROGS)
78
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.