Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/Makefile.am @ 3474

Last change on this file since 3474 was 3474, checked in by patrick, 19 years ago

orxonox/trunk: redesigning directory structure - created lib and added all importand classes, did exclude collision.* since i couldnt integrate it into the new pnode model (have to do this with fuzzy)

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