Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: redesigning directory structure - created glmenu and added all importand classes. Moved old shootlase/rocket classes to world_entities, where they belong.

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