Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: now moved importer in lib and other stuff. very very modular :)

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