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