Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/levelloader/src/Makefile.am @ 3715

Last change on this file since 3715 was 3605, checked in by bensch, 20 years ago

orxonox/trunk: merged trunk back to levelloader
merged with command:
svn merge -r 3499:HEAD trunk branches/levelloader

Conflicts in
C track_manager.h
C world_entities/player.cc
C world_entities/player.h
C world_entities/environment.h
C lib/coord/p_node.cc
C defs/debug.h
C track_manager.cc
C story_entities/campaign.h

solved in merge-favouring. It was quite easy because Chris only worked on the headers, and he didi it quite clean. Thats the spirit :)

Conflits in world.cc are a MESS: fix it

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