Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

shared_lib: compile again

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