1 | MAINSRCDIR=. |
---|
2 | include $(MAINSRCDIR)/defs/include_paths.am |
---|
3 | |
---|
4 | include world_entities/WorldEntities.am |
---|
5 | include story_entities/Makefile.am |
---|
6 | |
---|
7 | LIB_PREFIX=lib |
---|
8 | include lib/BuildLibs.am |
---|
9 | |
---|
10 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
11 | |
---|
12 | bin_PROGRAMS = orxonox |
---|
13 | |
---|
14 | orxonox_CPPFLAGS = \ |
---|
15 | -DIS_ORXONOX \ |
---|
16 | @QT_CXXFLAGS@ |
---|
17 | |
---|
18 | orxonox_LDFLAGS = @QT_LDFLAGS@ |
---|
19 | |
---|
20 | orxonox_DEPENDENCIES = \ |
---|
21 | world_entities/libORXwe.a \ |
---|
22 | util/libORXutils.a \ |
---|
23 | $(libORXlibs_a_LIBRARIES_) |
---|
24 | |
---|
25 | orxonox_LDADD = \ |
---|
26 | world_entities/libORXwe.a \ |
---|
27 | util/libORXutils.a \ |
---|
28 | $(libORXlibs_a_LIBRARIES_) \ |
---|
29 | $(CURL_LIBS) \ |
---|
30 | @QT_LIBS@ \ |
---|
31 | -L../extern_libs @LUA_LIBS@ |
---|
32 | |
---|
33 | orxonox_SOURCES = \ |
---|
34 | $(WorldEntities_SOURCES_) \ |
---|
35 | $(StoryEntities_SOURCES_) \ |
---|
36 | lib/shell/some_shell_commands.cc \ |
---|
37 | orxonox.cc \ |
---|
38 | \ |
---|
39 | util/multiplayer_team_deathmatch.cc \ |
---|
40 | util/singleplayer_shootemup.cc \ |
---|
41 | \ |
---|
42 | util/kill_target.cc \ |
---|
43 | \ |
---|
44 | subprojects/benchmark.cc |
---|
45 | |
---|
46 | noinst_HEADERS = \ |
---|
47 | $(StoryEntities_HEADERS_) \ |
---|
48 | orxonox.h \ |
---|
49 | ability.h \ |
---|
50 | defs/message_structures.h \ |
---|
51 | defs/stdincl.h \ |
---|
52 | defs/stdlibincl.h \ |
---|
53 | defs/sdlincl.h \ |
---|
54 | defs/glincl.h \ |
---|
55 | defs/alincl.h \ |
---|
56 | defs/comincl.h \ |
---|
57 | defs/confincl.h \ |
---|
58 | defs/error.h \ |
---|
59 | defs/globals.h \ |
---|
60 | defs/compiler.h \ |
---|
61 | subprojects/benchmark.h |
---|
62 | |
---|
63 | ## orxonox.conf will be used from home-dir instead. |
---|
64 | EXTRA_DIST = \ |
---|
65 | 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 | |
---|
74 | if SUB_PROJECTS |
---|
75 | SUB_PROGS = subprojects |
---|
76 | else |
---|
77 | SUB_PROGS = |
---|
78 | endif |
---|
79 | |
---|
80 | SUBDIRS = \ |
---|
81 | lib \ |
---|
82 | util \ |
---|
83 | world_entities \ |
---|
84 | . \ |
---|
85 | $(SUB_PROGS) |
---|
86 | |
---|
87 | |
---|
88 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
89 | |
---|
90 | # if you write a self-test script named `chk', uncomment the |
---|
91 | # following and add `chk' to the EXTRA_DIST list |
---|
92 | #TESTS=chk |
---|
93 | |
---|
94 | # build and install the .info pages |
---|
95 | #info_TEXINFOS = orxonox.texinfo |
---|
96 | #orxonox_TEXINFOS = gpl.texinfo |
---|
97 | |
---|
98 | # install the man pages |
---|
99 | #man_MANS=orxonox.1 |
---|