1 | MAINSRCDIR=. |
---|
2 | include $(MAINSRCDIR)/defs/include_paths.am |
---|
3 | |
---|
4 | |
---|
5 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
6 | |
---|
7 | |
---|
8 | bin_PROGRAMS = orxonox |
---|
9 | |
---|
10 | orxonox_CPPFLAGS = -DIS_ORXONOX |
---|
11 | |
---|
12 | orxonox_DEPENDENCIES = lib/libORXlibs.la \ |
---|
13 | util/libORXutils.la |
---|
14 | |
---|
15 | orxonox_LDADD = world_entities/libORXworld_entities.la \ |
---|
16 | util/libORXutils.la \ |
---|
17 | lib/libORXlibs.la \ |
---|
18 | $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) |
---|
19 | |
---|
20 | orxonox_SOURCES = orxonox.cc \ |
---|
21 | story_entities/story_entity.cc \ |
---|
22 | story_entities/campaign.cc \ |
---|
23 | story_entities/world.cc \ |
---|
24 | subprojects/benchmark.cc |
---|
25 | |
---|
26 | noinst_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. |
---|
49 | EXTRA_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 | |
---|
57 | if SUB_PROJECTS |
---|
58 | SUB_PROGS = subprojects |
---|
59 | else |
---|
60 | SUB_PROGS = |
---|
61 | endif |
---|
62 | |
---|
63 | SUBDIRS = 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 |
---|