Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 5450 was 5450, checked in by bensch, 19 years ago

orxonox/trunk: building with LIBTOOL again, this time for real
Since now we link shared libraries together, there is no more problem with uninitialized global values

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