Changeset 4506 in orxonox.OLD for orxonox/trunk/src/lib
- Timestamp:
- Jun 4, 2005, 12:49:24 AM (20 years ago)
- Location:
- orxonox/trunk/src/lib
- Files:
-
- 11 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/Makefile.am
r4484 r4506 3 3 4 4 SUBDIRS = graphics \ 5 sound \ 5 6 event \ 6 7 physics \ -
orxonox/trunk/src/lib/Makefile.in
r4504 r4506 168 168 GTK_PROGS = gui 169 169 SUBDIRS = graphics \ 170 sound \ 170 171 event \ 171 172 physics \ … … 186 187 esac; \ 187 188 done; \ 188 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/Makefile'; \189 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/Makefile'; \ 189 190 cd $(top_srcdir) && \ 190 $(AUTOMAKE) -- gnusrc/lib/Makefile191 $(AUTOMAKE) --foreign src/lib/Makefile 191 192 .PRECIOUS: Makefile 192 193 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/event/Makefile.in
r4504 r4506 212 212 esac; \ 213 213 done; \ 214 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/event/Makefile'; \214 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/event/Makefile'; \ 215 215 cd $(top_srcdir) && \ 216 $(AUTOMAKE) -- gnusrc/lib/event/Makefile216 $(AUTOMAKE) --foreign src/lib/event/Makefile 217 217 .PRECIOUS: Makefile 218 218 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/graphics/Makefile.in
r4504 r4506 177 177 esac; \ 178 178 done; \ 179 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/graphics/Makefile'; \179 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/graphics/Makefile'; \ 180 180 cd $(top_srcdir) && \ 181 $(AUTOMAKE) -- gnusrc/lib/graphics/Makefile181 $(AUTOMAKE) --foreign src/lib/graphics/Makefile 182 182 .PRECIOUS: Makefile 183 183 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/graphics/importer/Makefile.in
r4504 r4506 181 181 esac; \ 182 182 done; \ 183 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/graphics/importer/Makefile'; \183 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/graphics/importer/Makefile'; \ 184 184 cd $(top_srcdir) && \ 185 $(AUTOMAKE) -- gnusrc/lib/graphics/importer/Makefile185 $(AUTOMAKE) --foreign src/lib/graphics/importer/Makefile 186 186 .PRECIOUS: Makefile 187 187 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/gui/Makefile.in
r4504 r4506 241 241 esac; \ 242 242 done; \ 243 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/gui/Makefile'; \243 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/gui/Makefile'; \ 244 244 cd $(top_srcdir) && \ 245 $(AUTOMAKE) -- gnusrc/lib/gui/Makefile245 $(AUTOMAKE) --foreign src/lib/gui/Makefile 246 246 .PRECIOUS: Makefile 247 247 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/particles/Makefile.in
r4504 r4506 209 209 esac; \ 210 210 done; \ 211 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/particles/Makefile'; \211 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/particles/Makefile'; \ 212 212 cd $(top_srcdir) && \ 213 $(AUTOMAKE) -- gnusrc/lib/particles/Makefile213 $(AUTOMAKE) --foreign src/lib/particles/Makefile 214 214 .PRECIOUS: Makefile 215 215 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/physics/Makefile.in
r4504 r4506 217 217 esac; \ 218 218 done; \ 219 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/physics/Makefile'; \219 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/physics/Makefile'; \ 220 220 cd $(top_srcdir) && \ 221 $(AUTOMAKE) -- gnusrc/lib/physics/Makefile221 $(AUTOMAKE) --foreign src/lib/physics/Makefile 222 222 .PRECIOUS: Makefile 223 223 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/sound/Makefile.am
r4505 r4506 2 2 include $(MAINSRCDIR)/defs/include_paths.am 3 3 4 noinst_LIBRARIES = libORX physics.a4 noinst_LIBRARIES = libORXsound.a 5 5 6 libORXphysics_a_SOURCES = physics_interface.cc \ 7 physics_connection.cc \ 8 physics_engine.cc \ 9 fields/field.cc \ 10 fields/gravity.cc \ 11 fields/point_gravity.cc \ 12 fields/twirl.cc 6 libORXsound_a_SOURCES = sound_engine.cc 13 7 14 noinst_HEADERS= physics_interface.h \ 15 physics_connection.h \ 16 physics_engine.h \ 17 fields/field.h \ 18 fields/gravity.h \ 19 fields/point_gravity.h \ 20 fields/twirl.h 8 noinst_HEADERS= sound_engine.h -
orxonox/trunk/src/lib/sound/Makefile.in
r4505 r4506 16 16 17 17 18 SOURCES = $(libORX physics_a_SOURCES)18 SOURCES = $(libORXsound_a_SOURCES) 19 19 20 20 srcdir = @srcdir@ … … 39 39 POST_UNINSTALL = : 40 40 host_triplet = @host@ 41 subdir = src/lib/ physics41 subdir = src/lib/sound 42 42 DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ 43 43 $(srcdir)/Makefile.in … … 52 52 AR = ar 53 53 ARFLAGS = cru 54 libORXphysics_a_AR = $(AR) $(ARFLAGS) 55 libORXphysics_a_LIBADD = 56 am_libORXphysics_a_OBJECTS = physics_interface.$(OBJEXT) \ 57 physics_connection.$(OBJEXT) physics_engine.$(OBJEXT) \ 58 field.$(OBJEXT) gravity.$(OBJEXT) point_gravity.$(OBJEXT) \ 59 twirl.$(OBJEXT) 60 libORXphysics_a_OBJECTS = $(am_libORXphysics_a_OBJECTS) 54 libORXsound_a_AR = $(AR) $(ARFLAGS) 55 libORXsound_a_LIBADD = 56 am_libORXsound_a_OBJECTS = sound_engine.$(OBJEXT) 57 libORXsound_a_OBJECTS = $(am_libORXsound_a_OBJECTS) 61 58 DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) 62 59 depcomp = $(SHELL) $(top_srcdir)/depcomp 63 60 am__depfiles_maybe = depfiles 64 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/field.Po ./$(DEPDIR)/gravity.Po \ 65 @AMDEP_TRUE@ ./$(DEPDIR)/physics_connection.Po \ 66 @AMDEP_TRUE@ ./$(DEPDIR)/physics_engine.Po \ 67 @AMDEP_TRUE@ ./$(DEPDIR)/physics_interface.Po \ 68 @AMDEP_TRUE@ ./$(DEPDIR)/point_gravity.Po ./$(DEPDIR)/twirl.Po 61 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/sound_engine.Po 69 62 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 70 63 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) … … 72 65 CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ 73 66 -o $@ 74 SOURCES = $(libORX physics_a_SOURCES)75 DIST_SOURCES = $(libORX physics_a_SOURCES)67 SOURCES = $(libORXsound_a_SOURCES) 68 DIST_SOURCES = $(libORXsound_a_SOURCES) 76 69 HEADERS = $(noinst_HEADERS) 77 70 ETAGS = etags … … 187 180 target_vendor = @target_vendor@ 188 181 MAINSRCDIR = ../.. 189 noinst_LIBRARIES = libORXphysics.a 190 libORXphysics_a_SOURCES = physics_interface.cc \ 191 physics_connection.cc \ 192 physics_engine.cc \ 193 fields/field.cc \ 194 fields/gravity.cc \ 195 fields/point_gravity.cc \ 196 fields/twirl.cc 197 198 noinst_HEADERS = physics_interface.h \ 199 physics_connection.h \ 200 physics_engine.h \ 201 fields/field.h \ 202 fields/gravity.h \ 203 fields/point_gravity.h \ 204 fields/twirl.h 205 182 noinst_LIBRARIES = libORXsound.a 183 libORXsound_a_SOURCES = sound_engine.cc 184 noinst_HEADERS = sound_engine.h 206 185 all: all-am 207 186 … … 217 196 esac; \ 218 197 done; \ 219 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnu src/lib/physics/Makefile'; \198 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/sound/Makefile'; \ 220 199 cd $(top_srcdir) && \ 221 $(AUTOMAKE) -- gnu src/lib/physics/Makefile200 $(AUTOMAKE) --foreign src/lib/sound/Makefile 222 201 .PRECIOUS: Makefile 223 202 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status … … 240 219 clean-noinstLIBRARIES: 241 220 -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) 242 libORX physics.a: $(libORXphysics_a_OBJECTS) $(libORXphysics_a_DEPENDENCIES)243 -rm -f libORX physics.a244 $(libORX physics_a_AR) libORXphysics.a $(libORXphysics_a_OBJECTS) $(libORXphysics_a_LIBADD)245 $(RANLIB) libORX physics.a221 libORXsound.a: $(libORXsound_a_OBJECTS) $(libORXsound_a_DEPENDENCIES) 222 -rm -f libORXsound.a 223 $(libORXsound_a_AR) libORXsound.a $(libORXsound_a_OBJECTS) $(libORXsound_a_LIBADD) 224 $(RANLIB) libORXsound.a 246 225 247 226 mostlyclean-compile: … … 251 230 -rm -f *.tab.c 252 231 253 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/field.Po@am__quote@ 254 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gravity.Po@am__quote@ 255 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/physics_connection.Po@am__quote@ 256 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/physics_engine.Po@am__quote@ 257 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/physics_interface.Po@am__quote@ 258 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/point_gravity.Po@am__quote@ 259 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/twirl.Po@am__quote@ 232 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sound_engine.Po@am__quote@ 260 233 261 234 .cc.o: … … 274 247 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 275 248 @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` 276 277 field.o: fields/field.cc278 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT field.o -MD -MP -MF "$(DEPDIR)/field.Tpo" -c -o field.o `test -f 'fields/field.cc' || echo '$(srcdir)/'`fields/field.cc; \279 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/field.Tpo" "$(DEPDIR)/field.Po"; else rm -f "$(DEPDIR)/field.Tpo"; exit 1; fi280 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/field.cc' object='field.o' libtool=no @AMDEPBACKSLASH@281 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/field.Po' tmpdepfile='$(DEPDIR)/field.TPo' @AMDEPBACKSLASH@282 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@283 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o field.o `test -f 'fields/field.cc' || echo '$(srcdir)/'`fields/field.cc284 285 field.obj: fields/field.cc286 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT field.obj -MD -MP -MF "$(DEPDIR)/field.Tpo" -c -o field.obj `if test -f 'fields/field.cc'; then $(CYGPATH_W) 'fields/field.cc'; else $(CYGPATH_W) '$(srcdir)/fields/field.cc'; fi`; \287 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/field.Tpo" "$(DEPDIR)/field.Po"; else rm -f "$(DEPDIR)/field.Tpo"; exit 1; fi288 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/field.cc' object='field.obj' libtool=no @AMDEPBACKSLASH@289 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/field.Po' tmpdepfile='$(DEPDIR)/field.TPo' @AMDEPBACKSLASH@290 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@291 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o field.obj `if test -f 'fields/field.cc'; then $(CYGPATH_W) 'fields/field.cc'; else $(CYGPATH_W) '$(srcdir)/fields/field.cc'; fi`292 293 gravity.o: fields/gravity.cc294 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gravity.o -MD -MP -MF "$(DEPDIR)/gravity.Tpo" -c -o gravity.o `test -f 'fields/gravity.cc' || echo '$(srcdir)/'`fields/gravity.cc; \295 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/gravity.Tpo" "$(DEPDIR)/gravity.Po"; else rm -f "$(DEPDIR)/gravity.Tpo"; exit 1; fi296 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/gravity.cc' object='gravity.o' libtool=no @AMDEPBACKSLASH@297 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/gravity.Po' tmpdepfile='$(DEPDIR)/gravity.TPo' @AMDEPBACKSLASH@298 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@299 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gravity.o `test -f 'fields/gravity.cc' || echo '$(srcdir)/'`fields/gravity.cc300 301 gravity.obj: fields/gravity.cc302 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gravity.obj -MD -MP -MF "$(DEPDIR)/gravity.Tpo" -c -o gravity.obj `if test -f 'fields/gravity.cc'; then $(CYGPATH_W) 'fields/gravity.cc'; else $(CYGPATH_W) '$(srcdir)/fields/gravity.cc'; fi`; \303 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/gravity.Tpo" "$(DEPDIR)/gravity.Po"; else rm -f "$(DEPDIR)/gravity.Tpo"; exit 1; fi304 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/gravity.cc' object='gravity.obj' libtool=no @AMDEPBACKSLASH@305 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/gravity.Po' tmpdepfile='$(DEPDIR)/gravity.TPo' @AMDEPBACKSLASH@306 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@307 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gravity.obj `if test -f 'fields/gravity.cc'; then $(CYGPATH_W) 'fields/gravity.cc'; else $(CYGPATH_W) '$(srcdir)/fields/gravity.cc'; fi`308 309 point_gravity.o: fields/point_gravity.cc310 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT point_gravity.o -MD -MP -MF "$(DEPDIR)/point_gravity.Tpo" -c -o point_gravity.o `test -f 'fields/point_gravity.cc' || echo '$(srcdir)/'`fields/point_gravity.cc; \311 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/point_gravity.Tpo" "$(DEPDIR)/point_gravity.Po"; else rm -f "$(DEPDIR)/point_gravity.Tpo"; exit 1; fi312 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/point_gravity.cc' object='point_gravity.o' libtool=no @AMDEPBACKSLASH@313 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/point_gravity.Po' tmpdepfile='$(DEPDIR)/point_gravity.TPo' @AMDEPBACKSLASH@314 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@315 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o point_gravity.o `test -f 'fields/point_gravity.cc' || echo '$(srcdir)/'`fields/point_gravity.cc316 317 point_gravity.obj: fields/point_gravity.cc318 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT point_gravity.obj -MD -MP -MF "$(DEPDIR)/point_gravity.Tpo" -c -o point_gravity.obj `if test -f 'fields/point_gravity.cc'; then $(CYGPATH_W) 'fields/point_gravity.cc'; else $(CYGPATH_W) '$(srcdir)/fields/point_gravity.cc'; fi`; \319 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/point_gravity.Tpo" "$(DEPDIR)/point_gravity.Po"; else rm -f "$(DEPDIR)/point_gravity.Tpo"; exit 1; fi320 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/point_gravity.cc' object='point_gravity.obj' libtool=no @AMDEPBACKSLASH@321 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/point_gravity.Po' tmpdepfile='$(DEPDIR)/point_gravity.TPo' @AMDEPBACKSLASH@322 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@323 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o point_gravity.obj `if test -f 'fields/point_gravity.cc'; then $(CYGPATH_W) 'fields/point_gravity.cc'; else $(CYGPATH_W) '$(srcdir)/fields/point_gravity.cc'; fi`324 325 twirl.o: fields/twirl.cc326 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT twirl.o -MD -MP -MF "$(DEPDIR)/twirl.Tpo" -c -o twirl.o `test -f 'fields/twirl.cc' || echo '$(srcdir)/'`fields/twirl.cc; \327 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/twirl.Tpo" "$(DEPDIR)/twirl.Po"; else rm -f "$(DEPDIR)/twirl.Tpo"; exit 1; fi328 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/twirl.cc' object='twirl.o' libtool=no @AMDEPBACKSLASH@329 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/twirl.Po' tmpdepfile='$(DEPDIR)/twirl.TPo' @AMDEPBACKSLASH@330 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@331 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o twirl.o `test -f 'fields/twirl.cc' || echo '$(srcdir)/'`fields/twirl.cc332 333 twirl.obj: fields/twirl.cc334 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT twirl.obj -MD -MP -MF "$(DEPDIR)/twirl.Tpo" -c -o twirl.obj `if test -f 'fields/twirl.cc'; then $(CYGPATH_W) 'fields/twirl.cc'; else $(CYGPATH_W) '$(srcdir)/fields/twirl.cc'; fi`; \335 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/twirl.Tpo" "$(DEPDIR)/twirl.Po"; else rm -f "$(DEPDIR)/twirl.Tpo"; exit 1; fi336 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/twirl.cc' object='twirl.obj' libtool=no @AMDEPBACKSLASH@337 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/twirl.Po' tmpdepfile='$(DEPDIR)/twirl.TPo' @AMDEPBACKSLASH@338 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@339 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o twirl.obj `if test -f 'fields/twirl.cc'; then $(CYGPATH_W) 'fields/twirl.cc'; else $(CYGPATH_W) '$(srcdir)/fields/twirl.cc'; fi`340 249 uninstall-info-am: 341 250 … … 389 298 390 299 distdir: $(DISTFILES) 391 $(mkdir_p) $(distdir)/fields392 300 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ 393 301 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ -
orxonox/trunk/src/lib/sound/sound_engine.cc
r4504 r4506 242 242 \brief Sets the doppler values of openAL 243 243 \param dopplerFactor the extent of the doppler-effect 244 \param the Speed the sound travels244 \param dopplerVelocity the Speed the sound travels 245 245 */ 246 246 void SoundEngine::setDopplerValues(ALfloat dopplerFactor, ALfloat dopplerVelocity) -
orxonox/trunk/src/lib/sound/sound_engine.h
r4504 r4506 11 11 12 12 13 #define SOUND_DOPPLER_FACTOR 0.001 //!< A factor for the audible doppler effect14 #define SOUND_DOPPLER_VELOCITY 5000000//!< A factor for the TravelSpeed of sound13 #define SOUND_DOPPLER_FACTOR 0.001 //!< A factor for the audible doppler effect 14 #define SOUND_DOPPLER_VELOCITY 5000000 //!< A factor for the TravelSpeed of sound 15 15 16 16 // FORWARD DEFINITION … … 26 26 ~SoundBuffer(void); 27 27 28 /** \returns the ID of the buffer */28 /** \returns the ID of the buffer used in this SoundBuffer */ 29 29 inline ALuint getID(void) { return this->bufferID; } 30 30 31 31 private: 32 ALuint bufferID;//!< The address of the Buffer.32 ALuint bufferID; //!< The address of the Buffer. 33 33 34 ALsizei size; //!< The size of the Buffer.35 ALboolean loop;//!< loop information.34 ALsizei size; //!< The size of the Buffer. 35 ALboolean loop; //!< loop information. 36 36 }; 37 37 … … 42 42 SoundSource(SoundBuffer* buffer, PNode* sourceNode = NULL); 43 43 ~SoundSource(void); 44 44 45 45 // user interaction 46 46 void play(); … … 48 48 void pause(); 49 49 void rewind(); 50 50 51 51 // development functions 52 52 /** \returns The ID of this Source */ … … 60 60 61 61 private: 62 ALuint sourceID; //!< The ID of the Source63 SoundBuffer* buffer;//!< The buffer to play in this source.64 PNode* sourceNode; //!< The SourceNode represente the position/velocity... of this source.62 ALuint sourceID; //!< The ID of the Source 63 SoundBuffer* buffer; //!< The buffer to play in this source. 64 PNode* sourceNode; //!< The SourceNode represente the position/velocity... of this source. 65 65 }; 66 66 … … 99 99 private: 100 100 SoundEngine(void); 101 static SoundEngine* singletonRef;101 static SoundEngine* singletonRef; //!< Reference to this class 102 102 103 103 104 PNode* listener; //!< The listener of the Scene105 tList<SoundBuffer>* bufferList;//!< A list of buffers106 tList<SoundSource>* sourceList;//!< A list for all the sources in the scene.104 PNode* listener; //!< The listener of the Scene 105 tList<SoundBuffer>* bufferList; //!< A list of buffers 106 tList<SoundSource>* sourceList; //!< A list for all the sources in the scene. 107 107 108 108 }; -
orxonox/trunk/src/lib/tinyxml/Makefile.in
r4504 r4506 204 204 esac; \ 205 205 done; \ 206 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/tinyxml/Makefile'; \206 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/tinyxml/Makefile'; \ 207 207 cd $(top_srcdir) && \ 208 $(AUTOMAKE) -- gnusrc/lib/tinyxml/Makefile208 $(AUTOMAKE) --foreign src/lib/tinyxml/Makefile 209 209 .PRECIOUS: Makefile 210 210 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Note: See TracChangeset
for help on using the changeset viewer.