1 | MAINSRCDIR=. |
---|
2 | AM_CXXFLAGS=-I$(MAINSRCDIR) |
---|
3 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/world_entities |
---|
4 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/story_entities |
---|
5 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib |
---|
6 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/coord |
---|
7 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/data |
---|
8 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics |
---|
9 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/importer |
---|
10 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui |
---|
11 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/lang |
---|
12 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/util |
---|
13 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/math |
---|
14 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/defs |
---|
15 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/font |
---|
16 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/network |
---|
17 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/glmenu |
---|
18 | AM_CXXFLAGS+=-I$(MAINSRCDIR)/ai |
---|
19 | |
---|
20 | |
---|
21 | AM_LDFLAGS= $(MWINDOWS) |
---|
22 | |
---|
23 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
24 | |
---|
25 | |
---|
26 | bin_PROGRAMS=orxonox |
---|
27 | |
---|
28 | orxonox_SOURCES= orxonox.cc \ |
---|
29 | game_loader.cc \ |
---|
30 | command_node.cc \ |
---|
31 | keynames.cc \ |
---|
32 | camera.cc \ |
---|
33 | track_manager.cc \ |
---|
34 | track_node.cc \ |
---|
35 | animation.cc \ |
---|
36 | animation3d.cc \ |
---|
37 | animation_player.cc \ |
---|
38 | garbage_collector.cc \ |
---|
39 | story_entities/story_entity.cc \ |
---|
40 | story_entities/campaign.cc \ |
---|
41 | story_entities/world.cc \ |
---|
42 | world_entities/world_entity.cc \ |
---|
43 | world_entities/player.cc \ |
---|
44 | world_entities/environment.cc \ |
---|
45 | world_entities/skysphere.cc \ |
---|
46 | world_entities/skybox.cc \ |
---|
47 | world_entities/terrain.cc \ |
---|
48 | world_entities/weapon.cc \ |
---|
49 | world_entities/projectile.cc \ |
---|
50 | world_entities/satellite.cc \ |
---|
51 | world_entities/character_attributes.cc \ |
---|
52 | world_entities/test_gun.cc \ |
---|
53 | world_entities/test_bullet.cc \ |
---|
54 | ai/ai.cc \ |
---|
55 | lib/coord/p_node.cc \ |
---|
56 | lib/coord/null_parent.cc \ |
---|
57 | lib/coord/helper_parent.cc \ |
---|
58 | lib/data/data_tank.cc \ |
---|
59 | lib/graphics/graphics_engine.cc \ |
---|
60 | lib/graphics/light.cc \ |
---|
61 | lib/graphics/text_engine.cc \ |
---|
62 | lib/graphics/importer/array.cc \ |
---|
63 | lib/graphics/importer/objModel.cc \ |
---|
64 | lib/graphics/importer/primitive_model.cc \ |
---|
65 | lib/graphics/importer/model.cc \ |
---|
66 | lib/graphics/importer/material.cc \ |
---|
67 | lib/graphics/importer/texture.cc \ |
---|
68 | lib/lang/base_entity.cc \ |
---|
69 | lib/lang/base_object.cc \ |
---|
70 | lib/util/ini_parser.cc \ |
---|
71 | lib/util/list.cc \ |
---|
72 | lib/util/resource_manager.cc \ |
---|
73 | lib/math/vector.cc \ |
---|
74 | lib/math/curve.cc \ |
---|
75 | glmenu/glmenu_imagescreen.cc |
---|
76 | |
---|
77 | noinst_HEADERS = orxonox.h \ |
---|
78 | game_loader.h \ |
---|
79 | track_manager.h \ |
---|
80 | ability.h \ |
---|
81 | camera.h \ |
---|
82 | keynames.h \ |
---|
83 | command_node.h \ |
---|
84 | message_structures.h \ |
---|
85 | track_manager.h \ |
---|
86 | track_node.h \ |
---|
87 | animation.h \ |
---|
88 | t_animation.h \ |
---|
89 | animation3d.h \ |
---|
90 | animation_player.h \ |
---|
91 | garbage_collector.h \ |
---|
92 | story_entities/story_entity.h \ |
---|
93 | story_entities/story_def.h \ |
---|
94 | story_entities/campaign.h \ |
---|
95 | story_entities/world.h \ |
---|
96 | world_entities/world_entity.h \ |
---|
97 | world_entities/player.h \ |
---|
98 | world_entities/npc.h \ |
---|
99 | world_entities/environment.h \ |
---|
100 | world_entities/skysphere.h \ |
---|
101 | world_entities/skybox.h \ |
---|
102 | world_entities/power_up.h \ |
---|
103 | world_entities/terrain.h \ |
---|
104 | world_entities/weapon.h \ |
---|
105 | world_entities/projectile.h \ |
---|
106 | world_entities/satellite.h \ |
---|
107 | world_entities/character_attributes.h \ |
---|
108 | world_entities/test_gun.h \ |
---|
109 | world_entities/test_bullet.h \ |
---|
110 | ai/ai.h \ |
---|
111 | network/synchronisable.h \ |
---|
112 | defs/stdincl.h \ |
---|
113 | defs/glincl.h \ |
---|
114 | defs/comincl.h \ |
---|
115 | defs/error.h \ |
---|
116 | defs/debug.h \ |
---|
117 | lib/coord/p_node.h \ |
---|
118 | lib/coord/null_parent.h \ |
---|
119 | lib/coord/helper_parent.h \ |
---|
120 | lib/graphics/graphics_engine.h \ |
---|
121 | lib/graphics/light.h \ |
---|
122 | lib/graphics/text_engine.h \ |
---|
123 | lib/data/data_tank.h \ |
---|
124 | lib/lang/base_entity.h \ |
---|
125 | lib/lang/base_object.h \ |
---|
126 | lib/util/list.h \ |
---|
127 | lib/util/list_template.h \ |
---|
128 | lib/util/resource_manager.h \ |
---|
129 | lib/util/ini_parser.h \ |
---|
130 | lib/math/vector.h \ |
---|
131 | lib/math/curve.h \ |
---|
132 | glmenu/glmenu_imagescreen.h |
---|
133 | |
---|
134 | |
---|
135 | ## orxonox.conf will be used from home-dir instead. |
---|
136 | EXTRA_DIST = orxonox.conf \ |
---|
137 | proto/proto_class.h \ |
---|
138 | proto/proto_class.cc \ |
---|
139 | proto/proto_singleton.h \ |
---|
140 | proto/proto_singleton.cc \ |
---|
141 | proto/proto_world_entity.h \ |
---|
142 | proto/proto_world_entity.cc |
---|
143 | |
---|
144 | if SUB_PROJECTS |
---|
145 | SUB_PROGS = lib subprojects |
---|
146 | else |
---|
147 | SUB_PROGS = |
---|
148 | endif |
---|
149 | |
---|
150 | SUBDIRS = . \ |
---|
151 | $(SUB_PROGS) |
---|
152 | |
---|
153 | # uncomment the following if orxonox requires the math library |
---|
154 | #orxonox_LDADD=-lm |
---|
155 | |
---|
156 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
157 | |
---|
158 | # if you write a self-test script named `chk', uncomment the |
---|
159 | # following and add `chk' to the EXTRA_DIST list |
---|
160 | #TESTS=chk |
---|
161 | |
---|
162 | # build and install the .info pages |
---|
163 | #info_TEXINFOS = orxonox.texinfo |
---|
164 | #orxonox_TEXINFOS = gpl.texinfo |
---|
165 | |
---|
166 | # install the man pages |
---|
167 | #man_MANS=orxonox.1 |
---|