Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/shared_lib/src/Makefile.am @ 7280

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

better configure

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