Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: dir restruture, moved console to lib/gui/console

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