Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

trunk: the game rules are now loadable

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                util/multiplayer_team_deathmatch.cc \
36                \
37                subprojects/benchmark.cc
38
39noinst_HEADERS = \
40                $(WorldEntities_HEADERS_) \
41                $(StoryEntities_HEADERS_) \
42                orxonox.h \
43                ability.h \
44                defs/message_structures.h \
45                defs/stdincl.h \
46                defs/stdlibincl.h \
47                defs/sdlincl.h \
48                defs/glincl.h \
49                defs/alincl.h \
50                defs/comincl.h \
51                defs/confincl.h \
52                defs/error.h \
53                defs/debug.h \
54                defs/globals.h \
55                defs/compiler.h \
56                defs/class_id.h \
57                subprojects/benchmark.h
58
59## orxonox.conf will be used from home-dir instead.
60EXTRA_DIST = proto/proto_class.h \
61             proto/proto_class.cc \
62             proto/proto_singleton.h \
63             proto/proto_singleton.cc \
64             proto/proto_world_entity.h \
65             proto/proto_world_entity.cc \
66             defs/include_paths.am \
67             world_entities/Makefile.am \
68             story_entities/Makefile.am
69
70if SUB_PROJECTS
71  SUB_PROGS = subprojects
72else
73  SUB_PROGS =
74endif
75
76SUBDIRS = lib \
77          util \
78          . \
79          $(SUB_PROGS)
80
81
82#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
83
84#  if you write a self-test script named `chk', uncomment the
85#  following and add `chk' to the EXTRA_DIST list
86#TESTS=chk
87
88#  build and install the .info pages
89#info_TEXINFOS = orxonox.texinfo
90#orxonox_TEXINFOS = gpl.texinfo
91
92#  install the man pages
93#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.