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