Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/dylib: the first level works again, had to fix out the TestGun (it had some bugs, i think)

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