1 | AM_CXXFLAGS="-I./world_entities" |
---|
2 | AM_CXXFLAGS+="-I./story_entities" |
---|
3 | AM_CXXFLAGS+="-I./mathlib" |
---|
4 | AM_CXXFLAGS+="-I./lib" |
---|
5 | AM_CXXFLAGS+="-I./defs" |
---|
6 | AM_CXXFLAGS+="-I./font" |
---|
7 | AM_CXXFLAGS+="-I./network" |
---|
8 | AM_CXXFLAGS+="-I./glmenu" |
---|
9 | AM_CXXFLAGS+="-I./ai" |
---|
10 | |
---|
11 | AM_LDFLAGS= $(MWINDOWS) |
---|
12 | |
---|
13 | #"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include" |
---|
14 | |
---|
15 | |
---|
16 | bin_PROGRAMS=orxonox |
---|
17 | |
---|
18 | orxonox_SOURCES= orxonox.cc \ |
---|
19 | game_loader.cc \ |
---|
20 | command_node.cc \ |
---|
21 | keynames.cc \ |
---|
22 | camera.cc \ |
---|
23 | base_entity.cc \ |
---|
24 | base_object.cc \ |
---|
25 | p_node.cc \ |
---|
26 | null_parent.cc \ |
---|
27 | helper_parent.cc \ |
---|
28 | track_manager.cc \ |
---|
29 | light.cc \ |
---|
30 | story_entities/story_entity.cc \ |
---|
31 | story_entities/campaign.cc \ |
---|
32 | story_entities/world.cc \ |
---|
33 | world_entities/world_entity.cc \ |
---|
34 | world_entities/player.cc \ |
---|
35 | world_entities/environment.cc \ |
---|
36 | world_entities/skysphere.cc \ |
---|
37 | ai/ai.cc \ |
---|
38 | importer/array.cc \ |
---|
39 | importer/objModel.cc \ |
---|
40 | importer/model.cc \ |
---|
41 | importer/material.cc \ |
---|
42 | importer/texture.cc \ |
---|
43 | mathlib/vector.cc \ |
---|
44 | mathlib/matrix.cc \ |
---|
45 | mathlib/curve.cc \ |
---|
46 | lib/data_tank.cc \ |
---|
47 | lib/ini_parser.cc \ |
---|
48 | lib/list.cc \ |
---|
49 | glmenu/glmenu_imagescreen.cc \ |
---|
50 | font/fontset.cc |
---|
51 | |
---|
52 | noinst_HEADERS = orxonox.h \ |
---|
53 | game_loader.h \ |
---|
54 | track_manager.h \ |
---|
55 | base_object.h \ |
---|
56 | p_node.h \ |
---|
57 | null_parent.h \ |
---|
58 | helper_parent.h \ |
---|
59 | glincl.h \ |
---|
60 | ability.h \ |
---|
61 | base_entity.h \ |
---|
62 | camera.h \ |
---|
63 | power_up.h \ |
---|
64 | keynames.h \ |
---|
65 | proto_class.h \ |
---|
66 | command_node.h \ |
---|
67 | message_structures.h \ |
---|
68 | light.h \ |
---|
69 | story_entities/story_entity.h \ |
---|
70 | story_entities/story_def.h \ |
---|
71 | story_entities/campaign.h \ |
---|
72 | story_entities/world.h \ |
---|
73 | world_entities/world_entity.h \ |
---|
74 | world_entities/player.h \ |
---|
75 | world_entities/npc.h \ |
---|
76 | world_entities/environment.h \ |
---|
77 | world_entities/skysphere.h \ |
---|
78 | world_entities/shoot_laser.h \ |
---|
79 | world_entities/shoot_rocket.h \ |
---|
80 | ai/ai.h \ |
---|
81 | network/synchronisable.h \ |
---|
82 | mathlib/vector.h \ |
---|
83 | mathlib/matrix.h \ |
---|
84 | mathlib/curve.h \ |
---|
85 | defs/stdincl.h \ |
---|
86 | defs/error.h \ |
---|
87 | defs/debug.h \ |
---|
88 | lib/data_tank.h \ |
---|
89 | lib/ini_parser.h \ |
---|
90 | lib/list.h \ |
---|
91 | lib/list_template.h \ |
---|
92 | glmenu/glmenu_imagescreen.h \ |
---|
93 | font/fontset.h |
---|
94 | |
---|
95 | ## orxonox.conf will be used from home-dir instead. |
---|
96 | EXTRA_DIST = orxonox.conf |
---|
97 | |
---|
98 | ### GTK_RELATED |
---|
99 | if HAVE_GTK2 |
---|
100 | GTK_PROGS =console |
---|
101 | else |
---|
102 | GTK_PROGS = |
---|
103 | endif |
---|
104 | if SUB_PROJECTS |
---|
105 | SUB_PROGS = importer \ |
---|
106 | gui \ |
---|
107 | $(GTK_PROGS) |
---|
108 | else |
---|
109 | SUB_PROGS = |
---|
110 | endif |
---|
111 | |
---|
112 | SUBDIRS = . \ |
---|
113 | $(SUB_PROGS) |
---|
114 | |
---|
115 | # uncomment the following if orxonox requires the math library |
---|
116 | #orxonox_LDADD=-lm |
---|
117 | |
---|
118 | #EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo |
---|
119 | |
---|
120 | # if you write a self-test script named `chk', uncomment the |
---|
121 | # following and add `chk' to the EXTRA_DIST list |
---|
122 | #TESTS=chk |
---|
123 | |
---|
124 | # build and install the .info pages |
---|
125 | #info_TEXINFOS = orxonox.texinfo |
---|
126 | #orxonox_TEXINFOS = gpl.texinfo |
---|
127 | |
---|
128 | # install the man pages |
---|
129 | #man_MANS=orxonox.1 |
---|