Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

compiles and links in windows

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