Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/qt_gui/src/Makefile.am @ 7605

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

compile and link on Tardis (with a minor hack)

File size: 2.1 KB
RevLine 
[3486]1MAINSRCDIR=.
[4428]2include $(MAINSRCDIR)/defs/include_paths.am
[3472]3
[7151]4include world_entities/WorldEntities.am
[6432]5include story_entities/Makefile.am
[7151]6
7LIB_PREFIX=lib
[7033]8include lib/BuildLibs.am
[3484]9
[1953]10#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
11
[4556]12bin_PROGRAMS = orxonox
[1953]13
[7479]14orxonox_CPPFLAGS = \
15                -DIS_ORXONOX \
16                @QT_CXXFLAGS@
[4725]17
[7518]18orxonox_LDFLAGS = @QT_LDFLAGS@
[7479]19
[6432]20orxonox_DEPENDENCIES = \
[7151]21                world_entities/libORXwe.a \
[6432]22                util/libORXutils.a \
[7033]23                $(libORXlibs_a_LIBRARIES_)
[4338]24
[7151]25orxonox_LDADD = \
26                world_entities/libORXwe.a \
27                util/libORXutils.a \
[7033]28                $(libORXlibs_a_LIBRARIES_) \
[7479]29                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) \
30                @QT_LIBS@
[4261]31
[6432]32orxonox_SOURCES = \
33                $(WorldEntities_SOURCES_) \
34                $(StoryEntities_SOURCES_) \
[7428]35                lib/shell/some_shell_commands.cc \
[6432]36                orxonox.cc \
[6630]37                \
38                lib/particles/model_particles.cc \
39                lib/particles/spark_particles.cc \
40                lib/particles/sprite_particles.cc \
[6873]41                lib/particles/plane_emitter.cc \
[6978]42                lib/graphics/effects/fog_effect.cc \
43                lib/graphics/effects/lense_flare.cc \
[6630]44                \
[7036]45                util/multiplayer_team_deathmatch.cc \
46                \
[6432]47                subprojects/benchmark.cc
[4039]48
[6432]49noinst_HEADERS = \
50                $(StoryEntities_HEADERS_) \
51                orxonox.h \
52                ability.h \
53                defs/message_structures.h \
54                defs/stdincl.h \
55                defs/stdlibincl.h \
56                defs/sdlincl.h \
57                defs/glincl.h \
58                defs/alincl.h \
59                defs/comincl.h \
60                defs/confincl.h \
61                defs/error.h \
62                defs/debug.h \
63                defs/globals.h \
64                defs/compiler.h \
65                defs/class_id.h \
66                subprojects/benchmark.h
[2589]67
[3198]68## orxonox.conf will be used from home-dir instead.
[7479]69EXTRA_DIST = \
70                proto/proto_class.h \
71                proto/proto_class.cc \
72                proto/proto_singleton.h \
73                proto/proto_singleton.cc \
74                proto/proto_world_entity.h \
75                proto/proto_world_entity.cc \
76                defs/include_paths.am \
77                story_entities/Makefile.am
[4556]78
[3377]79if SUB_PROJECTS
[4264]80  SUB_PROGS = subprojects
[3377]81else
[4556]82  SUB_PROGS =
[3377]83endif
[3182]84
[7479]85SUBDIRS = \
86                lib \
87                util \
88                world_entities \
89                . \
90                $(SUB_PROGS)
[3191]91
[1953]92
93#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
94
95#  if you write a self-test script named `chk', uncomment the
96#  following and add `chk' to the EXTRA_DIST list
97#TESTS=chk
98
99#  build and install the .info pages
100#info_TEXINFOS = orxonox.texinfo
101#orxonox_TEXINFOS = gpl.texinfo
102
103#  install the man pages
104#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.