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
RevLine 
[3486]1MAINSRCDIR=.
[4428]2include $(MAINSRCDIR)/defs/include_paths.am
[3472]3
[3484]4
[1953]5#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
6
[1955]7
[4556]8bin_PROGRAMS = orxonox
[1953]9
[4725]10orxonox_CPPFLAGS = -DIS_ORXONOX
11
[5450]12orxonox_DEPENDENCIES = lib/libORXlibs.la \
13                       util/libORXutils.la
[4338]14
[5450]15orxonox_LDADD = world_entities/libORXworld_entities.la \
16                util/libORXutils.la \
17                lib/libORXlibs.la \
[5265]18                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
[4261]19
[4556]20orxonox_SOURCES = orxonox.cc \
[5010]21                  story_entities/story_entity.cc \
[4556]22                  story_entities/campaign.cc \
23                  story_entities/world.cc \
24                  subprojects/benchmark.cc
[4039]25
[3481]26noinst_HEADERS = orxonox.h \
27                 ability.h \
[4556]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 \
[4745]43                 defs/class_id.h \
[5133]44                 defs/functor_list.h \
[4556]45                 subprojects/benchmark.h
[2589]46
[4028]47
[3198]48## orxonox.conf will be used from home-dir instead.
[4261]49EXTRA_DIST = proto/proto_class.h \
[4556]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
[3377]57if SUB_PROJECTS
[4264]58  SUB_PROGS = subprojects
[3377]59else
[4556]60  SUB_PROGS =
[3377]61endif
[3182]62
[5349]63SUBDIRS = lib \
[5350]64          util \
[5450]65          world_entities \
[5349]66          $(SUB_PROGS) \
67          .
[3191]68
[1953]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.