[armagetronad] 01/04: New upstream version 0.2.8.3.4

Markus Koschany apo at moszumanska.debian.org
Tue Nov 29 13:14:14 UTC 2016


This is an automated email from the git hooks/post-receive script.

apo pushed a commit to branch master
in repository armagetronad.

commit b85b5970d8ce6df6a5229ec4b5a725be6c2241e6
Author: Markus Koschany <apo at debian.org>
Date:   Tue Nov 29 13:57:31 2016 +0100

    New upstream version 0.2.8.3.4
---
 ChangeLog                            |  114 +-
 INSTALL                              |   19 +-
 Makefile.in                          |  448 +++-----
 NEWS                                 |    7 +
 aclocal.m4                           |  690 ++++--------
 batch/Makefile.in                    |  129 +--
 compile                              |  347 ------
 config.sub                           |  292 ++---
 config/Makefile.in                   |  135 +--
 configure                            | 1498 +++++++++++--------------
 configure.ac                         |    6 +-
 depcomp                              |  531 +++------
 desktop/Makefile.in                  |  133 +--
 fingerprint                          |   12 +-
 install-sh                           |   35 +-
 language/deutsch.txt                 |   26 +-
 language/french.txt                  |   10 +-
 language/polish.txt                  |   26 +-
 language/polish_transliterated.txt   |   26 +-
 language/spanish.txt                 |   34 +-
 missing                              |  461 +++++---
 resource/Makefile.in                 |  113 +-
 src/Makefile.in                      | 2052 ++++++++++++++++------------------
 src/config_ide.h                     |    2 +-
 src/doc/Makefile.in                  |  306 +++--
 src/doc/bugs.html                    |    4 +-
 src/doc/changelog.html               |    4 +-
 src/doc/commands.html                |    4 +-
 src/doc/compile.html                 |    4 +-
 src/doc/config.html                  |    4 +-
 src/doc/faq.html                     |    4 +-
 src/doc/index.html                   |    4 +-
 src/doc/install_linux.html           |    8 +-
 src/doc/install_macosx.html          |    2 +-
 src/doc/install_windows.html         |    4 +-
 src/doc/net/Makefile.in              |  131 +--
 src/doc/net/index.html               |    4 +-
 src/doc/net/lower.html               |    4 +-
 src/doc/net/middle.html              |    4 +-
 src/doc/net/upper.html               |    4 +-
 src/doc/network.html                 |    4 +-
 src/doc/readme_macosx.html           |    2 +-
 src/doc/todo.html                    |    4 +-
 src/doc/versions.html                |    4 +-
 src/engine/eCamera.cpp               |    6 +-
 src/engine/eNetGameObject.cpp        |    6 +-
 src/engine/ePlayer.cpp               |   15 +-
 src/engine/eSound.cpp                |    6 +-
 src/engine/eTeam.cpp                 |   15 +-
 src/engine/eTeam.h                   |    4 +-
 src/first/Makefile.in                |  113 +-
 src/macosx/config_common.h.in        |    2 +-
 src/network/nNetObject.cpp           |   17 +-
 src/network/nNetObject.h             |   22 +-
 src/network/nSocket.cpp              |    2 +
 src/thirdparty/Makefile.in           |  285 ++---
 src/thirdparty/particles/Makefile.in |  292 ++---
 src/tools/tError.cpp                 |    5 +
 src/tools/tError.h                   |    4 +
 src/tools/tHeap.cpp                  |    2 +-
 src/tools/tLinkedList.cpp            |   10 +-
 src/tools/tLocale.cpp                |    7 +
 src/tools/tLocale.h                  |   11 +-
 src/tools/tResourceManager.cpp       |    2 +-
 src/tools/tSafePTR.h                 |   15 +-
 src/ui/uInput.cpp                    |    3 +-
 66 files changed, 3474 insertions(+), 5025 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 3eb2bb0..712a2be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,119 @@
 ------------------------------------------------------------------------
-r10712 | z-man | 2015-01-29 23:53:15 +0100 (Thu, 29 Jan 2015) | 2 lines
+r10875 | z-man | 2016-11-27 11:00:45 +0100 (Sun, 27 Nov 2016) | 2 lines
 
-Tagging 0.2.8.3.3_rc1
+Tagging 0.2.8.3.4
 
 ------------------------------------------------------------------------
+r10867 | z-man | 2016-11-08 23:07:19 +0100 (Tue, 08 Nov 2016) | 3 lines
+
+Tagging 0.2.8.3.4_rc1.
+
+
+------------------------------------------------------------------------
+r10866 | z-man | 2016-11-08 23:04:58 +0100 (Tue, 08 Nov 2016) | 4 lines
+
+Turning the undefined crashy functions into functions that should work
+fine even on gcc6 by tricking it to actually perform checks on the
+this pointer. Just as an extra safety net.
+
+------------------------------------------------------------------------
+r10865 | z-man | 2016-11-08 23:03:32 +0100 (Tue, 08 Nov 2016) | 2 lines
+
+Formatting.
+
+------------------------------------------------------------------------
+r10861 | z-man | 2016-10-25 00:19:46 +0200 (Tue, 25 Oct 2016) | 2 lines
+
+More NULL checks and assertions. None of them were problematic.
+
+------------------------------------------------------------------------
+r10860 | z-man | 2016-10-25 00:19:18 +0200 (Tue, 25 Oct 2016) | 5 lines
+
+Proper NULL checks for list sorting, the ones in tLinkedList just for
+safety (can't really be NULL at that point, but careless code changes may
+change that). The only problematic case would be sorting an empty
+list, which does not happen with the current (hardcoded) data.
+
+------------------------------------------------------------------------
+r10859 | z-man | 2016-10-25 00:15:41 +0200 (Tue, 25 Oct 2016) | 2 lines
+
+Removed unused function.
+
+------------------------------------------------------------------------
+r10858 | z-man | 2016-10-25 00:14:57 +0200 (Tue, 25 Oct 2016) | 3 lines
+
+In the spirit of proper testing, make calls that crash a gcc 6 build
+crash for everyone. Will probably revert for full release.
+
+------------------------------------------------------------------------
+r10857 | z-man | 2016-10-25 00:13:28 +0200 (Tue, 25 Oct 2016) | 5 lines
+
+Fixed two misleading indentations, one of them was indeed hiding
+faulty logic. The effect was just stuff written to a non-open file
+stream in case the file could not be opened for writing, so probably
+harmless.
+
+------------------------------------------------------------------------
+r10856 | z-man | 2016-10-25 00:08:57 +0200 (Tue, 25 Oct 2016) | 2 lines
+
+Proper fopen return value check. Sort of merged from 0.2.8.
+
+------------------------------------------------------------------------
+r10855 | z-man | 2016-10-25 00:06:48 +0200 (Tue, 25 Oct 2016) | 2 lines
+
+Added tASSERT_THIS for compiler warning free assertions that the this pointer is valid.
+
+------------------------------------------------------------------------
+r10854 | z-man | 2016-10-25 00:01:43 +0200 (Tue, 25 Oct 2016) | 2 lines
+
+Proper NULL pointer checks instead of this checks here, too.
+
+------------------------------------------------------------------------
+r10851 | z-man | 2016-10-24 02:05:22 +0200 (Mon, 24 Oct 2016) | 2 lines
+
+All builds from this branch are now probably BETA.
+
+------------------------------------------------------------------------
+r10848 | z-man | 2016-10-24 00:53:31 +0200 (Mon, 24 Oct 2016) | 3 lines
+
+Marked memory manager as currently broken (gcc 6 compatibility
+problems) and disabled its activation for debug builds.
+
+------------------------------------------------------------------------
+r10847 | z-man | 2016-10-24 00:29:51 +0200 (Mon, 24 Oct 2016) | 1 line
+
+Updating NEWS
+------------------------------------------------------------------------
+r10846 | z-man | 2016-10-24 00:20:10 +0200 (Mon, 24 Oct 2016) | 2 lines
+
+Another gcc-6 related crashfix due to undefined behavior.
+
+------------------------------------------------------------------------
+r10845 | z-man | 2016-10-24 00:13:56 +0200 (Mon, 24 Oct 2016) | 1 line
+
+Merging gcc-6 fixes from 0.2.8
+------------------------------------------------------------------------
+r10740 | z-man | 2015-02-26 20:28:18 +0100 (Thu, 26 Feb 2015) | 2 lines
+
+Updating NEWS and releasenotes.txt for 0.2.8.3.3
+
+------------------------------------------------------------------------
+r10736 | z-man | 2015-02-16 06:55:52 +0100 (Mon, 16 Feb 2015) | 4 lines
+
+Merge from 0.2.8:
+png_sig_cmp is in both libpng12 and libpng14, where as png_check_sig is only libpng12 --ssuominen
+
+
+------------------------------------------------------------------------
+r10730 | z-man | 2015-02-04 23:19:32 +0100 (Wed, 04 Feb 2015) | 2 lines
+
+Radical solution: disabling generation of uninstall script.
+
+------------------------------------------------------------------------
+r10717 | z-man | 2015-01-30 00:33:35 +0100 (Fri, 30 Jan 2015) | 1 line
+
+merging version script adaptions
+------------------------------------------------------------------------
 r10706 | z-man | 2015-01-29 23:39:48 +0100 (Thu, 29 Jan 2015) | 1 line
 
 Merging fixes for various potential bugs from 0.2.8.
diff --git a/INSTALL b/INSTALL
index 2099840..7d1c323 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,8 +1,8 @@
 Installation Instructions
 *************************
 
-Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
-Inc.
+Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 
    Copying and distribution of this file, with or without modification,
 are permitted in any medium without royalty provided the copyright
@@ -12,8 +12,8 @@ without warranty of any kind.
 Basic Installation
 ==================
 
-   Briefly, the shell command `./configure && make && make install'
-should configure, build, and install this package.  The following
+   Briefly, the shell commands `./configure; make; make install' should
+configure, build, and install this package.  The following
 more-detailed instructions are generic; see the `README' file for
 instructions specific to this package.  Some packages provide this
 `INSTALL' file but do not implement all of the features documented
@@ -226,11 +226,6 @@ order to use an ANSI C compiler:
 
 and if that doesn't work, install pre-built binaries of GCC for HP-UX.
 
-   HP-UX `make' updates targets which have the same time stamps as
-their prerequisites, which makes it generally unusable when shipped
-generated files such as `configure' are involved.  Use GNU `make'
-instead.
-
    On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
 parse its `<wchar.h>' header file.  The option `-nodtk' can be used as
 a workaround.  If GNU CC is not installed, it is therefore recommended
@@ -309,10 +304,9 @@ causes the specified `gcc' to be used as the C compiler (unless it is
 overridden in the site shell script).
 
 Unfortunately, this technique does not work for `CONFIG_SHELL' due to
-an Autoconf limitation.  Until the limitation is lifted, you can use
-this workaround:
+an Autoconf bug.  Until the bug is fixed you can use this workaround:
 
-     CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
+     CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
 
 `configure' Invocation
 ======================
@@ -368,3 +362,4 @@ operates.
 
 `configure' also accepts some other, not widely useful, options.  Run
 `configure --help' for more details.
+
diff --git a/Makefile.in b/Makefile.in
index 26f90cf..6e9b1e3 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
-
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -20,51 +21,6 @@
 ##################
 
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -84,12 +40,13 @@ POST_UNINSTALL = :
 build_triplet = @build@
 host_triplet = @host@
 target_triplet = @target@
-DIST_COMMON = $(top_srcdir)/Makefile.manual INSTALL NEWS README \
-	AUTHORS ChangeLog $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
-	$(top_srcdir)/configure $(am__configure_deps) \
-	$(srcdir)/config.h.in $(top_srcdir)/language/languages.txt.in \
-	$(nobase_dist_language_DATA) COPYING compile config.guess \
-	config.sub depcomp install-sh missing
+DIST_COMMON = README $(am__configure_deps) \
+	$(nobase_dist_language_DATA) $(srcdir)/Makefile.am \
+	$(srcdir)/Makefile.in $(srcdir)/config.h.in \
+	$(top_srcdir)/Makefile.manual $(top_srcdir)/configure \
+	$(top_srcdir)/language/languages.txt.in AUTHORS COPYING \
+	ChangeLog INSTALL NEWS config.guess config.sub depcomp \
+	install-sh missing
 subdir = .
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
@@ -102,33 +59,15 @@ mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = config.h
 CONFIG_CLEAN_FILES = language/languages.txt
 CONFIG_CLEAN_VPATH_FILES =
-AM_V_P = $(am__v_P_ at AM_V@)
-am__v_P_ = $(am__v_P_ at AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
 SOURCES =
 DIST_SOURCES =
-RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
-	ctags-recursive dvi-recursive html-recursive info-recursive \
-	install-data-recursive install-dvi-recursive \
-	install-exec-recursive install-html-recursive \
-	install-info-recursive install-pdf-recursive \
-	install-ps-recursive install-recursive installcheck-recursive \
-	installdirs-recursive pdf-recursive ps-recursive \
-	tags-recursive uninstall-recursive
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
+	html-recursive info-recursive install-data-recursive \
+	install-dvi-recursive install-exec-recursive \
+	install-html-recursive install-info-recursive \
+	install-pdf-recursive install-ps-recursive install-recursive \
+	installcheck-recursive installdirs-recursive pdf-recursive \
+	ps-recursive uninstall-recursive
 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 am__vpath_adj = case $$p in \
     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
@@ -150,12 +89,6 @@ am__nobase_list = $(am__nobase_strip_setup); \
 am__base_list = \
   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
-am__uninstall_files_from_dir = { \
-  test -z "$$files" \
-    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
-    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
-         $(am__cd) "$$dir" && rm -f $$files; }; \
-  }
 am__installdirs = "$(DESTDIR)$(languagedir)" \
 	"$(DESTDIR)$(languagedir)" "$(DESTDIR)$(modeldir)" \
 	"$(DESTDIR)$(sounddir)" "$(DESTDIR)$(texturedir)"
@@ -164,44 +97,19 @@ DATA = $(nobase_dist_language_DATA) $(nobase_language_DATA) \
 	$(nobase_texture_DATA)
 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
   distclean-recursive maintainer-clean-recursive
-am__recursive_targets = \
-  $(RECURSIVE_TARGETS) \
-  $(RECURSIVE_CLEAN_TARGETS) \
-  $(am__extra_recursive_targets)
-AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
-	cscope distdir dist dist-all distcheck
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
-	$(LISP)config.h.in
-# Read a list of newline-separated strings from the standard input,
-# and print each of them once, without duplicates.  Input order is
-# *not* preserved.
-am__uniquify_input = $(AWK) '\
-  BEGIN { nonempty = 0; } \
-  { items[$$0] = 1; nonempty = 1; } \
-  END { if (nonempty) { for (i in items) print i; }; } \
-'
-# Make sure the list of sources is unique.  This is necessary because,
-# e.g., the same source file might be shared among _SOURCES variables
-# for different programs/libraries.
-am__define_uniq_tagged_files = \
-  list='$(am__tagged_files)'; \
-  unique=`for i in $$list; do \
-    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-  done | $(am__uniquify_input)`
+AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
+	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
+	distdir dist dist-all distcheck
 ETAGS = etags
 CTAGS = ctags
-CSCOPE = cscope
 DIST_SUBDIRS = $(SUBDIRS)
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
 top_distdir = $(distdir)
 am__remove_distdir = \
-  if test -d "$(distdir)"; then \
-    find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
-      && rm -rf "$(distdir)" \
-      || { sleep 5 && rm -rf "$(distdir)"; }; \
-  else :; fi
-am__post_remove_distdir = $(am__remove_distdir)
+  { test ! -d "$(distdir)" \
+    || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
+         && rm -fr "$(distdir)"; }; }
 am__relativize = \
   dir0=`pwd`; \
   sed_first='s,^\([^/]*\)/.*$$,\1,'; \
@@ -229,14 +137,10 @@ am__relativize = \
   reldir="$$dir2"
 DIST_ARCHIVES = $(distdir).tar.gz
 GZIP_ENV = --best
-DIST_TARGETS = dist-gzip
 distuninstallcheck_listfiles = find . -type f -print
-am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
-  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
 distcleancheck_listfiles = find . -type f -print
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APBUILD_CC = @APBUILD_CC@
 APBUILD_CXX1 = @APBUILD_CXX1@
 APBUILD_CXX2 = @APBUILD_CXX2@
@@ -463,7 +367,7 @@ all: config.h
 	$(MAKE) $(AM_MAKEFLAGS) all-recursive
 
 .SUFFIXES:
-am--refresh: Makefile
+am--refresh:
 	@:
 $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/Makefile.manual $(am__configure_deps)
 	@for dep in $?; do \
@@ -488,7 +392,6 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
 	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
 	esac;
-$(top_srcdir)/Makefile.manual:
 
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 	$(SHELL) ./config.status --recheck
@@ -500,8 +403,10 @@ $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 $(am__aclocal_m4_deps):
 
 config.h: stamp-h1
-	@test -f $@ || rm -f stamp-h1
-	@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
+	@if test ! -f $@; then \
+	  rm -f stamp-h1; \
+	  $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
+	else :; fi
 
 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
 	@rm -f stamp-h1
@@ -517,18 +422,15 @@ language/languages.txt: $(top_builddir)/config.status $(top_srcdir)/language/lan
 	cd $(top_builddir) && $(SHELL) ./config.status $@
 install-nobase_dist_languageDATA: $(nobase_dist_language_DATA)
 	@$(NORMAL_INSTALL)
+	test -z "$(languagedir)" || $(MKDIR_P) "$(DESTDIR)$(languagedir)"
 	@list='$(nobase_dist_language_DATA)'; test -n "$(languagedir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(languagedir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(languagedir)" || exit 1; \
-	fi; \
 	$(am__nobase_list) | while read dir files; do \
 	  xfiles=; for file in $$files; do \
 	    if test -f "$$file"; then xfiles="$$xfiles $$file"; \
 	    else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
 	  test -z "$$xfiles" || { \
 	    test "x$$dir" = x. || { \
-	      echo " $(MKDIR_P) '$(DESTDIR)$(languagedir)/$$dir'"; \
+	      echo "$(MKDIR_P) '$(DESTDIR)$(languagedir)/$$dir'"; \
 	      $(MKDIR_P) "$(DESTDIR)$(languagedir)/$$dir"; }; \
 	    echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(languagedir)/$$dir'"; \
 	    $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(languagedir)/$$dir" || exit $$?; }; \
@@ -538,21 +440,20 @@ uninstall-nobase_dist_languageDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(nobase_dist_language_DATA)'; test -n "$(languagedir)" || list=; \
 	$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
-	dir='$(DESTDIR)$(languagedir)'; $(am__uninstall_files_from_dir)
+	test -n "$$files" || exit 0; \
+	echo " ( cd '$(DESTDIR)$(languagedir)' && rm -f" $$files ")"; \
+	cd "$(DESTDIR)$(languagedir)" && rm -f $$files
 install-nobase_languageDATA: $(nobase_language_DATA)
 	@$(NORMAL_INSTALL)
+	test -z "$(languagedir)" || $(MKDIR_P) "$(DESTDIR)$(languagedir)"
 	@list='$(nobase_language_DATA)'; test -n "$(languagedir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(languagedir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(languagedir)" || exit 1; \
-	fi; \
 	$(am__nobase_list) | while read dir files; do \
 	  xfiles=; for file in $$files; do \
 	    if test -f "$$file"; then xfiles="$$xfiles $$file"; \
 	    else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
 	  test -z "$$xfiles" || { \
 	    test "x$$dir" = x. || { \
-	      echo " $(MKDIR_P) '$(DESTDIR)$(languagedir)/$$dir'"; \
+	      echo "$(MKDIR_P) '$(DESTDIR)$(languagedir)/$$dir'"; \
 	      $(MKDIR_P) "$(DESTDIR)$(languagedir)/$$dir"; }; \
 	    echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(languagedir)/$$dir'"; \
 	    $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(languagedir)/$$dir" || exit $$?; }; \
@@ -562,21 +463,20 @@ uninstall-nobase_languageDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(nobase_language_DATA)'; test -n "$(languagedir)" || list=; \
 	$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
-	dir='$(DESTDIR)$(languagedir)'; $(am__uninstall_files_from_dir)
+	test -n "$$files" || exit 0; \
+	echo " ( cd '$(DESTDIR)$(languagedir)' && rm -f" $$files ")"; \
+	cd "$(DESTDIR)$(languagedir)" && rm -f $$files
 install-nobase_modelDATA: $(nobase_model_DATA)
 	@$(NORMAL_INSTALL)
+	test -z "$(modeldir)" || $(MKDIR_P) "$(DESTDIR)$(modeldir)"
 	@list='$(nobase_model_DATA)'; test -n "$(modeldir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(modeldir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(modeldir)" || exit 1; \
-	fi; \
 	$(am__nobase_list) | while read dir files; do \
 	  xfiles=; for file in $$files; do \
 	    if test -f "$$file"; then xfiles="$$xfiles $$file"; \
 	    else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
 	  test -z "$$xfiles" || { \
 	    test "x$$dir" = x. || { \
-	      echo " $(MKDIR_P) '$(DESTDIR)$(modeldir)/$$dir'"; \
+	      echo "$(MKDIR_P) '$(DESTDIR)$(modeldir)/$$dir'"; \
 	      $(MKDIR_P) "$(DESTDIR)$(modeldir)/$$dir"; }; \
 	    echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(modeldir)/$$dir'"; \
 	    $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(modeldir)/$$dir" || exit $$?; }; \
@@ -586,21 +486,20 @@ uninstall-nobase_modelDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(nobase_model_DATA)'; test -n "$(modeldir)" || list=; \
 	$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
-	dir='$(DESTDIR)$(modeldir)'; $(am__uninstall_files_from_dir)
+	test -n "$$files" || exit 0; \
+	echo " ( cd '$(DESTDIR)$(modeldir)' && rm -f" $$files ")"; \
+	cd "$(DESTDIR)$(modeldir)" && rm -f $$files
 install-nobase_soundDATA: $(nobase_sound_DATA)
 	@$(NORMAL_INSTALL)
+	test -z "$(sounddir)" || $(MKDIR_P) "$(DESTDIR)$(sounddir)"
 	@list='$(nobase_sound_DATA)'; test -n "$(sounddir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(sounddir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(sounddir)" || exit 1; \
-	fi; \
 	$(am__nobase_list) | while read dir files; do \
 	  xfiles=; for file in $$files; do \
 	    if test -f "$$file"; then xfiles="$$xfiles $$file"; \
 	    else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
 	  test -z "$$xfiles" || { \
 	    test "x$$dir" = x. || { \
-	      echo " $(MKDIR_P) '$(DESTDIR)$(sounddir)/$$dir'"; \
+	      echo "$(MKDIR_P) '$(DESTDIR)$(sounddir)/$$dir'"; \
 	      $(MKDIR_P) "$(DESTDIR)$(sounddir)/$$dir"; }; \
 	    echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(sounddir)/$$dir'"; \
 	    $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(sounddir)/$$dir" || exit $$?; }; \
@@ -610,21 +509,20 @@ uninstall-nobase_soundDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(nobase_sound_DATA)'; test -n "$(sounddir)" || list=; \
 	$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
-	dir='$(DESTDIR)$(sounddir)'; $(am__uninstall_files_from_dir)
+	test -n "$$files" || exit 0; \
+	echo " ( cd '$(DESTDIR)$(sounddir)' && rm -f" $$files ")"; \
+	cd "$(DESTDIR)$(sounddir)" && rm -f $$files
 install-nobase_textureDATA: $(nobase_texture_DATA)
 	@$(NORMAL_INSTALL)
+	test -z "$(texturedir)" || $(MKDIR_P) "$(DESTDIR)$(texturedir)"
 	@list='$(nobase_texture_DATA)'; test -n "$(texturedir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(texturedir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(texturedir)" || exit 1; \
-	fi; \
 	$(am__nobase_list) | while read dir files; do \
 	  xfiles=; for file in $$files; do \
 	    if test -f "$$file"; then xfiles="$$xfiles $$file"; \
 	    else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
 	  test -z "$$xfiles" || { \
 	    test "x$$dir" = x. || { \
-	      echo " $(MKDIR_P) '$(DESTDIR)$(texturedir)/$$dir'"; \
+	      echo "$(MKDIR_P) '$(DESTDIR)$(texturedir)/$$dir'"; \
 	      $(MKDIR_P) "$(DESTDIR)$(texturedir)/$$dir"; }; \
 	    echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(texturedir)/$$dir'"; \
 	    $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(texturedir)/$$dir" || exit $$?; }; \
@@ -634,28 +532,27 @@ uninstall-nobase_textureDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(nobase_texture_DATA)'; test -n "$(texturedir)" || list=; \
 	$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
-	dir='$(DESTDIR)$(texturedir)'; $(am__uninstall_files_from_dir)
+	test -n "$$files" || exit 0; \
+	echo " ( cd '$(DESTDIR)$(texturedir)' && rm -f" $$files ")"; \
+	cd "$(DESTDIR)$(texturedir)" && rm -f $$files
 
 # This directory's subdirectories are mostly independent; you can cd
-# into them and run 'make' without going through this Makefile.
-# To change the values of 'make' variables: instead of editing Makefiles,
-# (1) if the variable is set in 'config.status', edit 'config.status'
-#     (which will cause the Makefiles to be regenerated when you run 'make');
-# (2) otherwise, pass the desired values on the 'make' command line.
-$(am__recursive_targets):
-	@fail=; \
-	if $(am__make_keepgoing); then \
-	  failcom='fail=yes'; \
-	else \
-	  failcom='exit 1'; \
-	fi; \
+# into them and run `make' without going through this Makefile.
+# To change the values of `make' variables: instead of editing Makefiles,
+# (1) if the variable is set in `config.status', edit `config.status'
+#     (which will cause the Makefiles to be regenerated when you run `make');
+# (2) otherwise, pass the desired values on the `make' command line.
+$(RECURSIVE_TARGETS):
+	@fail= failcom='exit 1'; \
+	for f in x $$MAKEFLAGS; do \
+	  case $$f in \
+	    *=* | --[!k]*);; \
+	    *k*) failcom='fail=yes';; \
+	  esac; \
+	done; \
 	dot_seen=no; \
 	target=`echo $@ | sed s/-recursive//`; \
-	case "$@" in \
-	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
-	  *) list='$(SUBDIRS)' ;; \
-	esac; \
-	for subdir in $$list; do \
+	list='$(SUBDIRS)'; for subdir in $$list; do \
 	  echo "Making $$target in $$subdir"; \
 	  if test "$$subdir" = "."; then \
 	    dot_seen=yes; \
@@ -670,12 +567,57 @@ $(am__recursive_targets):
 	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 	fi; test -z "$$fail"
 
-ID: $(am__tagged_files)
-	$(am__define_uniq_tagged_files); mkid -fID $$unique
-tags: tags-recursive
-TAGS: tags
+$(RECURSIVE_CLEAN_TARGETS):
+	@fail= failcom='exit 1'; \
+	for f in x $$MAKEFLAGS; do \
+	  case $$f in \
+	    *=* | --[!k]*);; \
+	    *k*) failcom='fail=yes';; \
+	  esac; \
+	done; \
+	dot_seen=no; \
+	case "$@" in \
+	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+	  *) list='$(SUBDIRS)' ;; \
+	esac; \
+	rev=''; for subdir in $$list; do \
+	  if test "$$subdir" = "."; then :; else \
+	    rev="$$subdir $$rev"; \
+	  fi; \
+	done; \
+	rev="$$rev ."; \
+	target=`echo $@ | sed s/-recursive//`; \
+	for subdir in $$rev; do \
+	  echo "Making $$target in $$subdir"; \
+	  if test "$$subdir" = "."; then \
+	    local_target="$$target-am"; \
+	  else \
+	    local_target="$$target"; \
+	  fi; \
+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+	  || eval $$failcom; \
+	done && test -z "$$fail"
+tags-recursive:
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+	done
+ctags-recursive:
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
+	done
 
-tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+	mkid -fID $$unique
+tags: TAGS
+
+TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
 	set x; \
 	here=`pwd`; \
 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
@@ -691,7 +633,12 @@ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
 	  fi; \
 	done; \
-	$(am__define_uniq_tagged_files); \
+	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 	shift; \
 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 	  test -n "$$unique" || unique=$$empty_fix; \
@@ -703,11 +650,15 @@ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 	      $$unique; \
 	  fi; \
 	fi
-ctags: ctags-recursive
-
-CTAGS: ctags
-ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
-	$(am__define_uniq_tagged_files); \
+ctags: CTAGS
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
+	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 	test -z "$(CTAGS_ARGS)$$unique" \
 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 	     $$unique
@@ -716,31 +667,9 @@ GTAGS:
 	here=`$(am__cd) $(top_builddir) && pwd` \
 	  && $(am__cd) $(top_srcdir) \
 	  && gtags -i $(GTAGS_ARGS) "$$here"
-cscope: cscope.files
-	test ! -s cscope.files \
-	  || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
-clean-cscope:
-	-rm -f cscope.files
-cscope.files: clean-cscope cscopelist
-cscopelist: cscopelist-recursive
-
-cscopelist-am: $(am__tagged_files)
-	list='$(am__tagged_files)'; \
-	case "$(srcdir)" in \
-	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
-	  *) sdir=$(subdir)/$(srcdir) ;; \
-	esac; \
-	for i in $$list; do \
-	  if test -f "$$i"; then \
-	    echo "$(subdir)/$$i"; \
-	  else \
-	    echo "$$sdir/$$i"; \
-	  fi; \
-	done >> $(top_builddir)/cscope.files
 
 distclean-tags:
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-	-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
 
 distdir: $(DISTFILES)
 	$(am__remove_distdir)
@@ -776,10 +705,13 @@ distdir: $(DISTFILES)
 	done
 	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 	  if test "$$subdir" = .; then :; else \
-	    $(am__make_dryrun) \
-	      || test -d "$(distdir)/$$subdir" \
-	      || $(MKDIR_P) "$(distdir)/$$subdir" \
-	      || exit 1; \
+	    test -d "$(distdir)/$$subdir" \
+	    || $(MKDIR_P) "$(distdir)/$$subdir" \
+	    || exit 1; \
+	  fi; \
+	done
+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+	  if test "$$subdir" = .; then :; else \
 	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 	    $(am__relativize); \
 	    new_distdir=$$reldir; \
@@ -811,42 +743,36 @@ distdir: $(DISTFILES)
 	|| chmod -R a+r "$(distdir)"
 dist-gzip: distdir
 	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
-	$(am__post_remove_distdir)
+	$(am__remove_distdir)
 
 dist-bzip2: distdir
-	tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
-	$(am__post_remove_distdir)
+	tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
+	$(am__remove_distdir)
 
-dist-lzip: distdir
-	tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
-	$(am__post_remove_distdir)
+dist-lzma: distdir
+	tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
+	$(am__remove_distdir)
 
 dist-xz: distdir
-	tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
-	$(am__post_remove_distdir)
+	tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
+	$(am__remove_distdir)
 
 dist-tarZ: distdir
-	@echo WARNING: "Support for shar distribution archives is" \
-	               "deprecated." >&2
-	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
 	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
-	$(am__post_remove_distdir)
+	$(am__remove_distdir)
 
 dist-shar: distdir
-	@echo WARNING: "Support for distribution archives compressed with" \
-		       "legacy program 'compress' is deprecated." >&2
-	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
 	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
-	$(am__post_remove_distdir)
+	$(am__remove_distdir)
 
 dist-zip: distdir
 	-rm -f $(distdir).zip
 	zip -rq $(distdir).zip $(distdir)
-	$(am__post_remove_distdir)
+	$(am__remove_distdir)
 
-dist dist-all:
-	$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
-	$(am__post_remove_distdir)
+dist dist-all: distdir
+	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+	$(am__remove_distdir)
 
 # This target untars the dist file and tries a VPATH configuration.  Then
 # it guarantees that the distribution is self-contained by making another
@@ -857,8 +783,8 @@ distcheck: dist
 	  GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
 	*.tar.bz2*) \
 	  bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
-	*.tar.lz*) \
-	  lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
+	*.tar.lzma*) \
+	  lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
 	*.tar.xz*) \
 	  xz -dc $(distdir).tar.xz | $(am__untar) ;;\
 	*.tar.Z*) \
@@ -868,19 +794,17 @@ distcheck: dist
 	*.zip*) \
 	  unzip $(distdir).zip ;;\
 	esac
-	chmod -R a-w $(distdir)
-	chmod u+w $(distdir)
-	mkdir $(distdir)/_build $(distdir)/_inst
+	chmod -R a-w $(distdir); chmod a+w $(distdir)
+	mkdir $(distdir)/_build
+	mkdir $(distdir)/_inst
 	chmod a-w $(distdir)
 	test -d $(distdir)/_build || exit 0; \
 	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
 	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
 	  && am__cwd=`pwd` \
 	  && $(am__cd) $(distdir)/_build \
-	  && ../configure \
-	    $(AM_DISTCHECK_CONFIGURE_FLAGS) \
+	  && ../configure --srcdir=.. --prefix="$$dc_install_base" \
 	    $(DISTCHECK_CONFIGURE_FLAGS) \
-	    --srcdir=.. --prefix="$$dc_install_base" \
 	  && $(MAKE) $(AM_MAKEFLAGS) \
 	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
 	  && $(MAKE) $(AM_MAKEFLAGS) check \
@@ -903,21 +827,13 @@ distcheck: dist
 	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
 	  && cd "$$am__cwd" \
 	  || exit 1
-	$(am__post_remove_distdir)
+	$(am__remove_distdir)
 	@(echo "$(distdir) archives ready for distribution: "; \
 	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
 	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
 distuninstallcheck:
-	@test -n '$(distuninstallcheck_dir)' || { \
-	  echo 'ERROR: trying to run $@ with an empty' \
-	       '$$(distuninstallcheck_dir)' >&2; \
-	  exit 1; \
-	}; \
-	$(am__cd) '$(distuninstallcheck_dir)' || { \
-	  echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
-	  exit 1; \
-	}; \
-	test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
+	@$(am__cd) '$(distuninstallcheck_dir)' \
+	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
 	   || { echo "ERROR: files left after uninstall:" ; \
 	        if test -n "$(DESTDIR)"; then \
 	          echo "  (check DESTDIR support)"; \
@@ -949,15 +865,10 @@ uninstall: uninstall-recursive
 install-am: all-am
 	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 mostlyclean-generic:
 
 clean-generic:
@@ -1046,17 +957,18 @@ uninstall-am: uninstall-nobase_dist_languageDATA \
 	uninstall-nobase_soundDATA uninstall-nobase_textureDATA
 	@$(NORMAL_INSTALL)
 	$(MAKE) $(AM_MAKEFLAGS) uninstall-hook
-.MAKE: $(am__recursive_targets) all install-am install-data-am \
-	install-exec-am install-strip uninstall-am
-
-.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
-	am--refresh check check-am clean clean-cscope clean-generic \
-	clean-local cscope cscopelist-am ctags ctags-am dist dist-all \
-	dist-bzip2 dist-gzip dist-hook dist-lzip dist-shar dist-tarZ \
-	dist-xz dist-zip distcheck distclean distclean-generic \
-	distclean-hdr distclean-local distclean-tags distcleancheck \
-	distdir distuninstallcheck dvi dvi-am html html-am info \
-	info-am install install-am install-data install-data-am \
+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
+	ctags-recursive install-am install-data-am install-exec-am \
+	install-strip tags-recursive uninstall-am
+
+.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
+	all all-am am--refresh check check-am clean clean-generic \
+	clean-local ctags ctags-recursive dist dist-all dist-bzip2 \
+	dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-xz \
+	dist-zip distcheck distclean distclean-generic distclean-hdr \
+	distclean-local distclean-tags distcleancheck distdir \
+	distuninstallcheck dvi dvi-am html html-am info info-am \
+	install install-am install-data install-data-am \
 	install-data-hook install-dvi install-dvi-am install-exec \
 	install-exec-am install-exec-hook install-html install-html-am \
 	install-info install-info-am install-man \
@@ -1066,7 +978,7 @@ uninstall-am: uninstall-nobase_dist_languageDATA \
 	install-ps install-ps-am install-strip installcheck \
 	installcheck-am installdirs installdirs-am maintainer-clean \
 	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
-	pdf-am ps ps-am tags tags-am uninstall uninstall-am \
+	pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
 	uninstall-hook uninstall-nobase_dist_languageDATA \
 	uninstall-nobase_languageDATA uninstall-nobase_modelDATA \
 	uninstall-nobase_soundDATA uninstall-nobase_textureDATA
diff --git a/NEWS b/NEWS
index 243edda..9608cf5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+Changes since 0.2.8.3.3:
+- Eliminated undefined behavior that was fine in gcc 5, but now
+  (rightfully!) turned into crashes in gcc 6.
+- Eliminated compilation disambiguity that was just causing a mild
+  performance degradation in gcc 5 and is now a compilation failure in
+  gcc 6.
+  
 Changes since 0.2.8.3.2:
 - security fix: do not read ahead of the beginning of network buffer.
 - security fix: don't attribute network errors from processing random
diff --git a/aclocal.m4 b/aclocal.m4
index d2198f2..20bb8c5 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -1,7 +1,7 @@
-# generated automatically by aclocal 1.14.1 -*- Autoconf -*-
-
-# Copyright (C) 1996-2013 Free Software Foundation, Inc.
+# generated automatically by aclocal 1.11.1 -*- Autoconf -*-
 
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
+# 2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -11,16 +11,15 @@
 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 # PARTICULAR PURPOSE.
 
-m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
 m4_ifndef([AC_AUTOCONF_VERSION],
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
-m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
-[m4_warning([this file was generated for autoconf 2.69.
+m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
+[m4_warning([this file was generated for autoconf 2.65.
 You have another version of autoconf.  It may work, but is not guaranteed to.
 If you have problems, you may need to regenerate the build system entirely.
-To do so, use the procedure documented by the package, typically 'autoreconf'.])])
+To do so, use the procedure documented by the package, typically `autoreconf'.])])
 
-# Copyright (C) 2002-2013 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -32,10 +31,10 @@ To do so, use the procedure documented by the package, typically 'autoreconf'.])
 # generated from the m4 files accompanying Automake X.Y.
 # (This private macro should not be called outside this file.)
 AC_DEFUN([AM_AUTOMAKE_VERSION],
-[am__api_version='1.14'
+[am__api_version='1.11'
 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
 dnl require some minimum version.  Point them to the right macro.
-m4_if([$1], [1.14.1], [],
+m4_if([$1], [1.11.1], [],
       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
 ])
 
@@ -51,22 +50,22 @@ m4_define([_AM_AUTOCONF_VERSION], [])
 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.14.1])dnl
+[AM_AUTOMAKE_VERSION([1.11.1])dnl
 m4_ifndef([AC_AUTOCONF_VERSION],
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
 
 # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
 
-# Copyright (C) 2001-2013 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
-# $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to
-# '$srcdir', '$srcdir/..', or '$srcdir/../..'.
+# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
+# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
 #
 # Of course, Automake must honor this variable whenever it calls a
 # tool from the auxiliary directory.  The problem is that $srcdir (and
@@ -85,7 +84,7 @@ _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
 #
 # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
 # are both prefixed by $srcdir.  In an in-source build this is usually
-# harmless because $srcdir is '.', but things will broke when you
+# harmless because $srcdir is `.', but things will broke when you
 # start a VPATH build or use an absolute $srcdir.
 #
 # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
@@ -111,19 +110,22 @@ am_aux_dir=`cd $ac_aux_dir && pwd`
 
 # AM_CONDITIONAL                                            -*- Autoconf -*-
 
-# Copyright (C) 1997-2013 Free Software Foundation, Inc.
+# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
+# Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
+# serial 9
+
 # AM_CONDITIONAL(NAME, SHELL-CONDITION)
 # -------------------------------------
 # Define a conditional.
 AC_DEFUN([AM_CONDITIONAL],
-[AC_PREREQ([2.52])dnl
- m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
-       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
+[AC_PREREQ(2.52)dnl
+ ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
+	[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
 AC_SUBST([$1_TRUE])dnl
 AC_SUBST([$1_FALSE])dnl
 _AM_SUBST_NOTMAKE([$1_TRUE])dnl
@@ -142,14 +144,16 @@ AC_CONFIG_COMMANDS_PRE(
 Usually this means the macro was only invoked conditionally.]])
 fi])])
 
-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
+# Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
+# serial 10
 
-# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
+# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
 # written in clear, in which case automake, when reading aclocal.m4,
 # will think it sees a *use*, and therefore will trigger all it's
 # C support machinery.  Also note that it means that autoscan, seeing
@@ -159,7 +163,7 @@ fi])])
 # _AM_DEPENDENCIES(NAME)
 # ----------------------
 # See how the compiler implements dependency checking.
-# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC".
+# NAME is "CC", "CXX", "GCJ", or "OBJC".
 # We try a few techniques and use that to set a single cache variable.
 #
 # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
@@ -172,13 +176,12 @@ AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
 AC_REQUIRE([AM_MAKE_INCLUDE])dnl
 AC_REQUIRE([AM_DEP_TRACK])dnl
 
-m4_if([$1], [CC],   [depcc="$CC"   am_compiler_list=],
-      [$1], [CXX],  [depcc="$CXX"  am_compiler_list=],
-      [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
-      [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
-      [$1], [UPC],  [depcc="$UPC"  am_compiler_list=],
-      [$1], [GCJ],  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
-                    [depcc="$$1"   am_compiler_list=])
+ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
+       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
+       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
+       [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
+       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
+                   [depcc="$$1"   am_compiler_list=])
 
 AC_CACHE_CHECK([dependency style of $depcc],
                [am_cv_$1_dependencies_compiler_type],
@@ -186,9 +189,8 @@ AC_CACHE_CHECK([dependency style of $depcc],
   # We make a subdir and do the tests there.  Otherwise we can end up
   # making bogus files that we don't know about and never remove.  For
   # instance it was reported that on HP-UX the gcc test will end up
-  # making a dummy file named 'D' -- because '-MD' means "put the output
-  # in D".
-  rm -rf conftest.dir
+  # making a dummy file named `D' -- because `-MD' means `put the output
+  # in D'.
   mkdir conftest.dir
   # Copy depcomp to subdir because otherwise we won't find it if we're
   # using a relative directory.
@@ -227,16 +229,16 @@ AC_CACHE_CHECK([dependency style of $depcc],
     : > sub/conftest.c
     for i in 1 2 3 4 5 6; do
       echo '#include "conftst'$i'.h"' >> sub/conftest.c
-      # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
-      # Solaris 10 /bin/sh.
-      echo '/* dummy */' > sub/conftst$i.h
+      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
+      # Solaris 8's {/usr,}/bin/sh.
+      touch sub/conftst$i.h
     done
     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
-    # We check with '-c' and '-o' for the sake of the "dashmstdout"
+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
     # mode.  It turns out that the SunPro C++ compiler does not properly
-    # handle '-M -o', and we need to detect this.  Also, some Intel
-    # versions had trouble with output in subdirs.
+    # handle `-M -o', and we need to detect this.  Also, some Intel
+    # versions had trouble with output in subdirs
     am__obj=sub/conftest.${OBJEXT-o}
     am__minus_obj="-o $am__obj"
     case $depmode in
@@ -245,16 +247,16 @@ AC_CACHE_CHECK([dependency style of $depcc],
       test "$am__universal" = false || continue
       ;;
     nosideeffect)
-      # After this tag, mechanisms are not by side-effect, so they'll
-      # only be used when explicitly requested.
+      # after this tag, mechanisms are not by side-effect, so they'll
+      # only be used when explicitly requested
       if test "x$enable_dependency_tracking" = xyes; then
 	continue
       else
 	break
       fi
       ;;
-    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
-      # This compiler won't grok '-c -o', but also, the minuso test has
+    msvisualcpp | msvcmsys)
+      # This compiler won't grok `-c -o', but also, the minuso test has
       # not run yet.  These depmodes are late enough in the game, and
       # so weak that their functioning should not be impacted.
       am__obj=conftest.${OBJEXT-o}
@@ -302,7 +304,7 @@ AM_CONDITIONAL([am__fastdep$1], [
 # AM_SET_DEPDIR
 # -------------
 # Choose a directory name for dependency files.
-# This macro is AC_REQUIREd in _AM_DEPENDENCIES.
+# This macro is AC_REQUIREd in _AM_DEPENDENCIES
 AC_DEFUN([AM_SET_DEPDIR],
 [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
@@ -312,39 +314,34 @@ AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
 # AM_DEP_TRACK
 # ------------
 AC_DEFUN([AM_DEP_TRACK],
-[AC_ARG_ENABLE([dependency-tracking], [dnl
-AS_HELP_STRING(
-  [--enable-dependency-tracking],
-  [do not reject slow dependency extractors])
-AS_HELP_STRING(
-  [--disable-dependency-tracking],
-  [speeds up one-time build])])
+[AC_ARG_ENABLE(dependency-tracking,
+[  --disable-dependency-tracking  speeds up one-time build
+  --enable-dependency-tracking   do not reject slow dependency extractors])
 if test "x$enable_dependency_tracking" != xno; then
   am_depcomp="$ac_aux_dir/depcomp"
   AMDEPBACKSLASH='\'
-  am__nodep='_no'
 fi
 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
 AC_SUBST([AMDEPBACKSLASH])dnl
 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
-AC_SUBST([am__nodep])dnl
-_AM_SUBST_NOTMAKE([am__nodep])dnl
 ])
 
 # Generate code to set up dependency tracking.              -*- Autoconf -*-
 
-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
+# Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
+#serial 5
 
 # _AM_OUTPUT_DEPENDENCY_COMMANDS
 # ------------------------------
 AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
 [{
-  # Older Autoconf quotes --file arguments for eval, but not when files
+  # Autoconf 2.62 quotes --file arguments for eval, but not when files
   # are listed without --file.  Let's play safe and only enable the eval
   # if we detect the quoting.
   case $CONFIG_FILES in
@@ -357,7 +354,7 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
     # Strip MF so we end up with the name of the file.
     mf=`echo "$mf" | sed -e 's/:.*$//'`
     # Check whether this is an Automake generated Makefile or not.
-    # We used to match only the files named 'Makefile.in', but
+    # We used to match only the files named `Makefile.in', but
     # some people rename them; so instead we look at the file content.
     # Grep'ing the first line is not enough: some people post-process
     # each Makefile.in and add a new line on top of each file to say so.
@@ -369,19 +366,21 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
       continue
     fi
     # Extract the definition of DEPDIR, am__include, and am__quote
-    # from the Makefile without running 'make'.
+    # from the Makefile without running `make'.
     DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
     test -z "$DEPDIR" && continue
     am__include=`sed -n 's/^am__include = //p' < "$mf"`
-    test -z "$am__include" && continue
+    test -z "am__include" && continue
     am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
+    # When using ansi2knr, U may be empty or an underscore; expand it
+    U=`sed -n 's/^U = //p' < "$mf"`
     # Find all dependency output files, they are included files with
     # $(DEPDIR) in their names.  We invoke sed twice because it is the
     # simplest approach to changing $(DEPDIR) to its actual value in the
     # expansion.
     for file in `sed -n "
       s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
-	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
+	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
       # Make sure the directory exists.
       test -f "$dirpart/$file" && continue
       fdir=`AS_DIRNAME(["$file"])`
@@ -399,7 +398,7 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
 # This macro should only be invoked once -- use via AC_REQUIRE.
 #
 # This code is only required when automatic dependency tracking
-# is enabled.  FIXME.  This creates each '.P' file that we will
+# is enabled.  FIXME.  This creates each `.P' file that we will
 # need in order to bootstrap the dependency handling code.
 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
 [AC_CONFIG_COMMANDS([depfiles],
@@ -409,21 +408,18 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
 
 # Do all the work for Automake.                             -*- Autoconf -*-
 
-# Copyright (C) 1996-2013 Free Software Foundation, Inc.
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
+# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
+# serial 16
+
 # This macro actually does too much.  Some checks are only needed if
 # your package does certain things.  But this isn't really a big deal.
 
-dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.
-m4_define([AC_PROG_CC],
-m4_defn([AC_PROG_CC])
-[_AM_PROG_CC_C_O
-])
-
 # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
 # AM_INIT_AUTOMAKE([OPTIONS])
 # -----------------------------------------------
@@ -436,7 +432,7 @@ m4_defn([AC_PROG_CC])
 # arguments mandatory, and then we can depend on a new Autoconf
 # release and drop the old call support.
 AC_DEFUN([AM_INIT_AUTOMAKE],
-[AC_PREREQ([2.65])dnl
+[AC_PREREQ([2.62])dnl
 dnl Autoconf wants to disallow AM_ names.  We explicitly allow
 dnl the ones we care about.
 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
@@ -465,40 +461,31 @@ AC_SUBST([CYGPATH_W])
 # Define the identity of the package.
 dnl Distinguish between old-style and new-style calls.
 m4_ifval([$2],
-[AC_DIAGNOSE([obsolete],
-             [$0: two- and three-arguments forms are deprecated.])
-m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
+[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
  AC_SUBST([PACKAGE], [$1])dnl
  AC_SUBST([VERSION], [$2])],
 [_AM_SET_OPTIONS([$1])dnl
 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
-m4_if(
-  m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
-  [ok:ok],,
+m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
   [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
 
 _AM_IF_OPTION([no-define],,
-[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
- AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
+[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
+ AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
 
 # Some tools Automake needs.
 AC_REQUIRE([AM_SANITY_CHECK])dnl
 AC_REQUIRE([AC_ARG_PROGRAM])dnl
-AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
-AM_MISSING_PROG([AUTOCONF], [autoconf])
-AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
-AM_MISSING_PROG([AUTOHEADER], [autoheader])
-AM_MISSING_PROG([MAKEINFO], [makeinfo])
+AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
+AM_MISSING_PROG(AUTOCONF, autoconf)
+AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
+AM_MISSING_PROG(AUTOHEADER, autoheader)
+AM_MISSING_PROG(MAKEINFO, makeinfo)
 AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
 AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
-AC_REQUIRE([AC_PROG_MKDIR_P])dnl
-# For better backward compatibility.  To be removed once Automake 1.9.x
-# dies out for good.  For more background, see:
-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
-AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
+AC_REQUIRE([AM_PROG_MKDIR_P])dnl
 # We need awk for the "check" target.  The system "awk" is bad on
 # some platforms.
 AC_REQUIRE([AC_PROG_AWK])dnl
@@ -509,78 +496,34 @@ _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
 			     [_AM_PROG_TAR([v7])])])
 _AM_IF_OPTION([no-dependencies],,
 [AC_PROVIDE_IFELSE([AC_PROG_CC],
-		  [_AM_DEPENDENCIES([CC])],
-		  [m4_define([AC_PROG_CC],
-			     m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
+		  [_AM_DEPENDENCIES(CC)],
+		  [define([AC_PROG_CC],
+			  defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
 AC_PROVIDE_IFELSE([AC_PROG_CXX],
-		  [_AM_DEPENDENCIES([CXX])],
-		  [m4_define([AC_PROG_CXX],
-			     m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
+		  [_AM_DEPENDENCIES(CXX)],
+		  [define([AC_PROG_CXX],
+			  defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
-		  [_AM_DEPENDENCIES([OBJC])],
-		  [m4_define([AC_PROG_OBJC],
-			     m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
-AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
-		  [_AM_DEPENDENCIES([OBJCXX])],
-		  [m4_define([AC_PROG_OBJCXX],
-			     m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
+		  [_AM_DEPENDENCIES(OBJC)],
+		  [define([AC_PROG_OBJC],
+			  defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
 ])
-AC_REQUIRE([AM_SILENT_RULES])dnl
-dnl The testsuite driver may need to know about EXEEXT, so add the
-dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This
-dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
+_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
+dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
+dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
+dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
 AC_CONFIG_COMMANDS_PRE(dnl
 [m4_provide_if([_AM_COMPILER_EXEEXT],
   [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
+])
 
-# POSIX will say in a future version that running "rm -f" with no argument
-# is OK; and we want to be able to make that assumption in our Makefile
-# recipes.  So use an aggressive probe to check that the usage we want is
-# actually supported "in the wild" to an acceptable degree.
-# See automake bug#10828.
-# To make any issue more visible, cause the running configure to be aborted
-# by default if the 'rm' program in use doesn't match our expectations; the
-# user can still override this though.
-if rm -f && rm -fr && rm -rf; then : OK; else
-  cat >&2 <<'END'
-Oops!
-
-Your 'rm' program seems unable to run without file operands specified
-on the command line, even when the '-f' option is present.  This is contrary
-to the behaviour of most rm programs out there, and not conforming with
-the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
-
-Please tell bug-automake at gnu.org about your system, including the value
-of your $PATH and any error possibly output before this message.  This
-can help us improve future automake versions.
-
-END
-  if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
-    echo 'Configuration will proceed anyway, since you have set the' >&2
-    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
-    echo >&2
-  else
-    cat >&2 <<'END'
-Aborting the configuration process, to ensure you take notice of the issue.
-
-You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: <http://www.gnu.org/software/coreutils/>.
-
-If you want to complete the configuration process using your problematic
-'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
-to "yes", and re-run configure.
-
-END
-    AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
-  fi
-fi])
-
-dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
+dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
 dnl mangled by Autoconf and run in a shell conditional statement.
 m4_define([_AC_COMPILER_EXEEXT],
 m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
 
+
 # When config.status generates a header, we must update the stamp-h file.
 # This file resides in the same directory as the config header
 # that is generated.  The stamp files are numbered to have different names.
@@ -602,7 +545,7 @@ for _am_header in $config_headers :; do
 done
 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
 
-# Copyright (C) 2001-2013 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2003, 2005, 2008  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -621,14 +564,16 @@ if test x"${install_sh}" != xset; then
     install_sh="\${SHELL} $am_aux_dir/install-sh"
   esac
 fi
-AC_SUBST([install_sh])])
+AC_SUBST(install_sh)])
 
-# Copyright (C) 2003-2013 Free Software Foundation, Inc.
+# Copyright (C) 2003, 2005  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
+# serial 2
+
 # Check whether the underlying file-system supports filenames
 # with a leading dot.  For instance MS-DOS doesn't.
 AC_DEFUN([AM_SET_LEADING_DOT],
@@ -644,12 +589,14 @@ AC_SUBST([am__leading_dot])])
 
 # Check to see how 'make' treats includes.	            -*- Autoconf -*-
 
-# Copyright (C) 2001-2013 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2003, 2005, 2009  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
+# serial 4
+
 # AM_MAKE_INCLUDE()
 # -----------------
 # Check to see how make treats includes.
@@ -667,7 +614,7 @@ am__quote=
 _am_result=none
 # First try GNU make style include.
 echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
+# Ignore all kinds of additional output from `make'.
 case `$am_make -s -f confmf 2> /dev/null` in #(
 *the\ am__doit\ target*)
   am__include=include
@@ -694,12 +641,15 @@ rm -f confinc confmf
 
 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
 
-# Copyright (C) 1997-2013 Free Software Foundation, Inc.
+# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
+# Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
+# serial 6
+
 # AM_MISSING_PROG(NAME, PROGRAM)
 # ------------------------------
 AC_DEFUN([AM_MISSING_PROG],
@@ -707,10 +657,11 @@ AC_DEFUN([AM_MISSING_PROG],
 $1=${$1-"${am_missing_run}$2"}
 AC_SUBST($1)])
 
+
 # AM_MISSING_HAS_RUN
 # ------------------
-# Define MISSING if not defined so far and test if it is modern enough.
-# If it is, set am_missing_run to use it, otherwise, to nothing.
+# Define MISSING if not defined so far and test if it supports --run.
+# If it does, set am_missing_run to use it, otherwise, to nothing.
 AC_DEFUN([AM_MISSING_HAS_RUN],
 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 AC_REQUIRE_AUX_FILE([missing])dnl
@@ -723,35 +674,63 @@ if test x"${MISSING+set}" != xset; then
   esac
 fi
 # Use eval to expand $SHELL
-if eval "$MISSING --is-lightweight"; then
-  am_missing_run="$MISSING "
+if eval "$MISSING --run true"; then
+  am_missing_run="$MISSING --run "
 else
   am_missing_run=
-  AC_MSG_WARN(['missing' script is too old or missing])
+  AC_MSG_WARN([`missing' script is too old or missing])
 fi
 ])
 
+# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# AM_PROG_MKDIR_P
+# ---------------
+# Check for `mkdir -p'.
+AC_DEFUN([AM_PROG_MKDIR_P],
+[AC_PREREQ([2.60])dnl
+AC_REQUIRE([AC_PROG_MKDIR_P])dnl
+dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
+dnl while keeping a definition of mkdir_p for backward compatibility.
+dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
+dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
+dnl Makefile.ins that do not define MKDIR_P, so we do our own
+dnl adjustment using top_builddir (which is defined more often than
+dnl MKDIR_P).
+AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
+case $mkdir_p in
+  [[\\/$]]* | ?:[[\\/]]*) ;;
+  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
+esac
+])
+
 # Helper functions for option handling.                     -*- Autoconf -*-
 
-# Copyright (C) 2001-2013 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
+# serial 4
+
 # _AM_MANGLE_OPTION(NAME)
 # -----------------------
 AC_DEFUN([_AM_MANGLE_OPTION],
 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
 
 # _AM_SET_OPTION(NAME)
-# --------------------
+# ------------------------------
 # Set option NAME.  Presently that only means defining a flag for this option.
 AC_DEFUN([_AM_SET_OPTION],
-[m4_define(_AM_MANGLE_OPTION([$1]), [1])])
+[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
 
 # _AM_SET_OPTIONS(OPTIONS)
-# ------------------------
+# ----------------------------------
 # OPTIONS is a space-separated list of Automake options.
 AC_DEFUN([_AM_SET_OPTIONS],
 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
@@ -762,82 +741,24 @@ AC_DEFUN([_AM_SET_OPTIONS],
 AC_DEFUN([_AM_IF_OPTION],
 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
 
-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# _AM_PROG_CC_C_O
-# ---------------
-# Like AC_PROG_CC_C_O, but changed for automake.  We rewrite AC_PROG_CC
-# to automatically call this.
-AC_DEFUN([_AM_PROG_CC_C_O],
-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
-AC_REQUIRE_AUX_FILE([compile])dnl
-AC_LANG_PUSH([C])dnl
-AC_CACHE_CHECK(
-  [whether $CC understands -c and -o together],
-  [am_cv_prog_cc_c_o],
-  [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
-  # Make sure it works both with $CC and with simple cc.
-  # Following AC_PROG_CC_C_O, we do the test twice because some
-  # compilers refuse to overwrite an existing .o file with -o,
-  # though they will create one.
-  am_cv_prog_cc_c_o=yes
-  for am_i in 1 2; do
-    if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
-         && test -f conftest2.$ac_objext; then
-      : OK
-    else
-      am_cv_prog_cc_c_o=no
-      break
-    fi
-  done
-  rm -f core conftest*
-  unset am_i])
-if test "$am_cv_prog_cc_c_o" != yes; then
-   # Losing compiler, so override with the script.
-   # FIXME: It is wrong to rewrite CC.
-   # But if we don't then we get into trouble of one sort or another.
-   # A longer-term fix would be to have automake use am__CC in this case,
-   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
-   CC="$am_aux_dir/compile $CC"
-fi
-AC_LANG_POP([C])])
-
-# For backward compatibility.
-AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
-
-# Copyright (C) 2001-2013 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# AM_RUN_LOG(COMMAND)
-# -------------------
-# Run COMMAND, save the exit status in ac_status, and log it.
-# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
-AC_DEFUN([AM_RUN_LOG],
-[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
-   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
-   ac_status=$?
-   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
-   (exit $ac_status); }])
-
 # Check to make sure that the build environment is sane.    -*- Autoconf -*-
 
-# Copyright (C) 1996-2013 Free Software Foundation, Inc.
+# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
+# Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
+# serial 5
+
 # AM_SANITY_CHECK
 # ---------------
 AC_DEFUN([AM_SANITY_CHECK],
 [AC_MSG_CHECKING([whether build environment is sane])
+# Just in case
+sleep 1
+echo timestamp > conftest.file
 # Reject unsafe characters in $srcdir or the absolute working directory
 # name.  Accept space and tab only in the latter.
 am_lf='
@@ -848,40 +769,32 @@ case `pwd` in
 esac
 case $srcdir in
   *[[\\\"\#\$\&\'\`$am_lf\ \	]]*)
-    AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
+    AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
 esac
 
-# Do 'set' in a subshell so we don't clobber the current shell's
+# Do `set' in a subshell so we don't clobber the current shell's
 # arguments.  Must try -L first in case configure is actually a
 # symlink; some systems play weird games with the mod time of symlinks
 # (eg FreeBSD returns the mod time of the symlink's containing
 # directory).
 if (
-   am_has_slept=no
-   for am_try in 1 2; do
-     echo "timestamp, slept: $am_has_slept" > conftest.file
-     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
-     if test "$[*]" = "X"; then
-	# -L didn't work.
-	set X `ls -t "$srcdir/configure" conftest.file`
-     fi
-     if test "$[*]" != "X $srcdir/configure conftest.file" \
-	&& test "$[*]" != "X conftest.file $srcdir/configure"; then
-
-	# If neither matched, then we have a broken ls.  This can happen
-	# if, for instance, CONFIG_SHELL is bash and it inherits a
-	# broken ls alias from the environment.  This has actually
-	# happened.  Such a system could not be considered "sane".
-	AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
-  alias in your environment])
-     fi
-     if test "$[2]" = conftest.file || test $am_try -eq 2; then
-       break
-     fi
-     # Just in case.
-     sleep 1
-     am_has_slept=yes
-   done
+   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
+   if test "$[*]" = "X"; then
+      # -L didn't work.
+      set X `ls -t "$srcdir/configure" conftest.file`
+   fi
+   rm -f conftest.file
+   if test "$[*]" != "X $srcdir/configure conftest.file" \
+      && test "$[*]" != "X conftest.file $srcdir/configure"; then
+
+      # If neither matched, then we have a broken ls.  This can happen
+      # if, for instance, CONFIG_SHELL is bash and it inherits a
+      # broken ls alias from the environment.  This has actually
+      # happened.  Such a system could not be considered "sane".
+      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
+alias in your environment])
+   fi
+
    test "$[2]" = conftest.file
    )
 then
@@ -891,85 +804,9 @@ else
    AC_MSG_ERROR([newly created file is older than distributed files!
 Check your system clock])
 fi
-AC_MSG_RESULT([yes])
-# If we didn't sleep, we still need to ensure time stamps of config.status and
-# generated files are strictly newer.
-am_sleep_pid=
-if grep 'slept: no' conftest.file >/dev/null 2>&1; then
-  ( sleep 1 ) &
-  am_sleep_pid=$!
-fi
-AC_CONFIG_COMMANDS_PRE(
-  [AC_MSG_CHECKING([that generated files are newer than configure])
-   if test -n "$am_sleep_pid"; then
-     # Hide warnings about reused PIDs.
-     wait $am_sleep_pid 2>/dev/null
-   fi
-   AC_MSG_RESULT([done])])
-rm -f conftest.file
-])
-
-# Copyright (C) 2009-2013 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# AM_SILENT_RULES([DEFAULT])
-# --------------------------
-# Enable less verbose build rules; with the default set to DEFAULT
-# ("yes" being less verbose, "no" or empty being verbose).
-AC_DEFUN([AM_SILENT_RULES],
-[AC_ARG_ENABLE([silent-rules], [dnl
-AS_HELP_STRING(
-  [--enable-silent-rules],
-  [less verbose build output (undo: "make V=1")])
-AS_HELP_STRING(
-  [--disable-silent-rules],
-  [verbose build output (undo: "make V=0")])dnl
-])
-case $enable_silent_rules in @%:@ (((
-  yes) AM_DEFAULT_VERBOSITY=0;;
-   no) AM_DEFAULT_VERBOSITY=1;;
-    *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
-esac
-dnl
-dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
-dnl do not support nested variable expansions.
-dnl See automake bug#9928 and bug#10237.
-am_make=${MAKE-make}
-AC_CACHE_CHECK([whether $am_make supports nested variables],
-   [am_cv_make_support_nested_variables],
-   [if AS_ECHO([['TRUE=$(BAR$(V))
-BAR0=false
-BAR1=true
-V=1
-am__doit:
-	@$(TRUE)
-.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
-  am_cv_make_support_nested_variables=yes
-else
-  am_cv_make_support_nested_variables=no
-fi])
-if test $am_cv_make_support_nested_variables = yes; then
-  dnl Using '$V' instead of '$(V)' breaks IRIX make.
-  AM_V='$(V)'
-  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
-else
-  AM_V=$AM_DEFAULT_VERBOSITY
-  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
-fi
-AC_SUBST([AM_V])dnl
-AM_SUBST_NOTMAKE([AM_V])dnl
-AC_SUBST([AM_DEFAULT_V])dnl
-AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
-AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
-AM_BACKSLASH='\'
-AC_SUBST([AM_BACKSLASH])dnl
-_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
-])
+AC_MSG_RESULT(yes)])
 
-# Copyright (C) 2001-2013 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -977,32 +814,34 @@ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
 
 # AM_PROG_INSTALL_STRIP
 # ---------------------
-# One issue with vendor 'install' (even GNU) is that you can't
+# One issue with vendor `install' (even GNU) is that you can't
 # specify the program used to strip binaries.  This is especially
 # annoying in cross-compiling environments, where the build's strip
 # is unlikely to handle the host's binaries.
 # Fortunately install-sh will honor a STRIPPROG variable, so we
-# always use install-sh in "make install-strip", and initialize
+# always use install-sh in `make install-strip', and initialize
 # STRIPPROG with the value of the STRIP variable (set by the user).
 AC_DEFUN([AM_PROG_INSTALL_STRIP],
 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
-# Installed binaries are usually stripped using 'strip' when the user
-# run "make install-strip".  However 'strip' might not be the right
+# Installed binaries are usually stripped using `strip' when the user
+# run `make install-strip'.  However `strip' might not be the right
 # tool to use in cross-compilation environments, therefore Automake
-# will honor the 'STRIP' environment variable to overrule this program.
-dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
+# will honor the `STRIP' environment variable to overrule this program.
+dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
 if test "$cross_compiling" != no; then
   AC_CHECK_TOOL([STRIP], [strip], :)
 fi
 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
 AC_SUBST([INSTALL_STRIP_PROGRAM])])
 
-# Copyright (C) 2006-2013 Free Software Foundation, Inc.
+# Copyright (C) 2006, 2008  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
+# serial 2
+
 # _AM_SUBST_NOTMAKE(VARIABLE)
 # ---------------------------
 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
@@ -1010,22 +849,24 @@ AC_SUBST([INSTALL_STRIP_PROGRAM])])
 AC_DEFUN([_AM_SUBST_NOTMAKE])
 
 # AM_SUBST_NOTMAKE(VARIABLE)
-# --------------------------
+# ---------------------------
 # Public sister of _AM_SUBST_NOTMAKE.
 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
 
 # Check how to create a tarball.                            -*- Autoconf -*-
 
-# Copyright (C) 2004-2013 Free Software Foundation, Inc.
+# Copyright (C) 2004, 2005  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
+# serial 2
+
 # _AM_PROG_TAR(FORMAT)
 # --------------------
 # Check how to create a tarball in format FORMAT.
-# FORMAT should be one of 'v7', 'ustar', or 'pax'.
+# FORMAT should be one of `v7', `ustar', or `pax'.
 #
 # Substitute a variable $(am__tar) that is a command
 # writing to stdout a FORMAT-tarball containing the directory
@@ -1035,114 +876,75 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
 # Substitute a variable $(am__untar) that extract such
 # a tarball read from stdin.
 #     $(am__untar) < result.tar
-#
 AC_DEFUN([_AM_PROG_TAR],
-[# Always define AMTAR for backward compatibility.  Yes, it's still used
-# in the wild :-(  We should find a proper way to deprecate it ...
-AC_SUBST([AMTAR], ['$${TAR-tar}'])
-
-# We'll loop over all known methods to create a tar archive until one works.
+[# Always define AMTAR for backward compatibility.
+AM_MISSING_PROG([AMTAR], [tar])
+m4_if([$1], [v7],
+     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
+     [m4_case([$1], [ustar],, [pax],,
+              [m4_fatal([Unknown tar format])])
+AC_MSG_CHECKING([how to create a $1 tar archive])
+# Loop over all known methods to create a tar archive until one works.
 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
+_am_tools=${am_cv_prog_tar_$1-$_am_tools}
+# Do not fold the above two line into one, because Tru64 sh and
+# Solaris sh will not grok spaces in the rhs of `-'.
+for _am_tool in $_am_tools
+do
+  case $_am_tool in
+  gnutar)
+    for _am_tar in tar gnutar gtar;
+    do
+      AM_RUN_LOG([$_am_tar --version]) && break
+    done
+    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
+    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
+    am__untar="$_am_tar -xf -"
+    ;;
+  plaintar)
+    # Must skip GNU tar: if it does not support --format= it doesn't create
+    # ustar tarball either.
+    (tar --version) >/dev/null 2>&1 && continue
+    am__tar='tar chf - "$$tardir"'
+    am__tar_='tar chf - "$tardir"'
+    am__untar='tar xf -'
+    ;;
+  pax)
+    am__tar='pax -L -x $1 -w "$$tardir"'
+    am__tar_='pax -L -x $1 -w "$tardir"'
+    am__untar='pax -r'
+    ;;
+  cpio)
+    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
+    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
+    am__untar='cpio -i -H $1 -d'
+    ;;
+  none)
+    am__tar=false
+    am__tar_=false
+    am__untar=false
+    ;;
+  esac
 
-m4_if([$1], [v7],
-  [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
-
-  [m4_case([$1],
-    [ustar],
-     [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
-      # There is notably a 21 bits limit for the UID and the GID.  In fact,
-      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
-      # and bug#13588).
-      am_max_uid=2097151 # 2^21 - 1
-      am_max_gid=$am_max_uid
-      # The $UID and $GID variables are not portable, so we need to resort
-      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
-      # below are definitely unexpected, so allow the users to see them
-      # (that is, avoid stderr redirection).
-      am_uid=`id -u || echo unknown`
-      am_gid=`id -g || echo unknown`
-      AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
-      if test $am_uid -le $am_max_uid; then
-         AC_MSG_RESULT([yes])
-      else
-         AC_MSG_RESULT([no])
-         _am_tools=none
-      fi
-      AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
-      if test $am_gid -le $am_max_gid; then
-         AC_MSG_RESULT([yes])
-      else
-        AC_MSG_RESULT([no])
-        _am_tools=none
-      fi],
-
-  [pax],
-    [],
-
-  [m4_fatal([Unknown tar format])])
-
-  AC_MSG_CHECKING([how to create a $1 tar archive])
-
-  # Go ahead even if we have the value already cached.  We do so because we
-  # need to set the values for the 'am__tar' and 'am__untar' variables.
-  _am_tools=${am_cv_prog_tar_$1-$_am_tools}
-
-  for _am_tool in $_am_tools; do
-    case $_am_tool in
-    gnutar)
-      for _am_tar in tar gnutar gtar; do
-        AM_RUN_LOG([$_am_tar --version]) && break
-      done
-      am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
-      am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
-      am__untar="$_am_tar -xf -"
-      ;;
-    plaintar)
-      # Must skip GNU tar: if it does not support --format= it doesn't create
-      # ustar tarball either.
-      (tar --version) >/dev/null 2>&1 && continue
-      am__tar='tar chf - "$$tardir"'
-      am__tar_='tar chf - "$tardir"'
-      am__untar='tar xf -'
-      ;;
-    pax)
-      am__tar='pax -L -x $1 -w "$$tardir"'
-      am__tar_='pax -L -x $1 -w "$tardir"'
-      am__untar='pax -r'
-      ;;
-    cpio)
-      am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
-      am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
-      am__untar='cpio -i -H $1 -d'
-      ;;
-    none)
-      am__tar=false
-      am__tar_=false
-      am__untar=false
-      ;;
-    esac
+  # If the value was cached, stop now.  We just wanted to have am__tar
+  # and am__untar set.
+  test -n "${am_cv_prog_tar_$1}" && break
 
-    # If the value was cached, stop now.  We just wanted to have am__tar
-    # and am__untar set.
-    test -n "${am_cv_prog_tar_$1}" && break
-
-    # tar/untar a dummy directory, and stop if the command works.
-    rm -rf conftest.dir
-    mkdir conftest.dir
-    echo GrepMe > conftest.dir/file
-    AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
-    rm -rf conftest.dir
-    if test -s conftest.tar; then
-      AM_RUN_LOG([$am__untar <conftest.tar])
-      AM_RUN_LOG([cat conftest.dir/file])
-      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
-    fi
-  done
+  # tar/untar a dummy directory, and stop if the command works
   rm -rf conftest.dir
+  mkdir conftest.dir
+  echo GrepMe > conftest.dir/file
+  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
+  rm -rf conftest.dir
+  if test -s conftest.tar; then
+    AM_RUN_LOG([$am__untar <conftest.tar])
+    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
+  fi
+done
+rm -rf conftest.dir
 
-  AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
-  AC_MSG_RESULT([$am_cv_prog_tar_$1])])
-
+AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
+AC_MSG_RESULT([$am_cv_prog_tar_$1])])
 AC_SUBST([am__tar])
 AC_SUBST([am__untar])
 ]) # _AM_PROG_TAR
diff --git a/batch/Makefile.in b/batch/Makefile.in
index 88d30b4..9f4b3fb 100644
--- a/batch/Makefile.in
+++ b/batch/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
-
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -17,51 +18,6 @@
 # include $(top_srcdir)/Makefile.paths
 
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -82,7 +38,7 @@ build_triplet = @build@
 host_triplet = @host@
 target_triplet = @target@
 subdir = batch
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
 	$(top_srcdir)/accustomdir.m4 $(top_srcdir)/configure.ac
@@ -113,38 +69,13 @@ am__nobase_list = $(am__nobase_strip_setup); \
 am__base_list = \
   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
-am__uninstall_files_from_dir = { \
-  test -z "$$files" \
-    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
-    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
-         $(am__cd) "$$dir" && rm -f $$files; }; \
-  }
 am__installdirs = "$(DESTDIR)$(armascriptdir)"
 SCRIPTS = $(armascript_SCRIPTS)
-AM_V_P = $(am__v_P_ at AM_V@)
-am__v_P_ = $(am__v_P_ at AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
 SOURCES =
 DIST_SOURCES =
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APBUILD_CC = @APBUILD_CC@
 APBUILD_CXX1 = @APBUILD_CXX1@
 APBUILD_CXX2 = @APBUILD_CXX2@
@@ -397,11 +328,8 @@ $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 $(am__aclocal_m4_deps):
 install-armascriptSCRIPTS: $(armascript_SCRIPTS)
 	@$(NORMAL_INSTALL)
+	test -z "$(armascriptdir)" || $(MKDIR_P) "$(DESTDIR)$(armascriptdir)"
 	@list='$(armascript_SCRIPTS)'; test -n "$(armascriptdir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(armascriptdir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(armascriptdir)" || exit 1; \
-	fi; \
 	for p in $$list; do \
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 	  if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
@@ -429,12 +357,14 @@ uninstall-armascriptSCRIPTS:
 	@list='$(armascript_SCRIPTS)'; test -n "$(armascriptdir)" || exit 0; \
 	files=`for p in $$list; do echo "$$p"; done | \
 	       sed -e 's,.*/,,;$(transform)'`; \
-	dir='$(DESTDIR)$(armascriptdir)'; $(am__uninstall_files_from_dir)
-tags TAGS:
-
-ctags CTAGS:
+	test -n "$$list" || exit 0; \
+	echo " ( cd '$(DESTDIR)$(armascriptdir)' && rm -f" $$files ")"; \
+	cd "$(DESTDIR)$(armascriptdir)" && rm -f $$files
+tags: TAGS
+TAGS:
 
-cscope cscopelist:
+ctags: CTAGS
+CTAGS:
 
 
 distdir: $(DISTFILES)
@@ -484,15 +414,10 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 mostlyclean-generic:
 
 clean-generic:
@@ -573,16 +498,16 @@ uninstall-am: uninstall-armascriptSCRIPTS
 .MAKE: install-am install-strip
 
 .PHONY: all all-am check check-am clean clean-generic clean-local \
-	cscopelist-am ctags-am distclean distclean-generic distdir dvi \
-	dvi-am html html-am info info-am install install-am \
-	install-armascriptSCRIPTS install-data install-data-am \
-	install-dvi install-dvi-am install-exec install-exec-am \
-	install-html install-html-am install-info install-info-am \
-	install-man install-pdf install-pdf-am install-ps \
-	install-ps-am install-strip installcheck installcheck-am \
-	installdirs maintainer-clean maintainer-clean-generic \
-	mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags-am \
-	uninstall uninstall-am uninstall-armascriptSCRIPTS
+	distclean distclean-generic distdir dvi dvi-am html html-am \
+	info info-am install install-am install-armascriptSCRIPTS \
+	install-data install-data-am install-dvi install-dvi-am \
+	install-exec install-exec-am install-html install-html-am \
+	install-info install-info-am install-man install-pdf \
+	install-pdf-am install-ps install-ps-am install-strip \
+	installcheck installcheck-am installdirs maintainer-clean \
+	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
+	pdf-am ps ps-am uninstall uninstall-am \
+	uninstall-armascriptSCRIPTS
 
 
 # include autogenerated makefile that generates 
diff --git a/compile b/compile
deleted file mode 100755
index 531136b..0000000
--- a/compile
+++ /dev/null
@@ -1,347 +0,0 @@
-#! /bin/sh
-# Wrapper for compilers which do not understand '-c -o'.
-
-scriptversion=2012-10-14.11; # UTC
-
-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
-# Written by Tom Tromey <tromey at cygnus.com>.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that program.
-
-# This file is maintained in Automake, please report
-# bugs to <bug-automake at gnu.org> or send patches to
-# <automake-patches at gnu.org>.
-
-nl='
-'
-
-# We need space, tab and new line, in precisely that order.  Quoting is
-# there to prevent tools from complaining about whitespace usage.
-IFS=" ""	$nl"
-
-file_conv=
-
-# func_file_conv build_file lazy
-# Convert a $build file to $host form and store it in $file
-# Currently only supports Windows hosts. If the determined conversion
-# type is listed in (the comma separated) LAZY, no conversion will
-# take place.
-func_file_conv ()
-{
-  file=$1
-  case $file in
-    / | /[!/]*) # absolute file, and not a UNC file
-      if test -z "$file_conv"; then
-	# lazily determine how to convert abs files
-	case `uname -s` in
-	  MINGW*)
-	    file_conv=mingw
-	    ;;
-	  CYGWIN*)
-	    file_conv=cygwin
-	    ;;
-	  *)
-	    file_conv=wine
-	    ;;
-	esac
-      fi
-      case $file_conv/,$2, in
-	*,$file_conv,*)
-	  ;;
-	mingw/*)
-	  file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
-	  ;;
-	cygwin/*)
-	  file=`cygpath -m "$file" || echo "$file"`
-	  ;;
-	wine/*)
-	  file=`winepath -w "$file" || echo "$file"`
-	  ;;
-      esac
-      ;;
-  esac
-}
-
-# func_cl_dashL linkdir
-# Make cl look for libraries in LINKDIR
-func_cl_dashL ()
-{
-  func_file_conv "$1"
-  if test -z "$lib_path"; then
-    lib_path=$file
-  else
-    lib_path="$lib_path;$file"
-  fi
-  linker_opts="$linker_opts -LIBPATH:$file"
-}
-
-# func_cl_dashl library
-# Do a library search-path lookup for cl
-func_cl_dashl ()
-{
-  lib=$1
-  found=no
-  save_IFS=$IFS
-  IFS=';'
-  for dir in $lib_path $LIB
-  do
-    IFS=$save_IFS
-    if $shared && test -f "$dir/$lib.dll.lib"; then
-      found=yes
-      lib=$dir/$lib.dll.lib
-      break
-    fi
-    if test -f "$dir/$lib.lib"; then
-      found=yes
-      lib=$dir/$lib.lib
-      break
-    fi
-    if test -f "$dir/lib$lib.a"; then
-      found=yes
-      lib=$dir/lib$lib.a
-      break
-    fi
-  done
-  IFS=$save_IFS
-
-  if test "$found" != yes; then
-    lib=$lib.lib
-  fi
-}
-
-# func_cl_wrapper cl arg...
-# Adjust compile command to suit cl
-func_cl_wrapper ()
-{
-  # Assume a capable shell
-  lib_path=
-  shared=:
-  linker_opts=
-  for arg
-  do
-    if test -n "$eat"; then
-      eat=
-    else
-      case $1 in
-	-o)
-	  # configure might choose to run compile as 'compile cc -o foo foo.c'.
-	  eat=1
-	  case $2 in
-	    *.o | *.[oO][bB][jJ])
-	      func_file_conv "$2"
-	      set x "$@" -Fo"$file"
-	      shift
-	      ;;
-	    *)
-	      func_file_conv "$2"
-	      set x "$@" -Fe"$file"
-	      shift
-	      ;;
-	  esac
-	  ;;
-	-I)
-	  eat=1
-	  func_file_conv "$2" mingw
-	  set x "$@" -I"$file"
-	  shift
-	  ;;
-	-I*)
-	  func_file_conv "${1#-I}" mingw
-	  set x "$@" -I"$file"
-	  shift
-	  ;;
-	-l)
-	  eat=1
-	  func_cl_dashl "$2"
-	  set x "$@" "$lib"
-	  shift
-	  ;;
-	-l*)
-	  func_cl_dashl "${1#-l}"
-	  set x "$@" "$lib"
-	  shift
-	  ;;
-	-L)
-	  eat=1
-	  func_cl_dashL "$2"
-	  ;;
-	-L*)
-	  func_cl_dashL "${1#-L}"
-	  ;;
-	-static)
-	  shared=false
-	  ;;
-	-Wl,*)
-	  arg=${1#-Wl,}
-	  save_ifs="$IFS"; IFS=','
-	  for flag in $arg; do
-	    IFS="$save_ifs"
-	    linker_opts="$linker_opts $flag"
-	  done
-	  IFS="$save_ifs"
-	  ;;
-	-Xlinker)
-	  eat=1
-	  linker_opts="$linker_opts $2"
-	  ;;
-	-*)
-	  set x "$@" "$1"
-	  shift
-	  ;;
-	*.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
-	  func_file_conv "$1"
-	  set x "$@" -Tp"$file"
-	  shift
-	  ;;
-	*.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO])
-	  func_file_conv "$1" mingw
-	  set x "$@" "$file"
-	  shift
-	  ;;
-	*)
-	  set x "$@" "$1"
-	  shift
-	  ;;
-      esac
-    fi
-    shift
-  done
-  if test -n "$linker_opts"; then
-    linker_opts="-link$linker_opts"
-  fi
-  exec "$@" $linker_opts
-  exit 1
-}
-
-eat=
-
-case $1 in
-  '')
-     echo "$0: No command.  Try '$0 --help' for more information." 1>&2
-     exit 1;
-     ;;
-  -h | --h*)
-    cat <<\EOF
-Usage: compile [--help] [--version] PROGRAM [ARGS]
-
-Wrapper for compilers which do not understand '-c -o'.
-Remove '-o dest.o' from ARGS, run PROGRAM with the remaining
-arguments, and rename the output as expected.
-
-If you are trying to build a whole package this is not the
-right script to run: please start by reading the file 'INSTALL'.
-
-Report bugs to <bug-automake at gnu.org>.
-EOF
-    exit $?
-    ;;
-  -v | --v*)
-    echo "compile $scriptversion"
-    exit $?
-    ;;
-  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
-    func_cl_wrapper "$@"      # Doesn't return...
-    ;;
-esac
-
-ofile=
-cfile=
-
-for arg
-do
-  if test -n "$eat"; then
-    eat=
-  else
-    case $1 in
-      -o)
-	# configure might choose to run compile as 'compile cc -o foo foo.c'.
-	# So we strip '-o arg' only if arg is an object.
-	eat=1
-	case $2 in
-	  *.o | *.obj)
-	    ofile=$2
-	    ;;
-	  *)
-	    set x "$@" -o "$2"
-	    shift
-	    ;;
-	esac
-	;;
-      *.c)
-	cfile=$1
-	set x "$@" "$1"
-	shift
-	;;
-      *)
-	set x "$@" "$1"
-	shift
-	;;
-    esac
-  fi
-  shift
-done
-
-if test -z "$ofile" || test -z "$cfile"; then
-  # If no '-o' option was seen then we might have been invoked from a
-  # pattern rule where we don't need one.  That is ok -- this is a
-  # normal compilation that the losing compiler can handle.  If no
-  # '.c' file was seen then we are probably linking.  That is also
-  # ok.
-  exec "$@"
-fi
-
-# Name of file we expect compiler to create.
-cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
-
-# Create the lock directory.
-# Note: use '[/\\:.-]' here to ensure that we don't use the same name
-# that we are using for the .o file.  Also, base the name on the expected
-# object file name, since that is what matters with a parallel build.
-lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
-while true; do
-  if mkdir "$lockdir" >/dev/null 2>&1; then
-    break
-  fi
-  sleep 1
-done
-# FIXME: race condition here if user kills between mkdir and trap.
-trap "rmdir '$lockdir'; exit 1" 1 2 15
-
-# Run the compile.
-"$@"
-ret=$?
-
-if test -f "$cofile"; then
-  test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
-elif test -f "${cofile}bj"; then
-  test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
-fi
-
-rmdir "$lockdir"
-exit $ret
-
-# Local Variables:
-# mode: shell-script
-# sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
-# time-stamp-start: "scriptversion="
-# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
-# time-stamp-end: "; # UTC"
-# End:
diff --git a/config.sub b/config.sub
index 9633db7..eb0389a 100755
--- a/config.sub
+++ b/config.sub
@@ -1,40 +1,44 @@
 #! /bin/sh
 # Configuration validation subroutine script.
-#   Copyright 1992-2013 Free Software Foundation, Inc.
+#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   Free Software Foundation, Inc.
 
-timestamp='2013-08-10'
+timestamp='2009-06-11'
 
-# This file is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3 of the License, or
+# This file is (in principle) common to ALL GNU software.
+# The presence of a machine in this file suggests that SOME GNU software
+# can handle that machine.  It does not imply ALL GNU software can.
+#
+# This file is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
 #
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program; if not, see <http://www.gnu.org/licenses/>.
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
+# 02110-1301, USA.
 #
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
 # configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that
-# program.  This Exception is an additional permission under section 7
-# of the GNU General Public License, version 3 ("GPLv3").
+# the same distribution terms that you use for the rest of that program.
 
 
-# Please send patches with a ChangeLog entry to config-patches at gnu.org.
+# Please send patches to <config-patches at gnu.org>.  Submit a context
+# diff and a properly formatted ChangeLog entry.
 #
 # Configuration subroutine to validate and canonicalize a configuration type.
 # Supply the specified configuration type as an argument.
 # If it is invalid, we print an error message on stderr and exit with code 1.
 # Otherwise, we print the canonical config type on stdout and succeed.
 
-# You can get the latest version of this script from:
-# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
-
 # This file is supposed to be the same for all GNU packages
 # and recognize all the CPU types, system types and aliases
 # that are meaningful with *any* GNU software.
@@ -68,7 +72,8 @@ Report bugs and patches to <config-patches at gnu.org>."
 version="\
 GNU config.sub ($timestamp)
 
-Copyright 1992-2013 Free Software Foundation, Inc.
+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
+2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
 
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -115,18 +120,13 @@ esac
 # Here we must recognize all the valid KERNEL-OS combinations.
 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
 case $maybe_os in
-  nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
-  linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
-  knetbsd*-gnu* | netbsd*-gnu* | \
+  nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
+  uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
   kopensolaris*-gnu* | \
   storm-chaos* | os2-emx* | rtmk-nova*)
     os=-$maybe_os
     basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
     ;;
-  android-linux)
-    os=-linux-android
-    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
-    ;;
   *)
     basic_machine=`echo $1 | sed 's/-[^-]*$//'`
     if [ $basic_machine != $1 ]
@@ -149,12 +149,12 @@ case $os in
 	-convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
 	-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
 	-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
-	-apple | -axis | -knuth | -cray | -microblaze*)
+	-apple | -axis | -knuth | -cray)
 		os=
 		basic_machine=$1
 		;;
-	-bluegene*)
-		os=-cnk
+        -bluegene*)
+	        os=-cnk
 		;;
 	-sim | -cisco | -oki | -wec | -winbond)
 		os=
@@ -170,10 +170,10 @@ case $os in
 		os=-chorusos
 		basic_machine=$1
 		;;
-	-chorusrdb)
-		os=-chorusrdb
+ 	-chorusrdb)
+ 		os=-chorusrdb
 		basic_machine=$1
-		;;
+ 		;;
 	-hiux*)
 		os=-hiuxwe2
 		;;
@@ -218,12 +218,6 @@ case $os in
 	-isc*)
 		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
 		;;
-	-lynx*178)
-		os=-lynxos178
-		;;
-	-lynx*5)
-		os=-lynxos5
-		;;
 	-lynx*)
 		os=-lynxos
 		;;
@@ -248,27 +242,20 @@ case $basic_machine in
 	# Some are omitted here because they have special meanings below.
 	1750a | 580 \
 	| a29k \
-	| aarch64 | aarch64_be \
 	| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
 	| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
 	| am33_2.0 \
-	| arc | arceb \
-	| arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
-	| avr | avr32 \
-	| be32 | be64 \
+	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
 	| bfin \
-	| c4x | c8051 | clipper \
+	| c4x | clipper \
 	| d10v | d30v | dlx | dsp16xx \
-	| epiphany \
 	| fido | fr30 | frv \
 	| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
-	| hexagon \
 	| i370 | i860 | i960 | ia64 \
 	| ip2k | iq2000 \
-	| le32 | le64 \
 	| lm32 \
 	| m32c | m32r | m32rle | m68000 | m68k | m88k \
-	| maxq | mb | microblaze | microblazeel | mcore | mep | metag \
+	| maxq | mb | microblaze | mcore | mep | metag \
 	| mips | mipsbe | mipseb | mipsel | mipsle \
 	| mips16 \
 	| mips64 | mips64el \
@@ -286,45 +273,32 @@ case $basic_machine in
 	| mipsisa64r2 | mipsisa64r2el \
 	| mipsisa64sb1 | mipsisa64sb1el \
 	| mipsisa64sr71k | mipsisa64sr71kel \
-	| mipsr5900 | mipsr5900el \
 	| mipstx39 | mipstx39el \
 	| mn10200 | mn10300 \
 	| moxie \
 	| mt \
 	| msp430 \
-	| nds32 | nds32le | nds32be \
-	| nios | nios2 | nios2eb | nios2el \
+	| nios | nios2 \
 	| ns16k | ns32k \
-	| open8 \
-	| or1k | or32 \
+	| or32 \
 	| pdp10 | pdp11 | pj | pjl \
-	| powerpc | powerpc64 | powerpc64le | powerpcle \
+	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
 	| pyramid \
-	| rl78 | rx \
 	| score \
 	| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
 	| sh64 | sh64le \
 	| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
 	| sparcv8 | sparcv9 | sparcv9b | sparcv9v \
-	| spu \
-	| tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
-	| ubicom32 \
-	| v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
+	| spu | strongarm \
+	| tahoe | thumb | tic4x | tic80 | tron \
+	| v850 | v850e \
 	| we32k \
-	| x86 | xc16x | xstormy16 | xtensa \
+	| x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
 	| z8k | z80)
 		basic_machine=$basic_machine-unknown
 		;;
-	c54x)
-		basic_machine=tic54x-unknown
-		;;
-	c55x)
-		basic_machine=tic55x-unknown
-		;;
-	c6x)
-		basic_machine=tic6x-unknown
-		;;
-	m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip)
+	m6811 | m68hc11 | m6812 | m68hc12)
+		# Motorola 68HC11/12.
 		basic_machine=$basic_machine-unknown
 		os=-none
 		;;
@@ -334,21 +308,6 @@ case $basic_machine in
 		basic_machine=mt-unknown
 		;;
 
-	strongarm | thumb | xscale)
-		basic_machine=arm-unknown
-		;;
-	xgate)
-		basic_machine=$basic_machine-unknown
-		os=-none
-		;;
-	xscaleeb)
-		basic_machine=armeb-unknown
-		;;
-
-	xscaleel)
-		basic_machine=armel-unknown
-		;;
-
 	# We use `pc' rather than `unknown'
 	# because (1) that's what they normally are, and
 	# (2) the word "unknown" tends to confuse beginning users.
@@ -363,30 +322,25 @@ case $basic_machine in
 	# Recognize the basic CPU types with company name.
 	580-* \
 	| a29k-* \
-	| aarch64-* | aarch64_be-* \
 	| alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
 	| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
-	| alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
+	| alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
 	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
 	| avr-* | avr32-* \
-	| be32-* | be64-* \
 	| bfin-* | bs2000-* \
-	| c[123]* | c30-* | [cjt]90-* | c4x-* \
-	| c8051-* | clipper-* | craynv-* | cydra-* \
+	| c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
+	| clipper-* | craynv-* | cydra-* \
 	| d10v-* | d30v-* | dlx-* \
 	| elxsi-* \
 	| f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
 	| h8300-* | h8500-* \
 	| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
-	| hexagon-* \
 	| i*86-* | i860-* | i960-* | ia64-* \
 	| ip2k-* | iq2000-* \
-	| le32-* | le64-* \
 	| lm32-* \
 	| m32c-* | m32r-* | m32rle-* \
 	| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
 	| m88110-* | m88k-* | maxq-* | mcore-* | metag-* \
-	| microblaze-* | microblazeel-* \
 	| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
 	| mips16-* \
 	| mips64-* | mips64el-* \
@@ -404,34 +358,28 @@ case $basic_machine in
 	| mipsisa64r2-* | mipsisa64r2el-* \
 	| mipsisa64sb1-* | mipsisa64sb1el-* \
 	| mipsisa64sr71k-* | mipsisa64sr71kel-* \
-	| mipsr5900-* | mipsr5900el-* \
 	| mipstx39-* | mipstx39el-* \
 	| mmix-* \
 	| mt-* \
 	| msp430-* \
-	| nds32-* | nds32le-* | nds32be-* \
-	| nios-* | nios2-* | nios2eb-* | nios2el-* \
+	| nios-* | nios2-* \
 	| none-* | np1-* | ns16k-* | ns32k-* \
-	| open8-* \
 	| orion-* \
 	| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
-	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
+	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
 	| pyramid-* \
-	| rl78-* | romp-* | rs6000-* | rx-* \
+	| romp-* | rs6000-* \
 	| sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
 	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
 	| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
 	| sparclite-* \
-	| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \
-	| tahoe-* \
-	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
-	| tile*-* \
+	| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
+	| tahoe-* | thumb-* \
+	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \
 	| tron-* \
-	| ubicom32-* \
-	| v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
-	| vax-* \
+	| v850-* | v850e-* | vax-* \
 	| we32k-* \
-	| x86-* | x86_64-* | xc16x-* | xps100-* \
+	| x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
 	| xstormy16-* | xtensa*-* \
 	| ymp-* \
 	| z8k-* | z80-*)
@@ -456,7 +404,7 @@ case $basic_machine in
 		basic_machine=a29k-amd
 		os=-udi
 		;;
-	abacus)
+    	abacus)
 		basic_machine=abacus-unknown
 		;;
 	adobe68k)
@@ -526,20 +474,11 @@ case $basic_machine in
 		basic_machine=powerpc-ibm
 		os=-cnk
 		;;
-	c54x-*)
-		basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
-		;;
-	c55x-*)
-		basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
-		;;
-	c6x-*)
-		basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
-		;;
 	c90)
 		basic_machine=c90-cray
 		os=-unicos
 		;;
-	cegcc)
+        cegcc)
 		basic_machine=arm-unknown
 		os=-cegcc
 		;;
@@ -571,7 +510,7 @@ case $basic_machine in
 		basic_machine=craynv-cray
 		os=-unicosmp
 		;;
-	cr16 | cr16-*)
+	cr16)
 		basic_machine=cr16-unknown
 		os=-elf
 		;;
@@ -729,6 +668,7 @@ case $basic_machine in
 	i370-ibm* | ibm*)
 		basic_machine=i370-ibm
 		;;
+# I'm not sure what "Sysv32" means.  Should this be sysv3.2?
 	i*86v32)
 		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
 		os=-sysv32
@@ -786,15 +726,8 @@ case $basic_machine in
 		basic_machine=ns32k-utek
 		os=-sysv
 		;;
-	microblaze*)
-		basic_machine=microblaze-xilinx
-		;;
-	mingw64)
-		basic_machine=x86_64-pc
-		os=-mingw64
-		;;
 	mingw32)
-		basic_machine=i686-pc
+		basic_machine=i386-pc
 		os=-mingw32
 		;;
 	mingw32ce)
@@ -829,18 +762,10 @@ case $basic_machine in
 	ms1-*)
 		basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
 		;;
-	msys)
-		basic_machine=i686-pc
-		os=-msys
-		;;
 	mvs)
 		basic_machine=i370-ibm
 		os=-mvs
 		;;
-	nacl)
-		basic_machine=le32-unknown
-		os=-nacl
-		;;
 	ncr3000)
 		basic_machine=i486-ncr
 		os=-sysv4
@@ -905,12 +830,6 @@ case $basic_machine in
 	np1)
 		basic_machine=np1-gould
 		;;
-	neo-tandem)
-		basic_machine=neo-tandem
-		;;
-	nse-tandem)
-		basic_machine=nse-tandem
-		;;
 	nsr-tandem)
 		basic_machine=nsr-tandem
 		;;
@@ -993,10 +912,9 @@ case $basic_machine in
 		;;
 	power)	basic_machine=power-ibm
 		;;
-	ppc | ppcbe)	basic_machine=powerpc-unknown
+	ppc)	basic_machine=powerpc-unknown
 		;;
-	ppc-* | ppcbe-*)
-		basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
+	ppc-*)	basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
 		;;
 	ppcle | powerpclittle | ppc-le | powerpc-little)
 		basic_machine=powerpcle-unknown
@@ -1021,11 +939,7 @@ case $basic_machine in
 		basic_machine=i586-unknown
 		os=-pw32
 		;;
-	rdos | rdos64)
-		basic_machine=x86_64-pc
-		os=-rdos
-		;;
-	rdos32)
+	rdos)
 		basic_machine=i386-pc
 		os=-rdos
 		;;
@@ -1094,9 +1008,6 @@ case $basic_machine in
 		basic_machine=i860-stratus
 		os=-sysv4
 		;;
-	strongarm-* | thumb-*)
-		basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
-		;;
 	sun2)
 		basic_machine=m68000-sun
 		;;
@@ -1153,8 +1064,20 @@ case $basic_machine in
 		basic_machine=t90-cray
 		os=-unicos
 		;;
+	tic54x | c54x*)
+		basic_machine=tic54x-unknown
+		os=-coff
+		;;
+	tic55x | c55x*)
+		basic_machine=tic55x-unknown
+		os=-coff
+		;;
+	tic6x | c6x*)
+		basic_machine=tic6x-unknown
+		os=-coff
+		;;
 	tile*)
-		basic_machine=$basic_machine-unknown
+		basic_machine=tile-unknown
 		os=-linux-gnu
 		;;
 	tx39)
@@ -1224,9 +1147,6 @@ case $basic_machine in
 	xps | xps100)
 		basic_machine=xps100-honeywell
 		;;
-	xscale-* | xscalee[bl]-*)
-		basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
-		;;
 	ymp)
 		basic_machine=ymp-cray
 		os=-unicos
@@ -1324,12 +1244,9 @@ esac
 if [ x"$os" != x"" ]
 then
 case $os in
-	# First match some system type aliases
-	# that might get confused with valid system types.
+        # First match some system type aliases
+        # that might get confused with valid system types.
 	# -solaris* is a basic system type, with this one exception.
-	-auroraux)
-		os=-auroraux
-		;;
 	-solaris1 | -solaris1.*)
 		os=`echo $os | sed -e 's|solaris1|sunos4|'`
 		;;
@@ -1351,22 +1268,21 @@ case $os in
 	# -sysv* is not here because it comes later, after sysvr4.
 	-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
 	      | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
-	      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
-	      | -sym* | -kopensolaris* | -plan9* \
+	      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
+	      | -kopensolaris* \
 	      | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
 	      | -aos* | -aros* \
 	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
 	      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
 	      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
-	      | -bitrig* | -openbsd* | -solidbsd* \
+	      | -openbsd* | -solidbsd* \
 	      | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
 	      | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
 	      | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
 	      | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
 	      | -chorusos* | -chorusrdb* | -cegcc* \
-	      | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
-	      | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
-	      | -linux-newlib* | -linux-musl* | -linux-uclibc* \
+	      | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
+	      | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
 	      | -uxpv* | -beos* | -mpeix* | -udk* \
 	      | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
 	      | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
@@ -1374,7 +1290,7 @@ case $os in
 	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
 	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
 	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
-	      | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*)
+	      | -skyos* | -haiku* | -rdos* | -toppers* | -drops*)
 	# Remember, each alternative MUST END IN *, to match a version number.
 		;;
 	-qnx*)
@@ -1413,7 +1329,7 @@ case $os in
 	-opened*)
 		os=-openedition
 		;;
-	-os400*)
+        -os400*)
 		os=-os400
 		;;
 	-wince*)
@@ -1462,7 +1378,7 @@ case $os in
 	-sinix*)
 		os=-sysv4
 		;;
-	-tpf*)
+        -tpf*)
 		os=-tpf
 		;;
 	-triton*)
@@ -1498,14 +1414,15 @@ case $os in
 	-aros*)
 		os=-aros
 		;;
+	-kaos*)
+		os=-kaos
+		;;
 	-zvmoe)
 		os=-zvmoe
 		;;
 	-dicos*)
 		os=-dicos
 		;;
-	-nacl*)
-		;;
 	-none)
 		;;
 	*)
@@ -1528,10 +1445,10 @@ else
 # system, and we'll never get to this point.
 
 case $basic_machine in
-	score-*)
+        score-*)
 		os=-elf
 		;;
-	spu-*)
+        spu-*)
 		os=-elf
 		;;
 	*-acorn)
@@ -1543,23 +1460,8 @@ case $basic_machine in
 	arm*-semi)
 		os=-aout
 		;;
-	c4x-* | tic4x-*)
-		os=-coff
-		;;
-	c8051-*)
-		os=-elf
-		;;
-	hexagon-*)
-		os=-elf
-		;;
-	tic54x-*)
-		os=-coff
-		;;
-	tic55x-*)
-		os=-coff
-		;;
-	tic6x-*)
-		os=-coff
+        c4x-* | tic4x-*)
+        	os=-coff
 		;;
 	# This must come before the *-dec entry.
 	pdp10-*)
@@ -1579,11 +1481,14 @@ case $basic_machine in
 		;;
 	m68000-sun)
 		os=-sunos3
+		# This also exists in the configure program, but was not the
+		# default.
+		# os=-sunos4
 		;;
 	m68*-cisco)
 		os=-aout
 		;;
-	mep-*)
+        mep-*)
 		os=-elf
 		;;
 	mips*-cisco)
@@ -1592,9 +1497,6 @@ case $basic_machine in
 	mips*-*)
 		os=-elf
 		;;
-	or1k-*)
-		os=-elf
-		;;
 	or32-*)
 		os=-coff
 		;;
@@ -1613,7 +1515,7 @@ case $basic_machine in
 	*-ibm)
 		os=-aix
 		;;
-	*-knuth)
+    	*-knuth)
 		os=-mmixware
 		;;
 	*-wec)
diff --git a/config/Makefile.in b/config/Makefile.in
index 9bdd337..796b571 100644
--- a/config/Makefile.in
+++ b/config/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
-
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -17,51 +18,6 @@
 # include $(top_srcdir)/Makefile.paths
 
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -82,8 +38,8 @@ build_triplet = @build@
 host_triplet = @host@
 target_triplet = @target@
 subdir = config
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
-	$(srcdir)/rc.config.in $(srcdir)/aiplayers.cfg.in
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
+	$(srcdir)/aiplayers.cfg.in $(srcdir)/rc.config.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
 	$(top_srcdir)/accustomdir.m4 $(top_srcdir)/configure.ac
@@ -93,25 +49,8 @@ mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = $(top_builddir)/config.h
 CONFIG_CLEAN_FILES = rc.config aiplayers.cfg
 CONFIG_CLEAN_VPATH_FILES =
-AM_V_P = $(am__v_P_ at AM_V@)
-am__v_P_ = $(am__v_P_ at AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
 SOURCES =
 DIST_SOURCES =
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 am__vpath_adj = case $$p in \
     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
@@ -133,19 +72,11 @@ am__nobase_list = $(am__nobase_strip_setup); \
 am__base_list = \
   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
-am__uninstall_files_from_dir = { \
-  test -z "$$files" \
-    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
-    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
-         $(am__cd) "$$dir" && rm -f $$files; }; \
-  }
 am__installdirs = "$(DESTDIR)$(configdir)"
 DATA = $(nobase_config_DATA)
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APBUILD_CC = @APBUILD_CC@
 APBUILD_CXX1 = @APBUILD_CXX1@
 APBUILD_CXX2 = @APBUILD_CXX2@
@@ -365,18 +296,15 @@ aiplayers.cfg: $(top_builddir)/config.status $(srcdir)/aiplayers.cfg.in
 	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
 install-nobase_configDATA: $(nobase_config_DATA)
 	@$(NORMAL_INSTALL)
+	test -z "$(configdir)" || $(MKDIR_P) "$(DESTDIR)$(configdir)"
 	@list='$(nobase_config_DATA)'; test -n "$(configdir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(configdir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(configdir)" || exit 1; \
-	fi; \
 	$(am__nobase_list) | while read dir files; do \
 	  xfiles=; for file in $$files; do \
 	    if test -f "$$file"; then xfiles="$$xfiles $$file"; \
 	    else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
 	  test -z "$$xfiles" || { \
 	    test "x$$dir" = x. || { \
-	      echo " $(MKDIR_P) '$(DESTDIR)$(configdir)/$$dir'"; \
+	      echo "$(MKDIR_P) '$(DESTDIR)$(configdir)/$$dir'"; \
 	      $(MKDIR_P) "$(DESTDIR)$(configdir)/$$dir"; }; \
 	    echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(configdir)/$$dir'"; \
 	    $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(configdir)/$$dir" || exit $$?; }; \
@@ -386,12 +314,14 @@ uninstall-nobase_configDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(nobase_config_DATA)'; test -n "$(configdir)" || list=; \
 	$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
-	dir='$(DESTDIR)$(configdir)'; $(am__uninstall_files_from_dir)
-tags TAGS:
-
-ctags CTAGS:
+	test -n "$$files" || exit 0; \
+	echo " ( cd '$(DESTDIR)$(configdir)' && rm -f" $$files ")"; \
+	cd "$(DESTDIR)$(configdir)" && rm -f $$files
+tags: TAGS
+TAGS:
 
-cscope cscopelist:
+ctags: CTAGS
+CTAGS:
 
 
 distdir: $(DISTFILES)
@@ -441,15 +371,10 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 mostlyclean-generic:
 
 clean-generic:
@@ -529,17 +454,17 @@ uninstall-am: uninstall-nobase_configDATA
 
 .MAKE: install-am install-strip
 
-.PHONY: all all-am check check-am clean clean-generic cscopelist-am \
-	ctags-am distclean distclean-generic distdir dvi dvi-am html \
-	html-am info info-am install install-am install-data \
-	install-data-am install-dvi install-dvi-am install-exec \
-	install-exec-am install-html install-html-am install-info \
-	install-info-am install-man install-nobase_configDATA \
-	install-pdf install-pdf-am install-ps install-ps-am \
-	install-strip installcheck installcheck-am installdirs \
-	maintainer-clean maintainer-clean-generic mostlyclean \
-	mostlyclean-generic pdf pdf-am ps ps-am tags-am uninstall \
-	uninstall-am uninstall-nobase_configDATA
+.PHONY: all all-am check check-am clean clean-generic distclean \
+	distclean-generic distdir dvi dvi-am html html-am info info-am \
+	install install-am install-data install-data-am install-dvi \
+	install-dvi-am install-exec install-exec-am install-html \
+	install-html-am install-info install-info-am install-man \
+	install-nobase_configDATA install-pdf install-pdf-am \
+	install-ps install-ps-am install-strip installcheck \
+	installcheck-am installdirs maintainer-clean \
+	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
+	pdf-am ps ps-am uninstall uninstall-am \
+	uninstall-nobase_configDATA
 
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
diff --git a/configure b/configure
index 7b7b4c1..34b5d14 100755
--- a/configure
+++ b/configure
@@ -1,9 +1,11 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for armagetronad 0.2.8.3.3.
+# Generated by GNU Autoconf 2.65 for armagetronad 0.2.8.3.4.
 #
 #
-# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
+# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
+# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
+# Inc.
 #
 #
 # This configure script is free software; the Free Software Foundation
@@ -87,7 +89,6 @@ fi
 IFS=" ""	$as_nl"
 
 # Find who we are.  Look in the path if we contain no directory separator.
-as_myself=
 case $0 in #((
   *[\\/]* ) as_myself=$0 ;;
   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -132,31 +133,6 @@ export LANGUAGE
 # CDPATH.
 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
-# Use a proper internal environment variable to ensure we don't fall
-  # into an infinite loop, continuously re-executing ourselves.
-  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
-    _as_can_reexec=no; export _as_can_reexec;
-    # We cannot yet assume a decent shell, so we have to provide a
-# neutralization value for shells without unset; and this also
-# works around shells that cannot unset nonexistent variables.
-# Preserve -v and -x to the replacement shell.
-BASH_ENV=/dev/null
-ENV=/dev/null
-(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
-case $- in # ((((
-  *v*x* | *x*v* ) as_opts=-vx ;;
-  *v* ) as_opts=-v ;;
-  *x* ) as_opts=-x ;;
-  * ) as_opts= ;;
-esac
-exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
-# Admittedly, this is quite paranoid, since all the known shells bail
-# out after a failed `exec'.
-$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
-as_fn_exit 255
-  fi
-  # We don't want this to propagate to other subprocesses.
-          { _as_can_reexec=; unset _as_can_reexec;}
 if test "x$CONFIG_SHELL" = x; then
   as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
   emulate sh
@@ -190,8 +166,7 @@ if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
 else
   exitcode=1; echo positional parameters were not saved.
 fi
-test x\$exitcode = x0 || exit 1
-test -x / || exit 1"
+test x\$exitcode = x0 || exit 1"
   as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
   as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
   eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
@@ -236,25 +211,14 @@ IFS=$as_save_IFS
 
 
       if test "x$CONFIG_SHELL" != x; then :
-  export CONFIG_SHELL
-             # We cannot yet assume a decent shell, so we have to provide a
-# neutralization value for shells without unset; and this also
-# works around shells that cannot unset nonexistent variables.
-# Preserve -v and -x to the replacement shell.
-BASH_ENV=/dev/null
-ENV=/dev/null
-(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
-case $- in # ((((
-  *v*x* | *x*v* ) as_opts=-vx ;;
-  *v* ) as_opts=-v ;;
-  *x* ) as_opts=-x ;;
-  * ) as_opts= ;;
-esac
-exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
-# Admittedly, this is quite paranoid, since all the known shells bail
-# out after a failed `exec'.
-$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
-exit 255
+  # We cannot yet assume a decent shell, so we have to provide a
+	# neutralization value for shells without unset; and this also
+	# works around shells that cannot unset nonexistent variables.
+	BASH_ENV=/dev/null
+	ENV=/dev/null
+	(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+	export CONFIG_SHELL
+	exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
 fi
 
     if test x$as_have_required = xno; then :
@@ -352,18 +316,10 @@ $as_echo X"$as_dir" |
       test -d "$as_dir" && break
     done
     test -z "$as_dirs" || eval "mkdir $as_dirs"
-  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
 
 
 } # as_fn_mkdir_p
-
-# as_fn_executable_p FILE
-# -----------------------
-# Test if FILE is an executable regular file.
-as_fn_executable_p ()
-{
-  test -f "$1" && test -x "$1"
-} # as_fn_executable_p
 # as_fn_append VAR VALUE
 # ----------------------
 # Append the text in VALUE to the end of the definition contained in VAR. Take
@@ -400,19 +356,19 @@ else
 fi # as_fn_arith
 
 
-# as_fn_error STATUS ERROR [LINENO LOG_FD]
-# ----------------------------------------
+# as_fn_error ERROR [LINENO LOG_FD]
+# ---------------------------------
 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with STATUS, using 1 if that was 0.
+# script with status $?, using 1 if that was 0.
 as_fn_error ()
 {
-  as_status=$1; test $as_status -eq 0 && as_status=1
-  if test "$4"; then
-    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
+  as_status=$?; test $as_status -eq 0 && as_status=1
+  if test "$3"; then
+    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
   fi
-  $as_echo "$as_me: error: $2" >&2
+  $as_echo "$as_me: error: $1" >&2
   as_fn_exit $as_status
 } # as_fn_error
 
@@ -485,10 +441,6 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits
   chmod +x "$as_me.lineno" ||
     { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
 
-  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
-  # already done that, so ensure we don't try to do so again and fall
-  # in an infinite loop.  This has already happened in practice.
-  _as_can_reexec=no; export _as_can_reexec
   # Don't try to exec as it changes $[0], causing all sort of problems
   # (the dirname of $[0] is not the place where we might find the
   # original and so on.  Autoconf is especially sensitive to this).
@@ -523,16 +475,16 @@ if (echo >conf$$.file) 2>/dev/null; then
     # ... but there are two gotchas:
     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
-    # In both cases, we have to default to `cp -pR'.
+    # In both cases, we have to default to `cp -p'.
     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-      as_ln_s='cp -pR'
+      as_ln_s='cp -p'
   elif ln conf$$.file conf$$ 2>/dev/null; then
     as_ln_s=ln
   else
-    as_ln_s='cp -pR'
+    as_ln_s='cp -p'
   fi
 else
-  as_ln_s='cp -pR'
+  as_ln_s='cp -p'
 fi
 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 rmdir conf$$.dir 2>/dev/null
@@ -544,8 +496,28 @@ else
   as_mkdir_p=false
 fi
 
-as_test_x='test -x'
-as_executable_p=as_fn_executable_p
+if test -x / >/dev/null 2>&1; then
+  as_test_x='test -x'
+else
+  if ls -dL / >/dev/null 2>&1; then
+    as_ls_L_option=L
+  else
+    as_ls_L_option=
+  fi
+  as_test_x='
+    eval sh -c '\''
+      if test -d "$1"; then
+	test -d "$1/.";
+      else
+	case $1 in #(
+	-*)set "./$1";;
+	esac;
+	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
+	???[sx]*):;;*)false;;esac;fi
+    '\'' sh
+  '
+fi
+as_executable_p=$as_test_x
 
 # Sed expression to map a string onto a valid CPP name.
 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
@@ -558,7 +530,7 @@ test -n "$DJDIR" || exec 7<&0 </dev/null
 exec 6>&1
 
 # Name of the host.
-# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
+# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
 # so uname gets run too.
 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
 
@@ -577,8 +549,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='armagetronad'
 PACKAGE_TARNAME='armagetronad'
-PACKAGE_VERSION='0.2.8.3.3'
-PACKAGE_STRING='armagetronad 0.2.8.3.3'
+PACKAGE_VERSION='0.2.8.3.4'
+PACKAGE_STRING='armagetronad 0.2.8.3.4'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -691,7 +663,6 @@ games_suffix_data
 am__fastdepCXX_FALSE
 am__fastdepCXX_TRUE
 CXXDEPMODE
-am__nodep
 AMDEPBACKSLASH
 AMDEP_FALSE
 AMDEP_TRUE
@@ -745,10 +716,6 @@ HAVE_M4_FALSE
 HAVE_M4_TRUE
 HAVE_M4
 LN_S
-AM_BACKSLASH
-AM_DEFAULT_VERBOSITY
-AM_DEFAULT_V
-AM_V
 am__untar
 am__tar
 AMTAR
@@ -816,7 +783,6 @@ SHELL'
 ac_subst_files=''
 ac_user_opts='
 enable_option_checking
-enable_silent_rules
 with_maxclients
 enable_dedicated
 enable_master
@@ -962,7 +928,7 @@ do
     ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      as_fn_error $? "invalid feature name: $ac_feature"
+      as_fn_error "invalid feature name: $ac_feature"
     ac_feature=`echo $ac_feature | sed 's/-/_/g'`
     eval "enable_$ac_feature=no" ;;
 
@@ -970,7 +936,7 @@ do
     ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      as_fn_error $? "invalid feature name: $ac_feature"
+      as_fn_error "invalid feature name: $ac_feature"
     ac_feature=`echo $ac_feature | sed 's/-/_/g'`
     case $ac_option in
       *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
@@ -1147,7 +1113,7 @@ do
     ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      as_fn_error $? "invalid package name: $ac_package"
+      as_fn_error "invalid package name: $ac_package"
     ac_package=`echo $ac_package| sed 's/-/_/g'`
     case $ac_option in
       *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
@@ -1159,7 +1125,7 @@ do
     ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      as_fn_error $? "invalid package name: $ac_package"
+      as_fn_error "invalid package name: $ac_package"
     ac_package=`echo $ac_package | sed 's/-/_/g'`
     eval "with_$ac_package=no" ;;
 
@@ -1206,7 +1172,7 @@ do
     ac_destvar=`expr "x$ac_option" : 'x-*\([^=]*\)'`
     # Reject names that are not valid shell variable names.
     expr "x$ac_destvar" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      as_fn_error $? "invalid variable name: $ac_destvar"
+      as_fn_error "invalid variable name: $ac_destvar"
     case $ac_option in
       *=*) eval "${ac_destvar}='\$ac_optarg'" ;;
       *) ac_prev=${ac_destvar} ;;
@@ -1214,7 +1180,7 @@ do
     ;;
 
 
-  -*) as_fn_error $? "unrecognized option: $ac_option
+  -*) as_fn_error "unrecognized option: $ac_option
 Try \`$0 --help' for more information."
     ;;
 
@@ -1222,7 +1188,7 @@ Try \`$0 --help' for more information."
     ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
     # Reject names that are not valid shell variable names.
     expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
-      as_fn_error $? "invalid variable name: $ac_envvar"
+      as_fn_error "invalid variable name: $ac_envvar"
     ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
     eval "$ac_envvar='$ac_optarg'"
     export $ac_envvar ;;
@@ -1240,7 +1206,7 @@ done
 
 if test -n "$ac_prev"; then
   ac_option=--`echo $ac_prev | sed 's/_/-/g'`
-  as_fn_error $? "missing argument to $ac_option"
+  as_fn_error "missing argument to $ac_option"
 fi
 
 # Be sure to have absolute paths.
@@ -1249,7 +1215,7 @@ do
   eval ac_val=$`echo $ac_var`
   case $ac_val in
     [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
-    *)  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val";;
+    *)  as_fn_error "expected an absolute directory name for --$ac_var: $ac_val";;
   esac
 done
 
@@ -1265,7 +1231,7 @@ do
   eval ac_val=$`echo $ac_var`
   case $ac_val in
     [\\/$]* | ?:[\\/]* ) ;;
-    *)  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val";;
+    *)  as_fn_error "expected an absolute directory name for --$ac_var: $ac_val";;
   esac
 done
 
@@ -1296,9 +1262,9 @@ test "$silent" = yes && exec 6>/dev/null
 ac_pwd=`pwd` && test -n "$ac_pwd" &&
 ac_ls_di=`ls -di .` &&
 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
-  as_fn_error $? "working directory cannot be determined"
+  as_fn_error "working directory cannot be determined"
 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
-  as_fn_error $? "pwd does not report name of working directory"
+  as_fn_error "pwd does not report name of working directory"
 
 
 # Find the source files, if location was not specified.
@@ -1337,11 +1303,11 @@ else
 fi
 if test ! -r "$srcdir/$ac_unique_file"; then
   test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
-  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
+  as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
 fi
 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
 ac_abs_confdir=`(
-	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
+	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
 	pwd)`
 # When building in place, set srcdir=.
 if test "$ac_abs_confdir" = "$ac_pwd"; then
@@ -1367,7 +1333,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures armagetronad 0.2.8.3.3 to adapt to many kinds of systems.
+\`configure' configures armagetronad 0.2.8.3.4 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1441,7 +1407,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of armagetronad 0.2.8.3.3:";;
+     short | recursive ) echo "Configuration of armagetronad 0.2.8.3.4:";;
    esac
   cat <<\_ACEOF
 
@@ -1449,15 +1415,13 @@ Optional Features:
   --disable-option-checking  ignore unrecognized --enable/--with options
   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
-  --enable-silent-rules   less verbose build output (undo: "make V=1")
-  --disable-silent-rules  verbose build output (undo: "make V=0")
   --enable-dedicated      enables dedicated server; otherwise, compile a
                           client (default=disabled)
   --enable-master         Build the master server
   --enable-main           Build the main program
   --enable-glout          Inverse alias of --enable-dedicated
   --enable-memmanager     enable custom memory manager on systems that allow
-                          it (default=disabled)
+                          it [BROKEN] (default=disabled)
   --enable-music          compile in support for background music
                           (default=disabled)
   --enable-respawn        enable unsupported, hacky, impossible to deactivate
@@ -1507,10 +1471,8 @@ Optional Features:
   --enable-enginecoredebug
                           Apply debugging options to engine core (for
                           DEBUGLEVEL>0, defaults to enabled)
-  --enable-dependency-tracking
-                          do not reject slow dependency extractors
-  --disable-dependency-tracking
-                          speeds up one-time build
+  --disable-dependency-tracking  speeds up one-time build
+  --enable-dependency-tracking   do not reject slow dependency extractors
   --disable-zthreadtest       Do not try to compile and run a test ZTHREAD program
   --enable-migratestate   tries to move old server state data to its new
                           location (default=enabled)
@@ -1632,10 +1594,10 @@ fi
 test -n "$ac_init_help" && exit 0
 if $ac_init_version; then
   cat <<\_ACEOF
-armagetronad configure 0.2.8.3.3
-generated by GNU Autoconf 2.69
+armagetronad configure 0.2.8.3.4
+generated by GNU Autoconf 2.65
 
-Copyright (C) 2012 Free Software Foundation, Inc.
+Copyright (C) 2009 Free Software Foundation, Inc.
 This configure script is free software; the Free Software Foundation
 gives unlimited permission to copy, distribute and modify it.
 _ACEOF
@@ -1679,7 +1641,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
 	ac_retval=1
 fi
-  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
   as_fn_set_status $ac_retval
 
 } # ac_fn_cxx_try_compile
@@ -1717,7 +1679,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
 	ac_retval=1
 fi
-  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
   as_fn_set_status $ac_retval
 
 } # ac_fn_c_try_compile
@@ -1743,7 +1705,7 @@ $as_echo "$ac_try_echo"; } >&5
     mv -f conftest.er1 conftest.err
   fi
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; } > conftest.i && {
+  test $ac_status = 0; } >/dev/null && {
 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 	 test ! -s conftest.err
        }; then :
@@ -1754,7 +1716,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
     ac_retval=1
 fi
-  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
   as_fn_set_status $ac_retval
 
 } # ac_fn_c_try_cpp
@@ -1780,7 +1742,7 @@ $as_echo "$ac_try_echo"; } >&5
     mv -f conftest.er1 conftest.err
   fi
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; } > conftest.i && {
+  test $ac_status = 0; } >/dev/null && {
 	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
 	 test ! -s conftest.err
        }; then :
@@ -1791,7 +1753,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
     ac_retval=1
 fi
-  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
   as_fn_set_status $ac_retval
 
 } # ac_fn_cxx_try_cpp
@@ -1805,7 +1767,7 @@ ac_fn_c_check_type ()
   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if eval \${$3+:} false; then :
+if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
   $as_echo_n "(cached) " >&6
 else
   eval "$3=no"
@@ -1846,7 +1808,7 @@ fi
 eval ac_res=\$$3
 	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 $as_echo "$ac_res" >&6; }
-  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 
 } # ac_fn_c_check_type
 
@@ -1877,7 +1839,7 @@ $as_echo "$ac_try_echo"; } >&5
 	 test ! -s conftest.err
        } && test -s conftest$ac_exeext && {
 	 test "$cross_compiling" = yes ||
-	 test -x conftest$ac_exeext
+	 $as_test_x conftest$ac_exeext
        }; then :
   ac_retval=0
 else
@@ -1891,7 +1853,7 @@ fi
   # interfere with the next link command; also delete a directory that is
   # left behind by Apple's compiler.  We do this before executing the actions.
   rm -rf conftest.dSYM conftest_ipa8_conftest.oo
-  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
   as_fn_set_status $ac_retval
 
 } # ac_fn_c_try_link
@@ -1904,7 +1866,7 @@ ac_fn_c_check_func ()
   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if eval \${$3+:} false; then :
+if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1959,7 +1921,7 @@ fi
 eval ac_res=\$$3
 	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 $as_echo "$ac_res" >&6; }
-  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 
 } # ac_fn_c_check_func
 
@@ -2000,7 +1962,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
        ac_retval=$ac_status
 fi
   rm -rf conftest.dSYM conftest_ipa8_conftest.oo
-  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
   as_fn_set_status $ac_retval
 
 } # ac_fn_c_try_run
@@ -2013,10 +1975,10 @@ fi
 ac_fn_c_check_header_mongrel ()
 {
   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-  if eval \${$3+:} false; then :
+  if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if eval \${$3+:} false; then :
+if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
   $as_echo_n "(cached) " >&6
 fi
 eval ac_res=\$$3
@@ -2052,7 +2014,7 @@ if ac_fn_c_try_cpp "$LINENO"; then :
 else
   ac_header_preproc=no
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
 $as_echo "$ac_header_preproc" >&6; }
 
@@ -2079,7 +2041,7 @@ $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
 esac
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if eval \${$3+:} false; then :
+if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
   $as_echo_n "(cached) " >&6
 else
   eval "$3=\$ac_header_compiler"
@@ -2088,7 +2050,7 @@ eval ac_res=\$$3
 	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 $as_echo "$ac_res" >&6; }
 fi
-  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 
 } # ac_fn_c_check_header_mongrel
 
@@ -2101,7 +2063,7 @@ ac_fn_c_check_header_compile ()
   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
 $as_echo_n "checking for $2... " >&6; }
-if eval \${$3+:} false; then :
+if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -2119,15 +2081,15 @@ fi
 eval ac_res=\$$3
 	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 $as_echo "$ac_res" >&6; }
-  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 
 } # ac_fn_c_check_header_compile
 cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by armagetronad $as_me 0.2.8.3.3, which was
-generated by GNU Autoconf 2.69.  Invocation command line was
+It was created by armagetronad $as_me 0.2.8.3.4, which was
+generated by GNU Autoconf 2.65.  Invocation command line was
 
   $ $0 $@
 
@@ -2237,9 +2199,11 @@ trap 'exit_status=$?
   {
     echo
 
-    $as_echo "## ---------------- ##
+    cat <<\_ASBOX
+## ---------------- ##
 ## Cache variables. ##
-## ---------------- ##"
+## ---------------- ##
+_ASBOX
     echo
     # The following way of writing the cache mishandles newlines in values,
 (
@@ -2273,9 +2237,11 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 )
     echo
 
-    $as_echo "## ----------------- ##
+    cat <<\_ASBOX
+## ----------------- ##
 ## Output variables. ##
-## ----------------- ##"
+## ----------------- ##
+_ASBOX
     echo
     for ac_var in $ac_subst_vars
     do
@@ -2288,9 +2254,11 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
     echo
 
     if test -n "$ac_subst_files"; then
-      $as_echo "## ------------------- ##
+      cat <<\_ASBOX
+## ------------------- ##
 ## File substitutions. ##
-## ------------------- ##"
+## ------------------- ##
+_ASBOX
       echo
       for ac_var in $ac_subst_files
       do
@@ -2304,9 +2272,11 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
     fi
 
     if test -s confdefs.h; then
-      $as_echo "## ----------- ##
+      cat <<\_ASBOX
+## ----------- ##
 ## confdefs.h. ##
-## ----------- ##"
+## ----------- ##
+_ASBOX
       echo
       cat confdefs.h
       echo
@@ -2361,12 +2331,7 @@ _ACEOF
 ac_site_file1=NONE
 ac_site_file2=NONE
 if test -n "$CONFIG_SITE"; then
-  # We do not want a PATH search for config.site.
-  case $CONFIG_SITE in #((
-    -*)  ac_site_file1=./$CONFIG_SITE;;
-    */*) ac_site_file1=$CONFIG_SITE;;
-    *)   ac_site_file1=./$CONFIG_SITE;;
-  esac
+  ac_site_file1=$CONFIG_SITE
 elif test "x$prefix" != xNONE; then
   ac_site_file1=$prefix/share/config.site
   ac_site_file2=$prefix/etc/config.site
@@ -2381,11 +2346,7 @@ do
     { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
 $as_echo "$as_me: loading site script $ac_site_file" >&6;}
     sed 's/^/| /' "$ac_site_file" >&5
-    . "$ac_site_file" \
-      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error $? "failed to load site script $ac_site_file
-See \`config.log' for more details" "$LINENO" 5; }
+    . "$ac_site_file"
   fi
 done
 
@@ -2461,7 +2422,7 @@ if $ac_cache_corrupted; then
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
   { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
-  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
+  as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
 fi
 ## -------------------- ##
 ## Main body of script. ##
@@ -2485,22 +2446,16 @@ OUTSIDE_OF_PREFIX=no
 
 ac_aux_dir=
 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
-  if test -f "$ac_dir/install-sh"; then
-    ac_aux_dir=$ac_dir
-    ac_install_sh="$ac_aux_dir/install-sh -c"
-    break
-  elif test -f "$ac_dir/install.sh"; then
-    ac_aux_dir=$ac_dir
-    ac_install_sh="$ac_aux_dir/install.sh -c"
-    break
-  elif test -f "$ac_dir/shtool"; then
-    ac_aux_dir=$ac_dir
-    ac_install_sh="$ac_aux_dir/shtool install -c"
-    break
-  fi
+  for ac_t in install-sh install.sh shtool; do
+    if test -f "$ac_dir/$ac_t"; then
+      ac_aux_dir=$ac_dir
+      ac_install_sh="$ac_aux_dir/$ac_t -c"
+      break 2
+    fi
+  done
 done
 if test -z "$ac_aux_dir"; then
-  as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
+  as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
 fi
 
 # These three variables are undocumented and unsupported,
@@ -2514,27 +2469,27 @@ ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
 
 # Make sure we can run config.sub.
 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
-  as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
+  as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
 $as_echo_n "checking build system type... " >&6; }
-if ${ac_cv_build+:} false; then :
+if test "${ac_cv_build+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_build_alias=$build_alias
 test "x$ac_build_alias" = x &&
   ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
 test "x$ac_build_alias" = x &&
-  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
+  as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5
 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
-  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
+  as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
 
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
 $as_echo "$ac_cv_build" >&6; }
 case $ac_cv_build in
 *-*-*) ;;
-*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
+*) as_fn_error "invalid value of canonical build" "$LINENO" 5;;
 esac
 build=$ac_cv_build
 ac_save_IFS=$IFS; IFS='-'
@@ -2552,14 +2507,14 @@ case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
 $as_echo_n "checking host system type... " >&6; }
-if ${ac_cv_host+:} false; then :
+if test "${ac_cv_host+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test "x$host_alias" = x; then
   ac_cv_host=$ac_cv_build
 else
   ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
+    as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
 fi
 
 fi
@@ -2567,7 +2522,7 @@ fi
 $as_echo "$ac_cv_host" >&6; }
 case $ac_cv_host in
 *-*-*) ;;
-*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
+*) as_fn_error "invalid value of canonical host" "$LINENO" 5;;
 esac
 host=$ac_cv_host
 ac_save_IFS=$IFS; IFS='-'
@@ -2585,14 +2540,14 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5
 $as_echo_n "checking target system type... " >&6; }
-if ${ac_cv_target+:} false; then :
+if test "${ac_cv_target+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test "x$target_alias" = x; then
   ac_cv_target=$ac_cv_host
 else
   ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5
+    as_fn_error "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5
 fi
 
 fi
@@ -2600,7 +2555,7 @@ fi
 $as_echo "$ac_cv_target" >&6; }
 case $ac_cv_target in
 *-*-*) ;;
-*) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;;
+*) as_fn_error "invalid value of canonical target" "$LINENO" 5;;
 esac
 target=$ac_cv_target
 ac_save_IFS=$IFS; IFS='-'
@@ -2629,7 +2584,7 @@ if test -n "$ac_tool_prefix"; then
 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_RANLIB+:} false; then :
+if test "${ac_cv_prog_RANLIB+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$RANLIB"; then
@@ -2641,7 +2596,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -2669,7 +2624,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
 set dummy ranlib; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
+if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$ac_ct_RANLIB"; then
@@ -2681,7 +2636,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_ac_ct_RANLIB="ranlib"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -2716,7 +2671,7 @@ else
   RANLIB="$ac_cv_prog_RANLIB"
 fi
 
-am__api_version='1.14'
+am__api_version='1.11'
 
 # Find a good install program.  We prefer a C program (faster),
 # so one script is as good as another.  But avoid the broken or
@@ -2735,7 +2690,7 @@ am__api_version='1.14'
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
 $as_echo_n "checking for a BSD-compatible install... " >&6; }
 if test -z "$INSTALL"; then
-if ${ac_cv_path_install+:} false; then :
+if test "${ac_cv_path_install+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -2755,7 +2710,7 @@ case $as_dir/ in #((
     # by default.
     for ac_prog in ginstall scoinst install; do
       for ac_exec_ext in '' $ac_executable_extensions; do
-	if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
+	if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
 	  if test $ac_prog = install &&
 	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 	    # AIX install.  It has an incompatible calling convention.
@@ -2813,71 +2768,56 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
 $as_echo_n "checking whether build environment is sane... " >&6; }
+# Just in case
+sleep 1
+echo timestamp > conftest.file
 # Reject unsafe characters in $srcdir or the absolute working directory
 # name.  Accept space and tab only in the latter.
 am_lf='
 '
 case `pwd` in
   *[\\\"\#\$\&\'\`$am_lf]*)
-    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
+    as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;
 esac
 case $srcdir in
   *[\\\"\#\$\&\'\`$am_lf\ \	]*)
-    as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
+    as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
 esac
 
-# Do 'set' in a subshell so we don't clobber the current shell's
+# Do `set' in a subshell so we don't clobber the current shell's
 # arguments.  Must try -L first in case configure is actually a
 # symlink; some systems play weird games with the mod time of symlinks
 # (eg FreeBSD returns the mod time of the symlink's containing
 # directory).
 if (
-   am_has_slept=no
-   for am_try in 1 2; do
-     echo "timestamp, slept: $am_has_slept" > conftest.file
-     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
-     if test "$*" = "X"; then
-	# -L didn't work.
-	set X `ls -t "$srcdir/configure" conftest.file`
-     fi
-     if test "$*" != "X $srcdir/configure conftest.file" \
-	&& test "$*" != "X conftest.file $srcdir/configure"; then
-
-	# If neither matched, then we have a broken ls.  This can happen
-	# if, for instance, CONFIG_SHELL is bash and it inherits a
-	# broken ls alias from the environment.  This has actually
-	# happened.  Such a system could not be considered "sane".
-	as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken
-  alias in your environment" "$LINENO" 5
-     fi
-     if test "$2" = conftest.file || test $am_try -eq 2; then
-       break
-     fi
-     # Just in case.
-     sleep 1
-     am_has_slept=yes
-   done
+   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
+   if test "$*" = "X"; then
+      # -L didn't work.
+      set X `ls -t "$srcdir/configure" conftest.file`
+   fi
+   rm -f conftest.file
+   if test "$*" != "X $srcdir/configure conftest.file" \
+      && test "$*" != "X conftest.file $srcdir/configure"; then
+
+      # If neither matched, then we have a broken ls.  This can happen
+      # if, for instance, CONFIG_SHELL is bash and it inherits a
+      # broken ls alias from the environment.  This has actually
+      # happened.  Such a system could not be considered "sane".
+      as_fn_error "ls -t appears to fail.  Make sure there is not a broken
+alias in your environment" "$LINENO" 5
+   fi
+
    test "$2" = conftest.file
    )
 then
    # Ok.
    :
 else
-   as_fn_error $? "newly created file is older than distributed files!
+   as_fn_error "newly created file is older than distributed files!
 Check your system clock" "$LINENO" 5
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 $as_echo "yes" >&6; }
-# If we didn't sleep, we still need to ensure time stamps of config.status and
-# generated files are strictly newer.
-am_sleep_pid=
-if grep 'slept: no' conftest.file >/dev/null 2>&1; then
-  ( sleep 1 ) &
-  am_sleep_pid=$!
-fi
-
-rm -f conftest.file
-
 test "$program_prefix" != NONE &&
   program_transform_name="s&^&$program_prefix&;$program_transform_name"
 # Use a double $ so make ignores it.
@@ -2900,12 +2840,12 @@ if test x"${MISSING+set}" != xset; then
   esac
 fi
 # Use eval to expand $SHELL
-if eval "$MISSING --is-lightweight"; then
-  am_missing_run="$MISSING "
+if eval "$MISSING --run true"; then
+  am_missing_run="$MISSING --run "
 else
   am_missing_run=
-  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
-$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5
+$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
 fi
 
 if test x"${install_sh}" != xset; then
@@ -2917,17 +2857,17 @@ if test x"${install_sh}" != xset; then
   esac
 fi
 
-# Installed binaries are usually stripped using 'strip' when the user
-# run "make install-strip".  However 'strip' might not be the right
+# Installed binaries are usually stripped using `strip' when the user
+# run `make install-strip'.  However `strip' might not be the right
 # tool to use in cross-compilation environments, therefore Automake
-# will honor the 'STRIP' environment variable to overrule this program.
+# will honor the `STRIP' environment variable to overrule this program.
 if test "$cross_compiling" != no; then
   if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
 set dummy ${ac_tool_prefix}strip; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_STRIP+:} false; then :
+if test "${ac_cv_prog_STRIP+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$STRIP"; then
@@ -2939,7 +2879,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -2967,7 +2907,7 @@ if test -z "$ac_cv_prog_STRIP"; then
 set dummy strip; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
+if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$ac_ct_STRIP"; then
@@ -2979,7 +2919,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_ac_ct_STRIP="strip"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -3020,7 +2960,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
 if test -z "$MKDIR_P"; then
-  if ${ac_cv_path_mkdir+:} false; then :
+  if test "${ac_cv_path_mkdir+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -3030,7 +2970,7 @@ do
   test -z "$as_dir" && as_dir=.
     for ac_prog in mkdir gmkdir; do
 	 for ac_exec_ext in '' $ac_executable_extensions; do
-	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
+	   { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
 	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
 	     'mkdir (GNU coreutils) '* | \
 	     'mkdir (coreutils) '* | \
@@ -3059,13 +2999,19 @@ fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
 $as_echo "$MKDIR_P" >&6; }
 
+mkdir_p="$MKDIR_P"
+case $mkdir_p in
+  [\\/$]* | ?:[\\/]*) ;;
+  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
+esac
+
 for ac_prog in gawk mawk nawk awk
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_AWK+:} false; then :
+if test "${ac_cv_prog_AWK+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$AWK"; then
@@ -3077,7 +3023,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_AWK="$ac_prog"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -3105,7 +3051,7 @@ done
 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
 set x ${MAKE-make}
 ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
-if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
+if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
   $as_echo_n "(cached) " >&6
 else
   cat >conftest.make <<\_ACEOF
@@ -3113,7 +3059,7 @@ SHELL = /bin/sh
 all:
 	@echo '@@@%%%=$(MAKE)=@@@%%%'
 _ACEOF
-# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
+# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
 case `${MAKE-make} -f conftest.make 2>/dev/null` in
   *@@@%%%=?*=@@@%%%*)
     eval ac_cv_prog_make_${ac_make}_set=yes;;
@@ -3141,52 +3087,13 @@ else
 fi
 rmdir .tst 2>/dev/null
 
-# Check whether --enable-silent-rules was given.
-if test "${enable_silent_rules+set}" = set; then :
-  enableval=$enable_silent_rules;
-fi
-
-case $enable_silent_rules in # (((
-  yes) AM_DEFAULT_VERBOSITY=0;;
-   no) AM_DEFAULT_VERBOSITY=1;;
-    *) AM_DEFAULT_VERBOSITY=1;;
-esac
-am_make=${MAKE-make}
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
-$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
-if ${am_cv_make_support_nested_variables+:} false; then :
-  $as_echo_n "(cached) " >&6
-else
-  if $as_echo 'TRUE=$(BAR$(V))
-BAR0=false
-BAR1=true
-V=1
-am__doit:
-	@$(TRUE)
-.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
-  am_cv_make_support_nested_variables=yes
-else
-  am_cv_make_support_nested_variables=no
-fi
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
-$as_echo "$am_cv_make_support_nested_variables" >&6; }
-if test $am_cv_make_support_nested_variables = yes; then
-    AM_V='$(V)'
-  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
-else
-  AM_V=$AM_DEFAULT_VERBOSITY
-  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
-fi
-AM_BACKSLASH='\'
-
 if test "`cd $srcdir && pwd`" != "`pwd`"; then
   # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
   # is not polluted with repeated "-I."
   am__isrc=' -I$(srcdir)'
   # test to see if srcdir already configured
   if test -f $srcdir/config.status; then
-    as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
+    as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
   fi
 fi
 
@@ -3202,7 +3109,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='armagetronad'
- VERSION='0.2.8.3.3'
+ VERSION='0.2.8.3.4'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3230,71 +3137,19 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
 
 MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
 
-# For better backward compatibility.  To be removed once Automake 1.9.x
-# dies out for good.  For more background, see:
-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
-mkdir_p='$(MKDIR_P)'
-
 # We need awk for the "check" target.  The system "awk" is bad on
 # some platforms.
-# Always define AMTAR for backward compatibility.  Yes, it's still used
-# in the wild :-(  We should find a proper way to deprecate it ...
-AMTAR='$${TAR-tar}'
-
+# Always define AMTAR for backward compatibility.
 
-# We'll loop over all known methods to create a tar archive until one works.
-_am_tools='gnutar  pax cpio none'
+AMTAR=${AMTAR-"${am_missing_run}tar"}
 
-am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
+am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
 
 
 
 
 
 
-# POSIX will say in a future version that running "rm -f" with no argument
-# is OK; and we want to be able to make that assumption in our Makefile
-# recipes.  So use an aggressive probe to check that the usage we want is
-# actually supported "in the wild" to an acceptable degree.
-# See automake bug#10828.
-# To make any issue more visible, cause the running configure to be aborted
-# by default if the 'rm' program in use doesn't match our expectations; the
-# user can still override this though.
-if rm -f && rm -fr && rm -rf; then : OK; else
-  cat >&2 <<'END'
-Oops!
-
-Your 'rm' program seems unable to run without file operands specified
-on the command line, even when the '-f' option is present.  This is contrary
-to the behaviour of most rm programs out there, and not conforming with
-the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
-
-Please tell bug-automake at gnu.org about your system, including the value
-of your $PATH and any error possibly output before this message.  This
-can help us improve future automake versions.
-
-END
-  if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
-    echo 'Configuration will proceed anyway, since you have set the' >&2
-    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
-    echo >&2
-  else
-    cat >&2 <<'END'
-Aborting the configuration process, to ensure you take notice of the issue.
-
-You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: <http://www.gnu.org/software/coreutils/>.
-
-If you want to complete the configuration process using your problematic
-'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
-to "yes", and re-run configure.
-
-END
-    as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
-  fi
-fi
-
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5
 $as_echo_n "checking whether ln -s works... " >&6; }
 LN_S=$as_ln_s
@@ -3311,7 +3166,7 @@ fi
 set dummy m4; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_HAVE_M4+:} false; then :
+if test "${ac_cv_prog_HAVE_M4+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$HAVE_M4"; then
@@ -3323,7 +3178,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_HAVE_M4="true"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -3406,7 +3261,7 @@ if test "${enable_dedicated+set}" = set; then :
        no)  build_dedicated=false
 			build_regular=true
 	    ;;
-       *) as_fn_error $? "bad value ${enableval} for --enable-dedicated" "$LINENO" 5 ;;
+       *) as_fn_error "bad value ${enableval} for --enable-dedicated" "$LINENO" 5 ;;
      esac
 else
   build_dedicated=false
@@ -3420,7 +3275,7 @@ if test "${enable_master+set}" = set; then :
   enableval=$enable_master; case "${enableval}" in
        yes) armamaster=true ;;
        no)  armamaster=false ;;
-       *) as_fn_error $? "bad value ${enableval} for --enable-master" "$LINENO" 5 ;;
+       *) as_fn_error "bad value ${enableval} for --enable-master" "$LINENO" 5 ;;
      esac
 else
   armamaster=false
@@ -3441,7 +3296,7 @@ if test "${enable_main+set}" = set; then :
   enableval=$enable_main; case "${enableval}" in
        yes) armamain=true ;;
        no)  armamain=false ;;
-       *) as_fn_error $? "bad value ${enableval} for --enable-main" "$LINENO" 5 ;;
+       *) as_fn_error "bad value ${enableval} for --enable-main" "$LINENO" 5 ;;
      esac
 else
   armamain=true
@@ -3457,7 +3312,7 @@ if test "${enable_glout+set}" = set; then :
        no)  build_dedicated=true
 			build_regular=false
 	    ;;
-       *) as_fn_error $? "bad value ${enableval} for --enable-glout" "$LINENO" 5 ;;
+       *) as_fn_error "bad value ${enableval} for --enable-glout" "$LINENO" 5 ;;
      esac
 fi
 
@@ -3553,7 +3408,7 @@ if test "${enable_armathentication+set}" = set; then :
 	   	;;
        no)  enable_armathentication=no
 	    ;;
-       *) as_fn_error $? "bad value ${enableval} for --enable-armathentication" "$LINENO" 5 ;;
+       *) as_fn_error "bad value ${enableval} for --enable-armathentication" "$LINENO" 5 ;;
      esac
 else
   enable_armathentication=no
@@ -3568,7 +3423,7 @@ if test "${enable_authentication+set}" = set; then :
 	   	;;
        no)  enable_armathentication=no
 	    ;;
-       *) as_fn_error $? "bad value ${enableval} for --enable-authentication" "$LINENO" 5 ;;
+       *) as_fn_error "bad value ${enableval} for --enable-authentication" "$LINENO" 5 ;;
      esac
 fi
 
@@ -3686,7 +3541,7 @@ if test "${enable_enginecoredebug+set}" = set; then :
   enableval=$enable_enginecoredebug; case "${enableval}" in
        yes) enginecoredebug=true ;;
        no)  enginecoredebug=false ;;
-       *) as_fn_error $? "bad value ${enableval} for --enable-enginecoredebug" "$LINENO" 5 ;;
+       *) as_fn_error "bad value ${enableval} for --enable-enginecoredebug" "$LINENO" 5 ;;
      esac
 else
   enginecoredebug=true
@@ -3727,7 +3582,6 @@ test -z "`echo $CXXFLAGS | grep "\-O"`" && CXXFLAGS="$CXXFLAGS -O2"
 
 test $DEBUGLEVEL -ge 1 && CXXFLAGS="`echo $CXXFLAGS | sed -e 's,-O.,,'` -g -O0"
 test $DEBUGLEVEL -ge 2 && CXXFLAGS="$CXXFLAGS -DDEBUG"
-test $DEBUGLEVEL -ge 3 && enable_memmanager=yes
 test $DEBUGLEVEL -ge 4 && CXXFLAGS="$CXXFLAGS -DDEBUG_EXPENSIVE"
 test $DEBUGLEVEL -ge 5 && CXXFLAGS="$CXXFLAGS -DMEM_DEB"
 
@@ -3751,7 +3605,7 @@ am__quote=
 _am_result=none
 # First try GNU make style include.
 echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
+# Ignore all kinds of additional output from `make'.
 case `$am_make -s -f confmf 2> /dev/null` in #(
 *the\ am__doit\ target*)
   am__include=include
@@ -3784,7 +3638,6 @@ fi
 if test "x$enable_dependency_tracking" != xno; then
   am_depcomp="$ac_aux_dir/depcomp"
   AMDEPBACKSLASH='\'
-  am__nodep='_no'
 fi
  if test "x$enable_dependency_tracking" != xno; then
   AMDEP_TRUE=
@@ -3811,7 +3664,7 @@ if test -z "$CXX"; then
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_CXX+:} false; then :
+if test "${ac_cv_prog_CXX+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$CXX"; then
@@ -3823,7 +3676,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -3855,7 +3708,7 @@ do
 set dummy $ac_prog; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_ac_ct_CXX+:} false; then :
+if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$ac_ct_CXX"; then
@@ -3867,7 +3720,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_ac_ct_CXX="$ac_prog"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -4018,8 +3871,9 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error 77 "C++ compiler cannot create executables
-See \`config.log' for more details" "$LINENO" 5; }
+{ as_fn_set_status 77
+as_fn_error "C++ compiler cannot create executables
+See \`config.log' for more details." "$LINENO" 5; }; }
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 $as_echo "yes" >&6; }
@@ -4061,8 +3915,8 @@ done
 else
   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error $? "cannot compute suffix of executables: cannot compile and link
-See \`config.log' for more details" "$LINENO" 5; }
+as_fn_error "cannot compute suffix of executables: cannot compile and link
+See \`config.log' for more details." "$LINENO" 5; }
 fi
 rm -f conftest conftest$ac_cv_exeext
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
@@ -4119,9 +3973,9 @@ $as_echo "$ac_try_echo"; } >&5
     else
 	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error $? "cannot run C++ compiled programs.
+as_fn_error "cannot run C++ compiled programs.
 If you meant to cross compile, use \`--host'.
-See \`config.log' for more details" "$LINENO" 5; }
+See \`config.log' for more details." "$LINENO" 5; }
     fi
   fi
 fi
@@ -4132,7 +3986,7 @@ rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
 ac_clean_files=$ac_clean_files_save
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
 $as_echo_n "checking for suffix of object files... " >&6; }
-if ${ac_cv_objext+:} false; then :
+if test "${ac_cv_objext+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4172,8 +4026,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
 
 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error $? "cannot compute suffix of object files: cannot compile
-See \`config.log' for more details" "$LINENO" 5; }
+as_fn_error "cannot compute suffix of object files: cannot compile
+See \`config.log' for more details." "$LINENO" 5; }
 fi
 rm -f conftest.$ac_cv_objext conftest.$ac_ext
 fi
@@ -4183,7 +4037,7 @@ OBJEXT=$ac_cv_objext
 ac_objext=$OBJEXT
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
-if ${ac_cv_cxx_compiler_gnu+:} false; then :
+if test "${ac_cv_cxx_compiler_gnu+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4220,7 +4074,7 @@ ac_test_CXXFLAGS=${CXXFLAGS+set}
 ac_save_CXXFLAGS=$CXXFLAGS
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
 $as_echo_n "checking whether $CXX accepts -g... " >&6; }
-if ${ac_cv_prog_cxx_g+:} false; then :
+if test "${ac_cv_prog_cxx_g+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_save_cxx_werror_flag=$ac_cxx_werror_flag
@@ -4306,16 +4160,15 @@ depcc="$CXX"  am_compiler_list=
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
 $as_echo_n "checking dependency style of $depcc... " >&6; }
-if ${am_cv_CXX_dependencies_compiler_type+:} false; then :
+if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
   # We make a subdir and do the tests there.  Otherwise we can end up
   # making bogus files that we don't know about and never remove.  For
   # instance it was reported that on HP-UX the gcc test will end up
-  # making a dummy file named 'D' -- because '-MD' means "put the output
-  # in D".
-  rm -rf conftest.dir
+  # making a dummy file named `D' -- because `-MD' means `put the output
+  # in D'.
   mkdir conftest.dir
   # Copy depcomp to subdir because otherwise we won't find it if we're
   # using a relative directory.
@@ -4349,16 +4202,16 @@ else
     : > sub/conftest.c
     for i in 1 2 3 4 5 6; do
       echo '#include "conftst'$i'.h"' >> sub/conftest.c
-      # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
-      # Solaris 10 /bin/sh.
-      echo '/* dummy */' > sub/conftst$i.h
+      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
+      # Solaris 8's {/usr,}/bin/sh.
+      touch sub/conftst$i.h
     done
     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
-    # We check with '-c' and '-o' for the sake of the "dashmstdout"
+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
     # mode.  It turns out that the SunPro C++ compiler does not properly
-    # handle '-M -o', and we need to detect this.  Also, some Intel
-    # versions had trouble with output in subdirs.
+    # handle `-M -o', and we need to detect this.  Also, some Intel
+    # versions had trouble with output in subdirs
     am__obj=sub/conftest.${OBJEXT-o}
     am__minus_obj="-o $am__obj"
     case $depmode in
@@ -4367,16 +4220,16 @@ else
       test "$am__universal" = false || continue
       ;;
     nosideeffect)
-      # After this tag, mechanisms are not by side-effect, so they'll
-      # only be used when explicitly requested.
+      # after this tag, mechanisms are not by side-effect, so they'll
+      # only be used when explicitly requested
       if test "x$enable_dependency_tracking" = xyes; then
 	continue
       else
 	break
       fi
       ;;
-    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
-      # This compiler won't grok '-c -o', but also, the minuso test has
+    msvisualcpp | msvcmsys)
+      # This compiler won't grok `-c -o', but also, the minuso test has
       # not run yet.  These depmodes are late enough in the game, and
       # so weak that their functioning should not be impacted.
       am__obj=conftest.${OBJEXT-o}
@@ -4433,7 +4286,7 @@ fi
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking CXXFLAGS for gcc -nobodyreadsconfigureoutputanyway" >&5
 $as_echo_n "checking CXXFLAGS for gcc -nobodyreadsconfigureoutputanyway... " >&6; }
-if ${ac_cv_cxxflags_gcc_option__nobodyreadsconfigureoutputanyway+:} false; then :
+if test "${ac_cv_cxxflags_gcc_option__nobodyreadsconfigureoutputanyway+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_cv_cxxflags_gcc_option__nobodyreadsconfigureoutputanyway="no, unknown"
@@ -4501,7 +4354,7 @@ if test $CODELEVEL -ge 1; then
 
         { $as_echo "$as_me:${as_lineno-$LINENO}: checking CXXFLAGS for gcc -Wno-strict-overflow" >&5
 $as_echo_n "checking CXXFLAGS for gcc -Wno-strict-overflow... " >&6; }
-if ${ac_cv_cxxflags_gcc_option__Wno_strict_overflow+:} false; then :
+if test "${ac_cv_cxxflags_gcc_option__Wno_strict_overflow+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_cv_cxxflags_gcc_option__Wno_strict_overflow="no, unknown"
@@ -4607,7 +4460,7 @@ if test -n "$ac_tool_prefix"; then
 set dummy ${ac_tool_prefix}gcc; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_CC+:} false; then :
+if test "${ac_cv_prog_CC+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$CC"; then
@@ -4619,7 +4472,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_CC="${ac_tool_prefix}gcc"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -4647,7 +4500,7 @@ if test -z "$ac_cv_prog_CC"; then
 set dummy gcc; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_ac_ct_CC+:} false; then :
+if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$ac_ct_CC"; then
@@ -4659,7 +4512,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_ac_ct_CC="gcc"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -4700,7 +4553,7 @@ if test -z "$CC"; then
 set dummy ${ac_tool_prefix}cc; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_CC+:} false; then :
+if test "${ac_cv_prog_CC+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$CC"; then
@@ -4712,7 +4565,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_CC="${ac_tool_prefix}cc"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -4740,7 +4593,7 @@ if test -z "$CC"; then
 set dummy cc; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_CC+:} false; then :
+if test "${ac_cv_prog_CC+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$CC"; then
@@ -4753,7 +4606,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
        ac_prog_rejected=yes
        continue
@@ -4799,7 +4652,7 @@ if test -z "$CC"; then
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_CC+:} false; then :
+if test "${ac_cv_prog_CC+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$CC"; then
@@ -4811,7 +4664,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -4843,7 +4696,7 @@ do
 set dummy $ac_prog; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_ac_ct_CC+:} false; then :
+if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$ac_ct_CC"; then
@@ -4855,7 +4708,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_ac_ct_CC="$ac_prog"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -4897,8 +4750,8 @@ fi
 
 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error $? "no acceptable C compiler found in \$PATH
-See \`config.log' for more details" "$LINENO" 5; }
+as_fn_error "no acceptable C compiler found in \$PATH
+See \`config.log' for more details." "$LINENO" 5; }
 
 # Provide some information about the compiler.
 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
@@ -4927,7 +4780,7 @@ done
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
-if ${ac_cv_c_compiler_gnu+:} false; then :
+if test "${ac_cv_c_compiler_gnu+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4964,7 +4817,7 @@ ac_test_CFLAGS=${CFLAGS+set}
 ac_save_CFLAGS=$CFLAGS
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
 $as_echo_n "checking whether $CC accepts -g... " >&6; }
-if ${ac_cv_prog_cc_g+:} false; then :
+if test "${ac_cv_prog_cc_g+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_save_c_werror_flag=$ac_c_werror_flag
@@ -5042,7 +4895,7 @@ else
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
-if ${ac_cv_prog_cc_c89+:} false; then :
+if test "${ac_cv_prog_cc_c89+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_cv_prog_cc_c89=no
@@ -5051,7 +4904,8 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
 #include <stdarg.h>
 #include <stdio.h>
-struct stat;
+#include <sys/types.h>
+#include <sys/stat.h>
 /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
 struct buf { int x; };
 FILE * (*rcsopen) (struct buf *, struct stat *, int);
@@ -5136,79 +4990,19 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5
-$as_echo_n "checking whether $CC understands -c and -o together... " >&6; }
-if ${am_cv_prog_cc_c_o+:} false; then :
-  $as_echo_n "(cached) " >&6
-else
-  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h.  */
-
-int
-main ()
-{
-
-  ;
-  return 0;
-}
-_ACEOF
-  # Make sure it works both with $CC and with simple cc.
-  # Following AC_PROG_CC_C_O, we do the test twice because some
-  # compilers refuse to overwrite an existing .o file with -o,
-  # though they will create one.
-  am_cv_prog_cc_c_o=yes
-  for am_i in 1 2; do
-    if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5
-   ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5
-   ac_status=$?
-   echo "$as_me:$LINENO: \$? = $ac_status" >&5
-   (exit $ac_status); } \
-         && test -f conftest2.$ac_objext; then
-      : OK
-    else
-      am_cv_prog_cc_c_o=no
-      break
-    fi
-  done
-  rm -f core conftest*
-  unset am_i
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5
-$as_echo "$am_cv_prog_cc_c_o" >&6; }
-if test "$am_cv_prog_cc_c_o" != yes; then
-   # Losing compiler, so override with the script.
-   # FIXME: It is wrong to rewrite CC.
-   # But if we don't then we get into trouble of one sort or another.
-   # A longer-term fix would be to have automake use am__CC in this case,
-   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
-   CC="$am_aux_dir/compile $CC"
-fi
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-
-
 depcc="$CC"   am_compiler_list=
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
 $as_echo_n "checking dependency style of $depcc... " >&6; }
-if ${am_cv_CC_dependencies_compiler_type+:} false; then :
+if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
   # We make a subdir and do the tests there.  Otherwise we can end up
   # making bogus files that we don't know about and never remove.  For
   # instance it was reported that on HP-UX the gcc test will end up
-  # making a dummy file named 'D' -- because '-MD' means "put the output
-  # in D".
-  rm -rf conftest.dir
+  # making a dummy file named `D' -- because `-MD' means `put the output
+  # in D'.
   mkdir conftest.dir
   # Copy depcomp to subdir because otherwise we won't find it if we're
   # using a relative directory.
@@ -5242,16 +5036,16 @@ else
     : > sub/conftest.c
     for i in 1 2 3 4 5 6; do
       echo '#include "conftst'$i'.h"' >> sub/conftest.c
-      # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
-      # Solaris 10 /bin/sh.
-      echo '/* dummy */' > sub/conftst$i.h
+      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
+      # Solaris 8's {/usr,}/bin/sh.
+      touch sub/conftst$i.h
     done
     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
-    # We check with '-c' and '-o' for the sake of the "dashmstdout"
+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
     # mode.  It turns out that the SunPro C++ compiler does not properly
-    # handle '-M -o', and we need to detect this.  Also, some Intel
-    # versions had trouble with output in subdirs.
+    # handle `-M -o', and we need to detect this.  Also, some Intel
+    # versions had trouble with output in subdirs
     am__obj=sub/conftest.${OBJEXT-o}
     am__minus_obj="-o $am__obj"
     case $depmode in
@@ -5260,16 +5054,16 @@ else
       test "$am__universal" = false || continue
       ;;
     nosideeffect)
-      # After this tag, mechanisms are not by side-effect, so they'll
-      # only be used when explicitly requested.
+      # after this tag, mechanisms are not by side-effect, so they'll
+      # only be used when explicitly requested
       if test "x$enable_dependency_tracking" = xyes; then
 	continue
       else
 	break
       fi
       ;;
-    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
-      # This compiler won't grok '-c -o', but also, the minuso test has
+    msvisualcpp | msvcmsys)
+      # This compiler won't grok `-c -o', but also, the minuso test has
       # not run yet.  These depmodes are late enough in the game, and
       # so weak that their functioning should not be impacted.
       am__obj=conftest.${OBJEXT-o}
@@ -5335,7 +5129,7 @@ if test -n "$CPP" && test -d "$CPP"; then
   CPP=
 fi
 if test -z "$CPP"; then
-  if ${ac_cv_prog_CPP+:} false; then :
+  if test "${ac_cv_prog_CPP+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
       # Double quotes because CPP needs to be expanded
@@ -5365,7 +5159,7 @@ else
   # Broken: fails on valid input.
 continue
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 
   # OK, works on sane cases.  Now check whether nonexistent headers
   # can be detected and how.
@@ -5381,11 +5175,11 @@ else
 ac_preproc_ok=:
 break
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 
 done
 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.i conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 if $ac_preproc_ok; then :
   break
 fi
@@ -5424,7 +5218,7 @@ else
   # Broken: fails on valid input.
 continue
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 
   # OK, works on sane cases.  Now check whether nonexistent headers
   # can be detected and how.
@@ -5440,18 +5234,18 @@ else
 ac_preproc_ok=:
 break
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 
 done
 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.i conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 if $ac_preproc_ok; then :
 
 else
   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
-See \`config.log' for more details" "$LINENO" 5; }
+as_fn_error "C preprocessor \"$CPP\" fails sanity check
+See \`config.log' for more details." "$LINENO" 5; }
 fi
 
 ac_ext=c
@@ -5477,7 +5271,7 @@ if test -z "$CXX"; then
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_CXX+:} false; then :
+if test "${ac_cv_prog_CXX+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$CXX"; then
@@ -5489,7 +5283,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -5521,7 +5315,7 @@ do
 set dummy $ac_prog; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_ac_ct_CXX+:} false; then :
+if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$ac_ct_CXX"; then
@@ -5533,7 +5327,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_ac_ct_CXX="$ac_prog"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -5599,7 +5393,7 @@ done
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
-if ${ac_cv_cxx_compiler_gnu+:} false; then :
+if test "${ac_cv_cxx_compiler_gnu+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -5636,7 +5430,7 @@ ac_test_CXXFLAGS=${CXXFLAGS+set}
 ac_save_CXXFLAGS=$CXXFLAGS
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
 $as_echo_n "checking whether $CXX accepts -g... " >&6; }
-if ${ac_cv_prog_cxx_g+:} false; then :
+if test "${ac_cv_prog_cxx_g+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_save_cxx_werror_flag=$ac_cxx_werror_flag
@@ -5722,16 +5516,15 @@ depcc="$CXX"  am_compiler_list=
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
 $as_echo_n "checking dependency style of $depcc... " >&6; }
-if ${am_cv_CXX_dependencies_compiler_type+:} false; then :
+if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
   # We make a subdir and do the tests there.  Otherwise we can end up
   # making bogus files that we don't know about and never remove.  For
   # instance it was reported that on HP-UX the gcc test will end up
-  # making a dummy file named 'D' -- because '-MD' means "put the output
-  # in D".
-  rm -rf conftest.dir
+  # making a dummy file named `D' -- because `-MD' means `put the output
+  # in D'.
   mkdir conftest.dir
   # Copy depcomp to subdir because otherwise we won't find it if we're
   # using a relative directory.
@@ -5765,16 +5558,16 @@ else
     : > sub/conftest.c
     for i in 1 2 3 4 5 6; do
       echo '#include "conftst'$i'.h"' >> sub/conftest.c
-      # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
-      # Solaris 10 /bin/sh.
-      echo '/* dummy */' > sub/conftst$i.h
+      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
+      # Solaris 8's {/usr,}/bin/sh.
+      touch sub/conftst$i.h
     done
     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
-    # We check with '-c' and '-o' for the sake of the "dashmstdout"
+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
     # mode.  It turns out that the SunPro C++ compiler does not properly
-    # handle '-M -o', and we need to detect this.  Also, some Intel
-    # versions had trouble with output in subdirs.
+    # handle `-M -o', and we need to detect this.  Also, some Intel
+    # versions had trouble with output in subdirs
     am__obj=sub/conftest.${OBJEXT-o}
     am__minus_obj="-o $am__obj"
     case $depmode in
@@ -5783,16 +5576,16 @@ else
       test "$am__universal" = false || continue
       ;;
     nosideeffect)
-      # After this tag, mechanisms are not by side-effect, so they'll
-      # only be used when explicitly requested.
+      # after this tag, mechanisms are not by side-effect, so they'll
+      # only be used when explicitly requested
       if test "x$enable_dependency_tracking" = xyes; then
 	continue
       else
 	break
       fi
       ;;
-    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
-      # This compiler won't grok '-c -o', but also, the minuso test has
+    msvisualcpp | msvcmsys)
+      # This compiler won't grok `-c -o', but also, the minuso test has
       # not run yet.  These depmodes are late enough in the game, and
       # so weak that their functioning should not be impacted.
       am__obj=conftest.${OBJEXT-o}
@@ -5854,7 +5647,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5
 $as_echo_n "checking how to run the C++ preprocessor... " >&6; }
 if test -z "$CXXCPP"; then
-  if ${ac_cv_prog_CXXCPP+:} false; then :
+  if test "${ac_cv_prog_CXXCPP+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
       # Double quotes because CXXCPP needs to be expanded
@@ -5884,7 +5677,7 @@ else
   # Broken: fails on valid input.
 continue
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 
   # OK, works on sane cases.  Now check whether nonexistent headers
   # can be detected and how.
@@ -5900,11 +5693,11 @@ else
 ac_preproc_ok=:
 break
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 
 done
 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.i conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 if $ac_preproc_ok; then :
   break
 fi
@@ -5943,7 +5736,7 @@ else
   # Broken: fails on valid input.
 continue
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 
   # OK, works on sane cases.  Now check whether nonexistent headers
   # can be detected and how.
@@ -5959,18 +5752,18 @@ else
 ac_preproc_ok=:
 break
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 
 done
 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-rm -f conftest.i conftest.err conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 if $ac_preproc_ok; then :
 
 else
   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check
-See \`config.log' for more details" "$LINENO" 5; }
+as_fn_error "C++ preprocessor \"$CXXCPP\" fails sanity check
+See \`config.log' for more details." "$LINENO" 5; }
 fi
 
 ac_ext=c
@@ -5985,7 +5778,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
 set dummy gmake; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_HAVE_GMAKE+:} false; then :
+if test "${ac_cv_prog_HAVE_GMAKE+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$HAVE_GMAKE"; then
@@ -5997,7 +5790,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_HAVE_GMAKE="yes"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -6020,14 +5813,14 @@ fi
 
 
 if test ${HAVE_GMAKE} = no && make --version | head -n 1 | grep -v "GNU make" 2>&1 /dev/null; then
-   as_fn_error $? "GNU make (gmake) is currently required for compilation." "$LINENO" 5
+   as_fn_error "GNU make (gmake) is currently required for compilation." "$LINENO" 5
 fi
 
 # Extract the first word of "bash", so it can be a program name with args.
 set dummy bash; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_HAVE_BASH+:} false; then :
+if test "${ac_cv_prog_HAVE_BASH+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -n "$HAVE_BASH"; then
@@ -6039,7 +5832,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_prog_HAVE_BASH="yes"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -6062,7 +5855,7 @@ fi
 
 
 if test ${HAVE_BASH} = no; then
-   as_fn_error $? "GNU Bourne-Again SHell (bash) is currently required for compilation." "$LINENO" 5
+   as_fn_error "GNU Bourne-Again SHell (bash) is currently required for compilation." "$LINENO" 5
 fi
 
 
@@ -6161,7 +5954,7 @@ _ACEOF
 ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "#include <sys/types.h>
 #include <sys/socket.h>
 "
-if test "x$ac_cv_type_socklen_t" = xyes; then :
+if test "x$ac_cv_type_socklen_t" = x""yes; then :
 
 $as_echo "#define HAVE_SOCKLEN_T 1" >>confdefs.h
 
@@ -6255,8 +6048,8 @@ if test "x$with_x" = xno; then
   have_x=disabled
 else
   case $x_includes,$x_libraries in #(
-    *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #(
-    *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then :
+    *\'*) as_fn_error "cannot use X directory names containing '" "$LINENO" 5;; #(
+    *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   # One or both of the vars are not set, and there is no cached value.
@@ -6273,7 +6066,7 @@ libdir:
 	@echo libdir='${LIBDIR}'
 _ACEOF
   if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
-    # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
+    # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
     for ac_var in incroot usrlibdir libdir; do
       eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
     done
@@ -6359,7 +6152,7 @@ else
   fi
 done
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 fi # $ac_x_includes = no
 
 if test "$ac_x_libraries" = no; then
@@ -6533,7 +6326,7 @@ if ac_fn_c_try_link "$LINENO"; then :
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
 $as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; }
-if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then :
+if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -6567,14 +6360,14 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
 $as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; }
-if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then :
+if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
 fi
 
     if test $ac_cv_lib_dnet_dnet_ntoa = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5
 $as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; }
-if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then :
+if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -6608,7 +6401,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
 $as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; }
-if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then :
+if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
 fi
 
@@ -6627,14 +6420,14 @@ rm -f core conftest.err conftest.$ac_objext \
     # The functions gethostbyname, getservbyname, and inet_addr are
     # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
     ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname"
-if test "x$ac_cv_func_gethostbyname" = xyes; then :
+if test "x$ac_cv_func_gethostbyname" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_gethostbyname = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
 $as_echo_n "checking for gethostbyname in -lnsl... " >&6; }
-if ${ac_cv_lib_nsl_gethostbyname+:} false; then :
+if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -6668,14 +6461,14 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5
 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; }
-if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then :
+if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
 fi
 
       if test $ac_cv_lib_nsl_gethostbyname = no; then
 	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5
 $as_echo_n "checking for gethostbyname in -lbsd... " >&6; }
-if ${ac_cv_lib_bsd_gethostbyname+:} false; then :
+if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -6709,7 +6502,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5
 $as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; }
-if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then :
+if test "x$ac_cv_lib_bsd_gethostbyname" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
 fi
 
@@ -6724,14 +6517,14 @@ fi
     # must be given before -lnsl if both are needed.  We assume that
     # if connect needs -lnsl, so does gethostbyname.
     ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect"
-if test "x$ac_cv_func_connect" = xyes; then :
+if test "x$ac_cv_func_connect" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_connect = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5
 $as_echo_n "checking for connect in -lsocket... " >&6; }
-if ${ac_cv_lib_socket_connect+:} false; then :
+if test "${ac_cv_lib_socket_connect+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -6765,7 +6558,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5
 $as_echo "$ac_cv_lib_socket_connect" >&6; }
-if test "x$ac_cv_lib_socket_connect" = xyes; then :
+if test "x$ac_cv_lib_socket_connect" = x""yes; then :
   X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
 fi
 
@@ -6773,14 +6566,14 @@ fi
 
     # Guillermo Gomez says -lposix is necessary on A/UX.
     ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove"
-if test "x$ac_cv_func_remove" = xyes; then :
+if test "x$ac_cv_func_remove" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_remove = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5
 $as_echo_n "checking for remove in -lposix... " >&6; }
-if ${ac_cv_lib_posix_remove+:} false; then :
+if test "${ac_cv_lib_posix_remove+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -6814,7 +6607,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5
 $as_echo "$ac_cv_lib_posix_remove" >&6; }
-if test "x$ac_cv_lib_posix_remove" = xyes; then :
+if test "x$ac_cv_lib_posix_remove" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
 fi
 
@@ -6822,14 +6615,14 @@ fi
 
     # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
     ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat"
-if test "x$ac_cv_func_shmat" = xyes; then :
+if test "x$ac_cv_func_shmat" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_shmat = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5
 $as_echo_n "checking for shmat in -lipc... " >&6; }
-if ${ac_cv_lib_ipc_shmat+:} false; then :
+if test "${ac_cv_lib_ipc_shmat+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -6863,7 +6656,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5
 $as_echo "$ac_cv_lib_ipc_shmat" >&6; }
-if test "x$ac_cv_lib_ipc_shmat" = xyes; then :
+if test "x$ac_cv_lib_ipc_shmat" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
 fi
 
@@ -6881,7 +6674,7 @@ fi
   # John Interrante, Karl Berry
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5
 $as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; }
-if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then :
+if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -6915,7 +6708,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
 $as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; }
-if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then :
+if test "x$ac_cv_lib_ICE_IceConnectionNumber" = x""yes; then :
   X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
 fi
 
@@ -6961,8 +6754,8 @@ if test "x$with_x" = xno; then
   have_x=disabled
 else
   case $x_includes,$x_libraries in #(
-    *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #(
-    *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then :
+    *\'*) as_fn_error "cannot use X directory names containing '" "$LINENO" 5;; #(
+    *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   # One or both of the vars are not set, and there is no cached value.
@@ -6979,7 +6772,7 @@ libdir:
 	@echo libdir='${LIBDIR}'
 _ACEOF
   if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
-    # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
+    # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
     for ac_var in incroot usrlibdir libdir; do
       eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
     done
@@ -7065,7 +6858,7 @@ else
   fi
 done
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 fi # $ac_x_includes = no
 
 if test "$ac_x_libraries" = no; then
@@ -7239,7 +7032,7 @@ if ac_fn_c_try_link "$LINENO"; then :
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
 $as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; }
-if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then :
+if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -7273,14 +7066,14 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
 $as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; }
-if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then :
+if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
 fi
 
     if test $ac_cv_lib_dnet_dnet_ntoa = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5
 $as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; }
-if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then :
+if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -7314,7 +7107,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
 $as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; }
-if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then :
+if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
 fi
 
@@ -7333,14 +7126,14 @@ rm -f core conftest.err conftest.$ac_objext \
     # The functions gethostbyname, getservbyname, and inet_addr are
     # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
     ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname"
-if test "x$ac_cv_func_gethostbyname" = xyes; then :
+if test "x$ac_cv_func_gethostbyname" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_gethostbyname = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
 $as_echo_n "checking for gethostbyname in -lnsl... " >&6; }
-if ${ac_cv_lib_nsl_gethostbyname+:} false; then :
+if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -7374,14 +7167,14 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5
 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; }
-if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then :
+if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
 fi
 
       if test $ac_cv_lib_nsl_gethostbyname = no; then
 	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5
 $as_echo_n "checking for gethostbyname in -lbsd... " >&6; }
-if ${ac_cv_lib_bsd_gethostbyname+:} false; then :
+if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -7415,7 +7208,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5
 $as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; }
-if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then :
+if test "x$ac_cv_lib_bsd_gethostbyname" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
 fi
 
@@ -7430,14 +7223,14 @@ fi
     # must be given before -lnsl if both are needed.  We assume that
     # if connect needs -lnsl, so does gethostbyname.
     ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect"
-if test "x$ac_cv_func_connect" = xyes; then :
+if test "x$ac_cv_func_connect" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_connect = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5
 $as_echo_n "checking for connect in -lsocket... " >&6; }
-if ${ac_cv_lib_socket_connect+:} false; then :
+if test "${ac_cv_lib_socket_connect+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -7471,7 +7264,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5
 $as_echo "$ac_cv_lib_socket_connect" >&6; }
-if test "x$ac_cv_lib_socket_connect" = xyes; then :
+if test "x$ac_cv_lib_socket_connect" = x""yes; then :
   X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
 fi
 
@@ -7479,14 +7272,14 @@ fi
 
     # Guillermo Gomez says -lposix is necessary on A/UX.
     ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove"
-if test "x$ac_cv_func_remove" = xyes; then :
+if test "x$ac_cv_func_remove" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_remove = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5
 $as_echo_n "checking for remove in -lposix... " >&6; }
-if ${ac_cv_lib_posix_remove+:} false; then :
+if test "${ac_cv_lib_posix_remove+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -7520,7 +7313,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5
 $as_echo "$ac_cv_lib_posix_remove" >&6; }
-if test "x$ac_cv_lib_posix_remove" = xyes; then :
+if test "x$ac_cv_lib_posix_remove" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
 fi
 
@@ -7528,14 +7321,14 @@ fi
 
     # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
     ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat"
-if test "x$ac_cv_func_shmat" = xyes; then :
+if test "x$ac_cv_func_shmat" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_shmat = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5
 $as_echo_n "checking for shmat in -lipc... " >&6; }
-if ${ac_cv_lib_ipc_shmat+:} false; then :
+if test "${ac_cv_lib_ipc_shmat+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -7569,7 +7362,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5
 $as_echo "$ac_cv_lib_ipc_shmat" >&6; }
-if test "x$ac_cv_lib_ipc_shmat" = xyes; then :
+if test "x$ac_cv_lib_ipc_shmat" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
 fi
 
@@ -7587,7 +7380,7 @@ fi
   # John Interrante, Karl Berry
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5
 $as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; }
-if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then :
+if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -7621,7 +7414,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
 $as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; }
-if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then :
+if test "x$ac_cv_lib_ICE_IceConnectionNumber" = x""yes; then :
   X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
 fi
 
@@ -7668,8 +7461,8 @@ if test "x$with_x" = xno; then
   have_x=disabled
 else
   case $x_includes,$x_libraries in #(
-    *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #(
-    *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then :
+    *\'*) as_fn_error "cannot use X directory names containing '" "$LINENO" 5;; #(
+    *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   # One or both of the vars are not set, and there is no cached value.
@@ -7686,7 +7479,7 @@ libdir:
 	@echo libdir='${LIBDIR}'
 _ACEOF
   if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
-    # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
+    # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
     for ac_var in incroot usrlibdir libdir; do
       eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
     done
@@ -7772,7 +7565,7 @@ else
   fi
 done
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 fi # $ac_x_includes = no
 
 if test "$ac_x_libraries" = no; then
@@ -7946,7 +7739,7 @@ if ac_fn_c_try_link "$LINENO"; then :
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
 $as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; }
-if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then :
+if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -7980,14 +7773,14 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
 $as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; }
-if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then :
+if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
 fi
 
     if test $ac_cv_lib_dnet_dnet_ntoa = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5
 $as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; }
-if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then :
+if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8021,7 +7814,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
 $as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; }
-if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then :
+if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
 fi
 
@@ -8040,14 +7833,14 @@ rm -f core conftest.err conftest.$ac_objext \
     # The functions gethostbyname, getservbyname, and inet_addr are
     # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
     ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname"
-if test "x$ac_cv_func_gethostbyname" = xyes; then :
+if test "x$ac_cv_func_gethostbyname" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_gethostbyname = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
 $as_echo_n "checking for gethostbyname in -lnsl... " >&6; }
-if ${ac_cv_lib_nsl_gethostbyname+:} false; then :
+if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8081,14 +7874,14 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5
 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; }
-if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then :
+if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
 fi
 
       if test $ac_cv_lib_nsl_gethostbyname = no; then
 	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5
 $as_echo_n "checking for gethostbyname in -lbsd... " >&6; }
-if ${ac_cv_lib_bsd_gethostbyname+:} false; then :
+if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8122,7 +7915,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5
 $as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; }
-if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then :
+if test "x$ac_cv_lib_bsd_gethostbyname" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
 fi
 
@@ -8137,14 +7930,14 @@ fi
     # must be given before -lnsl if both are needed.  We assume that
     # if connect needs -lnsl, so does gethostbyname.
     ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect"
-if test "x$ac_cv_func_connect" = xyes; then :
+if test "x$ac_cv_func_connect" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_connect = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5
 $as_echo_n "checking for connect in -lsocket... " >&6; }
-if ${ac_cv_lib_socket_connect+:} false; then :
+if test "${ac_cv_lib_socket_connect+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8178,7 +7971,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5
 $as_echo "$ac_cv_lib_socket_connect" >&6; }
-if test "x$ac_cv_lib_socket_connect" = xyes; then :
+if test "x$ac_cv_lib_socket_connect" = x""yes; then :
   X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
 fi
 
@@ -8186,14 +7979,14 @@ fi
 
     # Guillermo Gomez says -lposix is necessary on A/UX.
     ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove"
-if test "x$ac_cv_func_remove" = xyes; then :
+if test "x$ac_cv_func_remove" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_remove = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5
 $as_echo_n "checking for remove in -lposix... " >&6; }
-if ${ac_cv_lib_posix_remove+:} false; then :
+if test "${ac_cv_lib_posix_remove+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8227,7 +8020,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5
 $as_echo "$ac_cv_lib_posix_remove" >&6; }
-if test "x$ac_cv_lib_posix_remove" = xyes; then :
+if test "x$ac_cv_lib_posix_remove" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
 fi
 
@@ -8235,14 +8028,14 @@ fi
 
     # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
     ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat"
-if test "x$ac_cv_func_shmat" = xyes; then :
+if test "x$ac_cv_func_shmat" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_shmat = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5
 $as_echo_n "checking for shmat in -lipc... " >&6; }
-if ${ac_cv_lib_ipc_shmat+:} false; then :
+if test "${ac_cv_lib_ipc_shmat+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8276,7 +8069,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5
 $as_echo "$ac_cv_lib_ipc_shmat" >&6; }
-if test "x$ac_cv_lib_ipc_shmat" = xyes; then :
+if test "x$ac_cv_lib_ipc_shmat" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
 fi
 
@@ -8294,7 +8087,7 @@ fi
   # John Interrante, Karl Berry
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5
 $as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; }
-if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then :
+if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8328,7 +8121,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
 $as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; }
-if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then :
+if test "x$ac_cv_lib_ICE_IceConnectionNumber" = x""yes; then :
   X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
 fi
 
@@ -8377,8 +8170,8 @@ if test "x$with_x" = xno; then
   have_x=disabled
 else
   case $x_includes,$x_libraries in #(
-    *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #(
-    *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then :
+    *\'*) as_fn_error "cannot use X directory names containing '" "$LINENO" 5;; #(
+    *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   # One or both of the vars are not set, and there is no cached value.
@@ -8395,7 +8188,7 @@ libdir:
 	@echo libdir='${LIBDIR}'
 _ACEOF
   if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
-    # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
+    # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
     for ac_var in incroot usrlibdir libdir; do
       eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
     done
@@ -8481,7 +8274,7 @@ else
   fi
 done
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 fi # $ac_x_includes = no
 
 if test "$ac_x_libraries" = no; then
@@ -8655,7 +8448,7 @@ if ac_fn_c_try_link "$LINENO"; then :
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
 $as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; }
-if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then :
+if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8689,14 +8482,14 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
 $as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; }
-if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then :
+if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
 fi
 
     if test $ac_cv_lib_dnet_dnet_ntoa = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5
 $as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; }
-if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then :
+if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8730,7 +8523,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
 $as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; }
-if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then :
+if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
 fi
 
@@ -8749,14 +8542,14 @@ rm -f core conftest.err conftest.$ac_objext \
     # The functions gethostbyname, getservbyname, and inet_addr are
     # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
     ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname"
-if test "x$ac_cv_func_gethostbyname" = xyes; then :
+if test "x$ac_cv_func_gethostbyname" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_gethostbyname = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
 $as_echo_n "checking for gethostbyname in -lnsl... " >&6; }
-if ${ac_cv_lib_nsl_gethostbyname+:} false; then :
+if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8790,14 +8583,14 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5
 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; }
-if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then :
+if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
 fi
 
       if test $ac_cv_lib_nsl_gethostbyname = no; then
 	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5
 $as_echo_n "checking for gethostbyname in -lbsd... " >&6; }
-if ${ac_cv_lib_bsd_gethostbyname+:} false; then :
+if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8831,7 +8624,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5
 $as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; }
-if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then :
+if test "x$ac_cv_lib_bsd_gethostbyname" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
 fi
 
@@ -8846,14 +8639,14 @@ fi
     # must be given before -lnsl if both are needed.  We assume that
     # if connect needs -lnsl, so does gethostbyname.
     ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect"
-if test "x$ac_cv_func_connect" = xyes; then :
+if test "x$ac_cv_func_connect" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_connect = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5
 $as_echo_n "checking for connect in -lsocket... " >&6; }
-if ${ac_cv_lib_socket_connect+:} false; then :
+if test "${ac_cv_lib_socket_connect+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8887,7 +8680,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5
 $as_echo "$ac_cv_lib_socket_connect" >&6; }
-if test "x$ac_cv_lib_socket_connect" = xyes; then :
+if test "x$ac_cv_lib_socket_connect" = x""yes; then :
   X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
 fi
 
@@ -8895,14 +8688,14 @@ fi
 
     # Guillermo Gomez says -lposix is necessary on A/UX.
     ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove"
-if test "x$ac_cv_func_remove" = xyes; then :
+if test "x$ac_cv_func_remove" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_remove = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5
 $as_echo_n "checking for remove in -lposix... " >&6; }
-if ${ac_cv_lib_posix_remove+:} false; then :
+if test "${ac_cv_lib_posix_remove+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8936,7 +8729,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5
 $as_echo "$ac_cv_lib_posix_remove" >&6; }
-if test "x$ac_cv_lib_posix_remove" = xyes; then :
+if test "x$ac_cv_lib_posix_remove" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
 fi
 
@@ -8944,14 +8737,14 @@ fi
 
     # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
     ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat"
-if test "x$ac_cv_func_shmat" = xyes; then :
+if test "x$ac_cv_func_shmat" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_shmat = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5
 $as_echo_n "checking for shmat in -lipc... " >&6; }
-if ${ac_cv_lib_ipc_shmat+:} false; then :
+if test "${ac_cv_lib_ipc_shmat+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -8985,7 +8778,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5
 $as_echo "$ac_cv_lib_ipc_shmat" >&6; }
-if test "x$ac_cv_lib_ipc_shmat" = xyes; then :
+if test "x$ac_cv_lib_ipc_shmat" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
 fi
 
@@ -9003,7 +8796,7 @@ fi
   # John Interrante, Karl Berry
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5
 $as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; }
-if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then :
+if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -9037,7 +8830,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
 $as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; }
-if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then :
+if test "x$ac_cv_lib_ICE_IceConnectionNumber" = x""yes; then :
   X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
 fi
 
@@ -9085,8 +8878,8 @@ if test "x$with_x" = xno; then
   have_x=disabled
 else
   case $x_includes,$x_libraries in #(
-    *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #(
-    *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then :
+    *\'*) as_fn_error "cannot use X directory names containing '" "$LINENO" 5;; #(
+    *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   # One or both of the vars are not set, and there is no cached value.
@@ -9103,7 +8896,7 @@ libdir:
 	@echo libdir='${LIBDIR}'
 _ACEOF
   if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
-    # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
+    # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
     for ac_var in incroot usrlibdir libdir; do
       eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
     done
@@ -9189,7 +8982,7 @@ else
   fi
 done
 fi
-rm -f conftest.err conftest.i conftest.$ac_ext
+rm -f conftest.err conftest.$ac_ext
 fi # $ac_x_includes = no
 
 if test "$ac_x_libraries" = no; then
@@ -9363,7 +9156,7 @@ if ac_fn_c_try_link "$LINENO"; then :
 else
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
 $as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; }
-if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then :
+if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -9397,14 +9190,14 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
 $as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; }
-if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then :
+if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
 fi
 
     if test $ac_cv_lib_dnet_dnet_ntoa = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5
 $as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; }
-if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then :
+if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -9438,7 +9231,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
 $as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; }
-if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then :
+if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
 fi
 
@@ -9457,14 +9250,14 @@ rm -f core conftest.err conftest.$ac_objext \
     # The functions gethostbyname, getservbyname, and inet_addr are
     # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
     ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname"
-if test "x$ac_cv_func_gethostbyname" = xyes; then :
+if test "x$ac_cv_func_gethostbyname" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_gethostbyname = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
 $as_echo_n "checking for gethostbyname in -lnsl... " >&6; }
-if ${ac_cv_lib_nsl_gethostbyname+:} false; then :
+if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -9498,14 +9291,14 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5
 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; }
-if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then :
+if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
 fi
 
       if test $ac_cv_lib_nsl_gethostbyname = no; then
 	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5
 $as_echo_n "checking for gethostbyname in -lbsd... " >&6; }
-if ${ac_cv_lib_bsd_gethostbyname+:} false; then :
+if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -9539,7 +9332,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5
 $as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; }
-if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then :
+if test "x$ac_cv_lib_bsd_gethostbyname" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
 fi
 
@@ -9554,14 +9347,14 @@ fi
     # must be given before -lnsl if both are needed.  We assume that
     # if connect needs -lnsl, so does gethostbyname.
     ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect"
-if test "x$ac_cv_func_connect" = xyes; then :
+if test "x$ac_cv_func_connect" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_connect = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5
 $as_echo_n "checking for connect in -lsocket... " >&6; }
-if ${ac_cv_lib_socket_connect+:} false; then :
+if test "${ac_cv_lib_socket_connect+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -9595,7 +9388,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5
 $as_echo "$ac_cv_lib_socket_connect" >&6; }
-if test "x$ac_cv_lib_socket_connect" = xyes; then :
+if test "x$ac_cv_lib_socket_connect" = x""yes; then :
   X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
 fi
 
@@ -9603,14 +9396,14 @@ fi
 
     # Guillermo Gomez says -lposix is necessary on A/UX.
     ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove"
-if test "x$ac_cv_func_remove" = xyes; then :
+if test "x$ac_cv_func_remove" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_remove = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5
 $as_echo_n "checking for remove in -lposix... " >&6; }
-if ${ac_cv_lib_posix_remove+:} false; then :
+if test "${ac_cv_lib_posix_remove+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -9644,7 +9437,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5
 $as_echo "$ac_cv_lib_posix_remove" >&6; }
-if test "x$ac_cv_lib_posix_remove" = xyes; then :
+if test "x$ac_cv_lib_posix_remove" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
 fi
 
@@ -9652,14 +9445,14 @@ fi
 
     # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
     ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat"
-if test "x$ac_cv_func_shmat" = xyes; then :
+if test "x$ac_cv_func_shmat" = x""yes; then :
 
 fi
 
     if test $ac_cv_func_shmat = no; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5
 $as_echo_n "checking for shmat in -lipc... " >&6; }
-if ${ac_cv_lib_ipc_shmat+:} false; then :
+if test "${ac_cv_lib_ipc_shmat+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -9693,7 +9486,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5
 $as_echo "$ac_cv_lib_ipc_shmat" >&6; }
-if test "x$ac_cv_lib_ipc_shmat" = xyes; then :
+if test "x$ac_cv_lib_ipc_shmat" = x""yes; then :
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
 fi
 
@@ -9711,7 +9504,7 @@ fi
   # John Interrante, Karl Berry
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5
 $as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; }
-if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then :
+if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -9745,7 +9538,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
 $as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; }
-if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then :
+if test "x$ac_cv_lib_ICE_IceConnectionNumber" = x""yes; then :
   X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
 fi
 
@@ -9854,21 +9647,10 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
      :end' >>confcache
 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
   if test -w "$cache_file"; then
-    if test "x$cache_file" != "x/dev/null"; then
+    test "x$cache_file" != "x/dev/null" &&
       { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
 $as_echo "$as_me: updating cache $cache_file" >&6;}
-      if test ! -f "$cache_file" || test -h "$cache_file"; then
-	cat confcache >"$cache_file"
-      else
-        case $cache_file in #(
-        */* | ?:*)
-	  mv -f confcache "$cache_file"$$ &&
-	  mv -f "$cache_file"$$ "$cache_file" ;; #(
-        *)
-	  mv -f confcache "$cache_file" ;;
-	esac
-      fi
-    fi
+    cat confcache >$cache_file
   else
     { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
@@ -9882,13 +9664,13 @@ if test x$armamain = xtrue; then
 test -z "$XML2_CONFIG" && XML2_CONFIG=xml2-config
 
 if ! $XML2_CONFIG --libs > /dev/null; then
-  as_fn_error $? "Fatal error: the libxml2 configuration script $XML2_CONFIG does not work/exist." "$LINENO" 5
+  as_fn_error "Fatal error: the libxml2 configuration script $XML2_CONFIG does not work/exist." "$LINENO" 5
 fi
 
 # if test x$armamain = xtrue; then
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlParseMemory in -lxml2" >&5
 $as_echo_n "checking for xmlParseMemory in -lxml2... " >&6; }
-if ${ac_cv_lib_xml2_xmlParseMemory+:} false; then :
+if test "${ac_cv_lib_xml2_xmlParseMemory+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -9922,23 +9704,23 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlParseMemory" >&5
 $as_echo "$ac_cv_lib_xml2_xmlParseMemory" >&6; }
-if test "x$ac_cv_lib_xml2_xmlParseMemory" = xyes; then :
+if test "x$ac_cv_lib_xml2_xmlParseMemory" = x""yes; then :
   CPPFLAGS="$CPPFLAGS `$XML2_CONFIG --cflags`"
 LIBS="`$XML2_CONFIG --libs` $LIBS"
 
 $as_echo "#define HAVE_LIBXML2 1" >>confdefs.h
 
 else
-  as_fn_error $? "You need the library xml2 to compile Armagetron. Read the file doc/install_linux.html." "$LINENO" 5
+  as_fn_error "You need the library xml2 to compile Armagetron. Read the file doc/install_linux.html." "$LINENO" 5
 
 fi
 
 
 ac_fn_c_check_func "$LINENO" "xmlParserInputBufferCreateFilenameDefault" "ac_cv_func_xmlParserInputBufferCreateFilenameDefault"
-if test "x$ac_cv_func_xmlParserInputBufferCreateFilenameDefault" = xyes; then :
+if test "x$ac_cv_func_xmlParserInputBufferCreateFilenameDefault" = x""yes; then :
 
 else
-  as_fn_error $? "
+  as_fn_error "
 	Your xml2 library is obsolete!
 	Please upgrade to 2.6.11 or later
 " "$LINENO" 5
@@ -9997,7 +9779,7 @@ fi
 set dummy zthread-config; ac_word=$2
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 $as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_path_ZTHREAD_CONFIG+:} false; then :
+if test "${ac_cv_path_ZTHREAD_CONFIG+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   case $ZTHREAD_CONFIG in
@@ -10011,7 +9793,7 @@ do
   IFS=$as_save_IFS
   test -z "$as_dir" && as_dir=.
     for ac_exec_ext in '' $ac_executable_extensions; do
-  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
     ac_cv_path_ZTHREAD_CONFIG="$as_dir/$ac_word$ac_exec_ext"
     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
     break 2
@@ -10236,7 +10018,7 @@ if test $MATHLIB ; then
 as_ac_Lib=`$as_echo "ac_cv_lib_$MATHLIB''_exp" | $as_tr_sh`
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for exp in -l$MATHLIB" >&5
 $as_echo_n "checking for exp in -l$MATHLIB... " >&6; }
-if eval \${$as_ac_Lib+:} false; then :
+if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10271,7 +10053,8 @@ fi
 eval ac_res=\$$as_ac_Lib
 	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 $as_echo "$ac_res" >&6; }
-if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
+eval as_val=\$$as_ac_Lib
+   if test "x$as_val" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define `$as_echo "HAVE_LIB$MATHLIB" | $as_tr_cpp` 1
 _ACEOF
@@ -10332,12 +10115,12 @@ CPPFLAGS="$CPPFLAGS `${SDL_CONFIG} --cflags`"
 LIBS="${SDLLIBS} $LIBS"
 
 ac_fn_c_check_func "$LINENO" "SDL_Init" "ac_cv_func_SDL_Init"
-if test "x$ac_cv_func_SDL_Init" = xyes; then :
+if test "x$ac_cv_func_SDL_Init" = x""yes; then :
 
 $as_echo "#define HAVE_LIBSDL /**/" >>confdefs.h
 
 else
-  as_fn_error $? "You need the library SDL to compile Armagetron. Read the file doc/install_linux.html." "$LINENO" 5
+  as_fn_error "You need the library SDL to compile Armagetron. Read the file doc/install_linux.html." "$LINENO" 5
 
 fi
 
@@ -10346,7 +10129,7 @@ fi
 if test x$enable_music = xyes; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Mix_OpenAudio in -lSDL_mixer" >&5
 $as_echo_n "checking for Mix_OpenAudio in -lSDL_mixer... " >&6; }
-if ${ac_cv_lib_SDL_mixer_Mix_OpenAudio+:} false; then :
+if test "${ac_cv_lib_SDL_mixer_Mix_OpenAudio+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10380,7 +10163,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_SDL_mixer_Mix_OpenAudio" >&5
 $as_echo "$ac_cv_lib_SDL_mixer_Mix_OpenAudio" >&6; }
-if test "x$ac_cv_lib_SDL_mixer_Mix_OpenAudio" = xyes; then :
+if test "x$ac_cv_lib_SDL_mixer_Mix_OpenAudio" = x""yes; then :
 
 $as_echo "#define HAVE_LIBSDL_MIXER 1" >>confdefs.h
 
@@ -10400,7 +10183,7 @@ fi
 if test "`${SDL_CONFIG} --libs | grep windows`" ; then
 	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lwsock32" >&5
 $as_echo_n "checking for main in -lwsock32... " >&6; }
-if ${ac_cv_lib_wsock32_main+:} false; then :
+if test "${ac_cv_lib_wsock32_main+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10428,7 +10211,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_wsock32_main" >&5
 $as_echo "$ac_cv_lib_wsock32_main" >&6; }
-if test "x$ac_cv_lib_wsock32_main" = xyes; then :
+if test "x$ac_cv_lib_wsock32_main" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define HAVE_LIBWSOCK32 1
 _ACEOF
@@ -10446,7 +10229,7 @@ if test $SYS_GL_LIB && echo $LIBS | grep -v "\-lGL" > /dev/null; then
 as_ac_Lib=`$as_echo "ac_cv_lib_$SYS_GL_LIB''_glVertex3f" | $as_tr_sh`
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for glVertex3f in -l$SYS_GL_LIB" >&5
 $as_echo_n "checking for glVertex3f in -l$SYS_GL_LIB... " >&6; }
-if eval \${$as_ac_Lib+:} false; then :
+if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10481,7 +10264,8 @@ fi
 eval ac_res=\$$as_ac_Lib
 	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 $as_echo "$ac_res" >&6; }
-if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
+eval as_val=\$$as_ac_Lib
+   if test "x$as_val" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define `$as_echo "HAVE_LIB$SYS_GL_LIB" | $as_tr_cpp` 1
 _ACEOF
@@ -10493,7 +10277,7 @@ else
 $as_echo "OpenGL not found. Maybe it needs X11 to compile? Checking that..." >&6; }
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lX11" >&5
 $as_echo_n "checking for main in -lX11... " >&6; }
-if ${ac_cv_lib_X11_main+:} false; then :
+if test "${ac_cv_lib_X11_main+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10521,7 +10305,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_X11_main" >&5
 $as_echo "$ac_cv_lib_X11_main" >&6; }
-if test "x$ac_cv_lib_X11_main" = xyes; then :
+if test "x$ac_cv_lib_X11_main" = x""yes; then :
   LIBS="-lX11 -L/usr/X11R6/lib $LIBS"
 
 $as_echo "#define HAVE_LIBX11 1" >>confdefs.h
@@ -10538,7 +10322,7 @@ fi
 
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lXext" >&5
 $as_echo_n "checking for main in -lXext... " >&6; }
-if ${ac_cv_lib_Xext_main+:} false; then :
+if test "${ac_cv_lib_Xext_main+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10566,13 +10350,13 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_main" >&5
 $as_echo "$ac_cv_lib_Xext_main" >&6; }
-if test "x$ac_cv_lib_Xext_main" = xyes; then :
+if test "x$ac_cv_lib_Xext_main" = x""yes; then :
   -L/usr/X11R6/lib
 fi
 
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lXt" >&5
 $as_echo_n "checking for main in -lXt... " >&6; }
-if ${ac_cv_lib_Xt_main+:} false; then :
+if test "${ac_cv_lib_Xt_main+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10600,13 +10384,13 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xt_main" >&5
 $as_echo "$ac_cv_lib_Xt_main" >&6; }
-if test "x$ac_cv_lib_Xt_main" = xyes; then :
+if test "x$ac_cv_lib_Xt_main" = x""yes; then :
   -L/usr/X11R6/lib
 fi
 
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lXi" >&5
 $as_echo_n "checking for main in -lXi... " >&6; }
-if ${ac_cv_lib_Xi_main+:} false; then :
+if test "${ac_cv_lib_Xi_main+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10634,13 +10418,13 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xi_main" >&5
 $as_echo "$ac_cv_lib_Xi_main" >&6; }
-if test "x$ac_cv_lib_Xi_main" = xyes; then :
+if test "x$ac_cv_lib_Xi_main" = x""yes; then :
   -L/usr/X11R6/lib
 fi
 
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lXmu" >&5
 $as_echo_n "checking for main in -lXmu... " >&6; }
-if ${ac_cv_lib_Xmu_main+:} false; then :
+if test "${ac_cv_lib_Xmu_main+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10668,14 +10452,14 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xmu_main" >&5
 $as_echo "$ac_cv_lib_Xmu_main" >&6; }
-if test "x$ac_cv_lib_Xmu_main" = xyes; then :
+if test "x$ac_cv_lib_Xmu_main" = x""yes; then :
   -L/usr/X11R6/lib
 fi
 
 as_ac_Lib=`$as_echo "ac_cv_lib_$SYS_GL_LIB''_glBegin" | $as_tr_sh`
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for glBegin in -l$SYS_GL_LIB" >&5
 $as_echo_n "checking for glBegin in -l$SYS_GL_LIB... " >&6; }
-if eval \${$as_ac_Lib+:} false; then :
+if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10710,7 +10494,8 @@ fi
 eval ac_res=\$$as_ac_Lib
 	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 $as_echo "$ac_res" >&6; }
-if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
+eval as_val=\$$as_ac_Lib
+   if test "x$as_val" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define `$as_echo "HAVE_LIB$SYS_GL_LIB" | $as_tr_cpp` 1
 _ACEOF
@@ -10718,7 +10503,7 @@ _ACEOF
   LIBS="-l$SYS_GL_LIB $LIBS"
 
 else
-  as_fn_error $? "
+  as_fn_error "
   You need Mesa or an OpenGL-System to compile Armagetron.
   Maybe your libGL needs the X libraries and your system does not
   find them? Read the file doc/install_linux.html." "$LINENO" 5
@@ -10738,7 +10523,7 @@ if test $SYS_GLU_LIB && echo $LIBS | grep -v "\-lGLU" > /dev/null; then
 as_ac_Lib=`$as_echo "ac_cv_lib_$SYS_GLU_LIB''_gluBuild3DMipmaps" | $as_tr_sh`
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gluBuild3DMipmaps in -l$SYS_GLU_LIB" >&5
 $as_echo_n "checking for gluBuild3DMipmaps in -l$SYS_GLU_LIB... " >&6; }
-if eval \${$as_ac_Lib+:} false; then :
+if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10773,7 +10558,8 @@ fi
 eval ac_res=\$$as_ac_Lib
 	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
 $as_echo "$ac_res" >&6; }
-if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
+eval as_val=\$$as_ac_Lib
+   if test "x$as_val" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define `$as_echo "HAVE_LIB$SYS_GLU_LIB" | $as_tr_cpp` 1
 _ACEOF
@@ -10781,7 +10567,7 @@ _ACEOF
   LIBS="-l$SYS_GLU_LIB $LIBS"
 
 else
-  as_fn_error $? "
+  as_fn_error "
 You need GLU to compile Armagetron; it SHOULD have come with OpenGL.
 Read the file doc/install_linux.html." "$LINENO" 5
 fi
@@ -10793,7 +10579,7 @@ fi
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lz" >&5
 $as_echo_n "checking for main in -lz... " >&6; }
-if ${ac_cv_lib_z_main+:} false; then :
+if test "${ac_cv_lib_z_main+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10821,7 +10607,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_main" >&5
 $as_echo "$ac_cv_lib_z_main" >&6; }
-if test "x$ac_cv_lib_z_main" = xyes; then :
+if test "x$ac_cv_lib_z_main" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define HAVE_LIBZ 1
 _ACEOF
@@ -10829,7 +10615,7 @@ _ACEOF
   LIBS="-lz $LIBS"
 
 else
-  as_fn_error $? "You need libz to compile Armagetron." "$LINENO" 5
+  as_fn_error "You need libz to compile Armagetron." "$LINENO" 5
 fi
 
 
@@ -10844,16 +10630,16 @@ CPPFLAGS="$CPPFLAGS `libpng-config --cflags`"
 LIBS="$LIBS $PNGLIBS"
 
 ac_fn_c_check_func "$LINENO" "png_sig_cmp" "ac_cv_func_png_sig_cmp"
-if test "x$ac_cv_func_png_sig_cmp" = xyes; then :
+if test "x$ac_cv_func_png_sig_cmp" = x""yes; then :
 
 else
-  as_fn_error $? "You need libpng to compile Armagetron." "$LINENO" 5
+  as_fn_error "You need libpng to compile Armagetron." "$LINENO" 5
 fi
 
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -ljpeg" >&5
 $as_echo_n "checking for main in -ljpeg... " >&6; }
-if ${ac_cv_lib_jpeg_main+:} false; then :
+if test "${ac_cv_lib_jpeg_main+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10881,7 +10667,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jpeg_main" >&5
 $as_echo "$ac_cv_lib_jpeg_main" >&6; }
-if test "x$ac_cv_lib_jpeg_main" = xyes; then :
+if test "x$ac_cv_lib_jpeg_main" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define HAVE_LIBJPEG 1
 _ACEOF
@@ -10901,7 +10687,7 @@ fi
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IMG_Load in -lSDL_image" >&5
 $as_echo_n "checking for IMG_Load in -lSDL_image... " >&6; }
-if ${ac_cv_lib_SDL_image_IMG_Load+:} false; then :
+if test "${ac_cv_lib_SDL_image_IMG_Load+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -10935,7 +10721,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_SDL_image_IMG_Load" >&5
 $as_echo "$ac_cv_lib_SDL_image_IMG_Load" >&6; }
-if test "x$ac_cv_lib_SDL_image_IMG_Load" = xyes; then :
+if test "x$ac_cv_lib_SDL_image_IMG_Load" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define HAVE_LIBSDL_IMAGE 1
 _ACEOF
@@ -10943,14 +10729,14 @@ _ACEOF
   LIBS="-lSDL_image $LIBS"
 
 else
-  as_fn_error $? "You need the library SDL_image to compile Armagetron.
+  as_fn_error "You need the library SDL_image to compile Armagetron.
 " "$LINENO" 5
 fi
 
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
 $as_echo_n "checking for grep that handles long lines and -e... " >&6; }
-if ${ac_cv_path_GREP+:} false; then :
+if test "${ac_cv_path_GREP+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test -z "$GREP"; then
@@ -10964,7 +10750,7 @@ do
     for ac_prog in grep ggrep; do
     for ac_exec_ext in '' $ac_executable_extensions; do
       ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
-      as_fn_executable_p "$ac_path_GREP" || continue
+      { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
 # Check for GNU ac_path_GREP and select it if it is found.
   # Check for GNU $ac_path_GREP
 case `"$ac_path_GREP" --version 2>&1` in
@@ -10999,7 +10785,7 @@ esac
   done
 IFS=$as_save_IFS
   if test -z "$ac_cv_path_GREP"; then
-    as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
+    as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
   fi
 else
   ac_cv_path_GREP=$GREP
@@ -11013,7 +10799,7 @@ $as_echo "$ac_cv_path_GREP" >&6; }
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
 $as_echo_n "checking for egrep... " >&6; }
-if ${ac_cv_path_EGREP+:} false; then :
+if test "${ac_cv_path_EGREP+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
@@ -11030,7 +10816,7 @@ do
     for ac_prog in egrep; do
     for ac_exec_ext in '' $ac_executable_extensions; do
       ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
-      as_fn_executable_p "$ac_path_EGREP" || continue
+      { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
 # Check for GNU ac_path_EGREP and select it if it is found.
   # Check for GNU $ac_path_EGREP
 case `"$ac_path_EGREP" --version 2>&1` in
@@ -11065,7 +10851,7 @@ esac
   done
 IFS=$as_save_IFS
   if test -z "$ac_cv_path_EGREP"; then
-    as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
+    as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
   fi
 else
   ac_cv_path_EGREP=$EGREP
@@ -11080,7 +10866,7 @@ $as_echo "$ac_cv_path_EGREP" >&6; }
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
 $as_echo_n "checking for ANSI C header files... " >&6; }
-if ${ac_cv_header_stdc+:} false; then :
+if test "${ac_cv_header_stdc+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -11197,7 +10983,8 @@ do :
   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
 ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
 "
-if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
+eval as_val=\$$as_ac_Header
+   if test "x$as_val" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
 _ACEOF
@@ -11210,7 +10997,7 @@ done
 for ac_header in SDL_image.h
 do :
   ac_fn_c_check_header_mongrel "$LINENO" "SDL_image.h" "ac_cv_header_SDL_image_h" "$ac_includes_default"
-if test "x$ac_cv_header_SDL_image_h" = xyes; then :
+if test "x$ac_cv_header_SDL_image_h" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define HAVE_SDL_IMAGE_H 1
 _ACEOF
@@ -11224,7 +11011,7 @@ Trying fallback." >&2;}
 for ac_header in SDL/SDL_image.h
 do :
   ac_fn_c_check_header_mongrel "$LINENO" "SDL/SDL_image.h" "ac_cv_header_SDL_SDL_image_h" "$ac_includes_default"
-if test "x$ac_cv_header_SDL_SDL_image_h" = xyes; then :
+if test "x$ac_cv_header_SDL_SDL_image_h" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define HAVE_SDL_SDL_IMAGE_H 1
 _ACEOF
@@ -11285,7 +11072,7 @@ fi
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
 $as_echo_n "checking for ANSI C header files... " >&6; }
-if ${ac_cv_header_stdc+:} false; then :
+if test "${ac_cv_header_stdc+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -11398,7 +11185,7 @@ fi
 for ac_header in unistd.h
 do :
   ac_fn_c_check_header_mongrel "$LINENO" "unistd.h" "ac_cv_header_unistd_h" "$ac_includes_default"
-if test "x$ac_cv_header_unistd_h" = xyes; then :
+if test "x$ac_cv_header_unistd_h" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define HAVE_UNISTD_H 1
 _ACEOF
@@ -11410,7 +11197,7 @@ done
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5
 $as_echo_n "checking for an ANSI C-conforming const... " >&6; }
-if ${ac_cv_c_const+:} false; then :
+if test "${ac_cv_c_const+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -11419,11 +11206,11 @@ else
 int
 main ()
 {
-
+/* FIXME: Include the comments suggested by Paul. */
 #ifndef __cplusplus
-  /* Ultrix mips cc rejects this sort of thing.  */
+  /* Ultrix mips cc rejects this.  */
   typedef int charset[2];
-  const charset cs = { 0, 0 };
+  const charset cs;
   /* SunOS 4.1.1 cc rejects this.  */
   char const *const *pcpcc;
   char **ppc;
@@ -11440,9 +11227,8 @@ main ()
   ++pcpcc;
   ppc = (char**) pcpcc;
   pcpcc = (char const *const *) ppc;
-  { /* SCO 3.2v4 cc rejects this sort of thing.  */
-    char tx;
-    char *t = &tx;
+  { /* SCO 3.2v4 cc rejects this.  */
+    char *t;
     char const *s = 0 ? (char *) 0 : (char const *) 0;
 
     *t++ = 0;
@@ -11458,10 +11244,10 @@ main ()
     iptr p = 0;
     ++p;
   }
-  { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying
+  { /* AIX XL C 1.02.0.0 rejects this saying
        "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
-    struct s { int j; const int *ap[3]; } bx;
-    struct s *b = &bx; b->j = 5;
+    struct s { int j; const int *ap[3]; };
+    struct s *b; b->j = 5;
   }
   { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
     const int foo = 10;
@@ -11493,7 +11279,7 @@ fi
 for ac_func in select
 do :
   ac_fn_c_check_func "$LINENO" "select" "ac_cv_func_select"
-if test "x$ac_cv_func_select" = xyes; then :
+if test "x$ac_cv_func_select" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define HAVE_SELECT 1
 _ACEOF
@@ -11505,7 +11291,8 @@ for ac_func in isblank atan2f sinf cosf tanf sqrtf logf expf fabsf floorf
 do :
   as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
 ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
-if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
+eval as_val=\$$as_ac_var
+   if test "x$as_val" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
 _ACEOF
@@ -11516,7 +11303,7 @@ done
 for ac_func in wmemset
 do :
   ac_fn_c_check_func "$LINENO" "wmemset" "ac_cv_func_wmemset"
-if test "x$ac_cv_func_wmemset" = xyes; then :
+if test "x$ac_cv_func_wmemset" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define HAVE_WMEMSET 1
 _ACEOF
@@ -12159,11 +11946,11 @@ fi
 	if test "x$enable_binreloc" = "xauto"; then
 		{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for /proc/self/maps" >&5
 $as_echo_n "checking for /proc/self/maps... " >&6; }
-if ${ac_cv_file__proc_self_maps+:} false; then :
+if test "${ac_cv_file__proc_self_maps+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   test "$cross_compiling" = yes &&
-  as_fn_error $? "cannot check for file existence when cross compiling" "$LINENO" 5
+  as_fn_error "cannot check for file existence when cross compiling" "$LINENO" 5
 if test -r "/proc/self/maps"; then
   ac_cv_file__proc_self_maps=yes
 else
@@ -12172,13 +11959,13 @@ fi
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_file__proc_self_maps" >&5
 $as_echo "$ac_cv_file__proc_self_maps" >&6; }
-if test "x$ac_cv_file__proc_self_maps" = xyes; then :
+if test "x$ac_cv_file__proc_self_maps" = x""yes; then :
 
 fi
 
 		{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether everything is installed to the same prefix" >&5
 $as_echo_n "checking whether everything is installed to the same prefix... " >&6; }
-if ${br_cv_valid_prefixes+:} false; then :
+if test "${br_cv_valid_prefixes+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
 
@@ -12197,7 +11984,7 @@ $as_echo "$br_cv_valid_prefixes" >&6; }
 	fi
 	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether binary relocation support should be enabled" >&5
 $as_echo_n "checking whether binary relocation support should be enabled... " >&6; }
-if ${br_cv_binreloc+:} false; then :
+if test "${br_cv_binreloc+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test "x$enable_binreloc" = "xyes"; then
@@ -12223,7 +12010,7 @@ $as_echo "#define ENABLE_BINRELOC /**/" >>confdefs.h
 		if test "x$enable_binreloc_threads" = "xyes"; then
 			{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_getspecific in -lpthread" >&5
 $as_echo_n "checking for pthread_getspecific in -lpthread... " >&6; }
-if ${ac_cv_lib_pthread_pthread_getspecific+:} false; then :
+if test "${ac_cv_lib_pthread_pthread_getspecific+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   ac_check_lib_save_LIBS=$LIBS
@@ -12257,7 +12044,7 @@ LIBS=$ac_check_lib_save_LIBS
 fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_getspecific" >&5
 $as_echo "$ac_cv_lib_pthread_pthread_getspecific" >&6; }
-if test "x$ac_cv_lib_pthread_pthread_getspecific" = xyes; then :
+if test "x$ac_cv_lib_pthread_pthread_getspecific" = x""yes; then :
   cat >>confdefs.h <<_ACEOF
 #define HAVE_LIBPTHREAD 1
 _ACEOF
@@ -12270,7 +12057,7 @@ fi
 
 		{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether binary relocation should use threads" >&5
 $as_echo_n "checking whether binary relocation should use threads... " >&6; }
-if ${br_cv_binreloc_threads+:} false; then :
+if test "${br_cv_binreloc_threads+set}" = set; then :
   $as_echo_n "(cached) " >&6
 else
   if test "x$enable_binreloc_threads" = "xyes"; then
@@ -12400,21 +12187,10 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
      :end' >>confcache
 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
   if test -w "$cache_file"; then
-    if test "x$cache_file" != "x/dev/null"; then
+    test "x$cache_file" != "x/dev/null" &&
       { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
 $as_echo "$as_me: updating cache $cache_file" >&6;}
-      if test ! -f "$cache_file" || test -h "$cache_file"; then
-	cat confcache >"$cache_file"
-      else
-        case $cache_file in #(
-        */* | ?:*)
-	  mv -f confcache "$cache_file"$$ &&
-	  mv -f "$cache_file"$$ "$cache_file" ;; #(
-        *)
-	  mv -f confcache "$cache_file" ;;
-	esac
-      fi
-    fi
+    cat confcache >$cache_file
   else
     { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
@@ -12430,7 +12206,6 @@ DEFS=-DHAVE_CONFIG_H
 
 ac_libobjs=
 ac_ltlibobjs=
-U=
 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
   # 1. Remove the extension, and $U if already installed.
   ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
@@ -12445,14 +12220,6 @@ LIBOBJS=$ac_libobjs
 LTLIBOBJS=$ac_ltlibobjs
 
 
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
-$as_echo_n "checking that generated files are newer than configure... " >&6; }
-   if test -n "$am_sleep_pid"; then
-     # Hide warnings about reused PIDs.
-     wait $am_sleep_pid 2>/dev/null
-   fi
-   { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
-$as_echo "done" >&6; }
  if test -n "$EXEEXT"; then
   am__EXEEXT_TRUE=
   am__EXEEXT_FALSE='#'
@@ -12462,71 +12229,71 @@ else
 fi
 
 if test -z "${HAVE_M4_TRUE}" && test -z "${HAVE_M4_FALSE}"; then
-  as_fn_error $? "conditional \"HAVE_M4\" was never defined.
+  as_fn_error "conditional \"HAVE_M4\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${DATE_R_TRUE}" && test -z "${DATE_R_FALSE}"; then
-  as_fn_error $? "conditional \"DATE_R\" was never defined.
+  as_fn_error "conditional \"DATE_R\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${BUILDMASTER_TRUE}" && test -z "${BUILDMASTER_FALSE}"; then
-  as_fn_error $? "conditional \"BUILDMASTER\" was never defined.
+  as_fn_error "conditional \"BUILDMASTER\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${BUILDDEDICATED_TRUE}" && test -z "${BUILDDEDICATED_FALSE}"; then
-  as_fn_error $? "conditional \"BUILDDEDICATED\" was never defined.
+  as_fn_error "conditional \"BUILDDEDICATED\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${BUILDREGULAR_TRUE}" && test -z "${BUILDREGULAR_FALSE}"; then
-  as_fn_error $? "conditional \"BUILDREGULAR\" was never defined.
+  as_fn_error "conditional \"BUILDREGULAR\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${BUILDMAIN_TRUE}" && test -z "${BUILDMAIN_FALSE}"; then
-  as_fn_error $? "conditional \"BUILDMAIN\" was never defined.
+  as_fn_error "conditional \"BUILDMAIN\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${BUILDFAKERELEASE_TRUE}" && test -z "${BUILDFAKERELEASE_FALSE}"; then
-  as_fn_error $? "conditional \"BUILDFAKERELEASE\" was never defined.
+  as_fn_error "conditional \"BUILDFAKERELEASE\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${ENGINECOREDEBUG_TRUE}" && test -z "${ENGINECOREDEBUG_FALSE}"; then
-  as_fn_error $? "conditional \"ENGINECOREDEBUG\" was never defined.
+  as_fn_error "conditional \"ENGINECOREDEBUG\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
-  as_fn_error $? "conditional \"AMDEP\" was never defined.
+  as_fn_error "conditional \"AMDEP\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
-  as_fn_error $? "conditional \"am__fastdepCXX\" was never defined.
+  as_fn_error "conditional \"am__fastdepCXX\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
-  as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
+  as_fn_error "conditional \"am__fastdepCC\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
-  as_fn_error $? "conditional \"am__fastdepCXX\" was never defined.
+  as_fn_error "conditional \"am__fastdepCXX\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${USE_SYSINSTALL_TRUE}" && test -z "${USE_SYSINSTALL_FALSE}"; then
-  as_fn_error $? "conditional \"USE_SYSINSTALL\" was never defined.
+  as_fn_error "conditional \"USE_SYSINSTALL\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${USE_UNINSTALL_TRUE}" && test -z "${USE_UNINSTALL_FALSE}"; then
-  as_fn_error $? "conditional \"USE_UNINSTALL\" was never defined.
+  as_fn_error "conditional \"USE_UNINSTALL\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${ALLOW_MULTIPLE_VERSIONS_TRUE}" && test -z "${ALLOW_MULTIPLE_VERSIONS_FALSE}"; then
-  as_fn_error $? "conditional \"ALLOW_MULTIPLE_VERSIONS\" was never defined.
+  as_fn_error "conditional \"ALLOW_MULTIPLE_VERSIONS\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 if test -z "${NEEDDATA_TRUE}" && test -z "${NEEDDATA_FALSE}"; then
-  as_fn_error $? "conditional \"NEEDDATA\" was never defined.
+  as_fn_error "conditional \"NEEDDATA\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 fi
 
-: "${CONFIG_STATUS=./config.status}"
+: ${CONFIG_STATUS=./config.status}
 ac_write_fail=0
 ac_clean_files_save=$ac_clean_files
 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
@@ -12627,7 +12394,6 @@ fi
 IFS=" ""	$as_nl"
 
 # Find who we are.  Look in the path if we contain no directory separator.
-as_myself=
 case $0 in #((
   *[\\/]* ) as_myself=$0 ;;
   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -12673,19 +12439,19 @@ export LANGUAGE
 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
 
-# as_fn_error STATUS ERROR [LINENO LOG_FD]
-# ----------------------------------------
+# as_fn_error ERROR [LINENO LOG_FD]
+# ---------------------------------
 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with STATUS, using 1 if that was 0.
+# script with status $?, using 1 if that was 0.
 as_fn_error ()
 {
-  as_status=$1; test $as_status -eq 0 && as_status=1
-  if test "$4"; then
-    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
+  as_status=$?; test $as_status -eq 0 && as_status=1
+  if test "$3"; then
+    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
   fi
-  $as_echo "$as_me: error: $2" >&2
+  $as_echo "$as_me: error: $1" >&2
   as_fn_exit $as_status
 } # as_fn_error
 
@@ -12823,16 +12589,16 @@ if (echo >conf$$.file) 2>/dev/null; then
     # ... but there are two gotchas:
     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
-    # In both cases, we have to default to `cp -pR'.
+    # In both cases, we have to default to `cp -p'.
     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-      as_ln_s='cp -pR'
+      as_ln_s='cp -p'
   elif ln conf$$.file conf$$ 2>/dev/null; then
     as_ln_s=ln
   else
-    as_ln_s='cp -pR'
+    as_ln_s='cp -p'
   fi
 else
-  as_ln_s='cp -pR'
+  as_ln_s='cp -p'
 fi
 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 rmdir conf$$.dir 2>/dev/null
@@ -12881,7 +12647,7 @@ $as_echo X"$as_dir" |
       test -d "$as_dir" && break
     done
     test -z "$as_dirs" || eval "mkdir $as_dirs"
-  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
 
 
 } # as_fn_mkdir_p
@@ -12892,16 +12658,28 @@ else
   as_mkdir_p=false
 fi
 
-
-# as_fn_executable_p FILE
-# -----------------------
-# Test if FILE is an executable regular file.
-as_fn_executable_p ()
-{
-  test -f "$1" && test -x "$1"
-} # as_fn_executable_p
-as_test_x='test -x'
-as_executable_p=as_fn_executable_p
+if test -x / >/dev/null 2>&1; then
+  as_test_x='test -x'
+else
+  if ls -dL / >/dev/null 2>&1; then
+    as_ls_L_option=L
+  else
+    as_ls_L_option=
+  fi
+  as_test_x='
+    eval sh -c '\''
+      if test -d "$1"; then
+	test -d "$1/.";
+      else
+	case $1 in #(
+	-*)set "./$1";;
+	esac;
+	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
+	???[sx]*):;;*)false;;esac;fi
+    '\'' sh
+  '
+fi
+as_executable_p=$as_test_x
 
 # Sed expression to map a string onto a valid CPP name.
 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
@@ -12922,8 +12700,8 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by armagetronad $as_me 0.2.8.3.3, which was
-generated by GNU Autoconf 2.69.  Invocation command line was
+This file was extended by armagetronad $as_me 0.2.8.3.4, which was
+generated by GNU Autoconf 2.65.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
   CONFIG_HEADERS  = $CONFIG_HEADERS
@@ -12988,11 +12766,11 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-armagetronad config.status 0.2.8.3.3
-configured by $0, generated by GNU Autoconf 2.69,
+armagetronad config.status 0.2.8.3.4
+configured by $0, generated by GNU Autoconf 2.65,
   with options \\"\$ac_cs_config\\"
 
-Copyright (C) 2012 Free Software Foundation, Inc.
+Copyright (C) 2009 Free Software Foundation, Inc.
 This config.status script is free software; the Free Software Foundation
 gives unlimited permission to copy, distribute and modify it."
 
@@ -13010,16 +12788,11 @@ ac_need_defaults=:
 while test $# != 0
 do
   case $1 in
-  --*=?*)
+  --*=*)
     ac_option=`expr "X$1" : 'X\([^=]*\)='`
     ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
     ac_shift=:
     ;;
-  --*=)
-    ac_option=`expr "X$1" : 'X\([^=]*\)='`
-    ac_optarg=
-    ac_shift=:
-    ;;
   *)
     ac_option=$1
     ac_optarg=$2
@@ -13041,7 +12814,6 @@ do
     $ac_shift
     case $ac_optarg in
     *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
-    '') as_fn_error $? "missing file argument" ;;
     esac
     as_fn_append CONFIG_FILES " '$ac_optarg'"
     ac_need_defaults=false;;
@@ -13054,7 +12826,7 @@ do
     ac_need_defaults=false;;
   --he | --h)
     # Conflict between --help and --header
-    as_fn_error $? "ambiguous option: \`$1'
+    as_fn_error "ambiguous option: \`$1'
 Try \`$0 --help' for more information.";;
   --help | --hel | -h )
     $as_echo "$ac_cs_usage"; exit ;;
@@ -13063,7 +12835,7 @@ Try \`$0 --help' for more information.";;
     ac_cs_silent=: ;;
 
   # This is an error.
-  -*) as_fn_error $? "unrecognized option: \`$1'
+  -*) as_fn_error "unrecognized option: \`$1'
 Try \`$0 --help' for more information." ;;
 
   *) as_fn_append ac_config_targets " $1"
@@ -13083,7 +12855,7 @@ fi
 _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 if \$ac_cs_recheck; then
-  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
+  set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
   shift
   \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
   CONFIG_SHELL='$SHELL'
@@ -13141,7 +12913,7 @@ do
     "desktop/Makefile") CONFIG_FILES="$CONFIG_FILES desktop/Makefile" ;;
     "desktop/armagetronad.desktop") CONFIG_FILES="$CONFIG_FILES desktop/armagetronad.desktop" ;;
 
-  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
+  *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
   esac
 done
 
@@ -13164,10 +12936,9 @@ fi
 # after its creation but before its name has been assigned to `$tmp'.
 $debug ||
 {
-  tmp= ac_tmp=
+  tmp=
   trap 'exit_status=$?
-  : "${ac_tmp:=$tmp}"
-  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
+  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
 ' 0
   trap 'as_fn_exit 1' 1 2 13 15
 }
@@ -13175,13 +12946,12 @@ $debug ||
 
 {
   tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
-  test -d "$tmp"
+  test -n "$tmp" && test -d "$tmp"
 }  ||
 {
   tmp=./conf$$-$RANDOM
   (umask 077 && mkdir "$tmp")
-} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
-ac_tmp=$tmp
+} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
 
 # Set up the scripts for CONFIG_FILES section.
 # No need to generate them if there are no CONFIG_FILES.
@@ -13198,12 +12968,12 @@ if test "x$ac_cr" = x; then
 fi
 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
-  ac_cs_awk_cr='\\r'
+  ac_cs_awk_cr='\r'
 else
   ac_cs_awk_cr=$ac_cr
 fi
 
-echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
+echo 'BEGIN {' >"$tmp/subs1.awk" &&
 _ACEOF
 
 
@@ -13212,18 +12982,18 @@ _ACEOF
   echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
   echo "_ACEOF"
 } >conf$$subs.sh ||
-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
-ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
+  as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
 ac_delim='%!_!# '
 for ac_last_try in false false false false false :; do
   . ./conf$$subs.sh ||
-    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+    as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
 
   ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
   if test $ac_delim_n = $ac_delim_num; then
     break
   elif $ac_last_try; then
-    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+    as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
   else
     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
   fi
@@ -13231,7 +13001,7 @@ done
 rm -f conf$$subs.sh
 
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
-cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
+cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
 _ACEOF
 sed -n '
 h
@@ -13279,7 +13049,7 @@ t delim
 rm -f conf$$subs.awk
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 _ACAWK
-cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
+cat >>"\$tmp/subs1.awk" <<_ACAWK &&
   for (key in S) S_is_set[key] = 1
   FS = ""
 
@@ -13311,29 +13081,21 @@ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
   sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
 else
   cat
-fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
-  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
+fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
+  || as_fn_error "could not setup config files machinery" "$LINENO" 5
 _ACEOF
 
-# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
-# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
+# VPATH may cause trouble with some makes, so we remove $(srcdir),
+# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
 # trailing colons and then remove the whole line if VPATH becomes empty
 # (actually we leave an empty line to preserve line numbers).
 if test "x$srcdir" = x.; then
-  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
-h
-s///
-s/^/:/
-s/[	 ]*$/:/
-s/:\$(srcdir):/:/g
-s/:\${srcdir}:/:/g
-s/:@srcdir@:/:/g
-s/^:*//
+  ac_vpsub='/^[	 ]*VPATH[	 ]*=/{
+s/:*\$(srcdir):*/:/
+s/:*\${srcdir}:*/:/
+s/:*@srcdir@:*/:/
+s/^\([^=]*=[	 ]*\):*/\1/
 s/:*$//
-x
-s/\(=[	 ]*\).*/\1/
-G
-s/\n//
 s/^[^=]*=[	 ]*$//
 }'
 fi
@@ -13345,7 +13107,7 @@ fi # test -n "$CONFIG_FILES"
 # No need to generate them if there are no CONFIG_HEADERS.
 # This happens for instance with `./config.status Makefile'.
 if test -n "$CONFIG_HEADERS"; then
-cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
+cat >"$tmp/defines.awk" <<\_ACAWK ||
 BEGIN {
 _ACEOF
 
@@ -13357,11 +13119,11 @@ _ACEOF
 # handling of long lines.
 ac_delim='%!_!# '
 for ac_last_try in false false :; do
-  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
-  if test -z "$ac_tt"; then
+  ac_t=`sed -n "/$ac_delim/p" confdefs.h`
+  if test -z "$ac_t"; then
     break
   elif $ac_last_try; then
-    as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
+    as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5
   else
     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
   fi
@@ -13446,7 +13208,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 _ACAWK
 _ACEOF
 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
-  as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
+  as_fn_error "could not setup config headers machinery" "$LINENO" 5
 fi # test -n "$CONFIG_HEADERS"
 
 
@@ -13459,7 +13221,7 @@ do
   esac
   case $ac_mode$ac_tag in
   :[FHL]*:*);;
-  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
+  :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
   :[FH]-) ac_tag=-:-;;
   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
   esac
@@ -13478,7 +13240,7 @@ do
     for ac_f
     do
       case $ac_f in
-      -) ac_f="$ac_tmp/stdin";;
+      -) ac_f="$tmp/stdin";;
       *) # Look for the file first in the build tree, then in the source tree
 	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
 	 # because $ac_f cannot contain `:'.
@@ -13487,7 +13249,7 @@ do
 	   [\\/$]*) false;;
 	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
 	   esac ||
-	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
+	   as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
       esac
       case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
       as_fn_append ac_file_inputs " '$ac_f'"
@@ -13513,8 +13275,8 @@ $as_echo "$as_me: creating $ac_file" >&6;}
     esac
 
     case $ac_tag in
-    *:-:* | *:-) cat >"$ac_tmp/stdin" \
-      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
+    *:-:* | *:-) cat >"$tmp/stdin" \
+      || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
     esac
     ;;
   esac
@@ -13619,16 +13381,16 @@ s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
 s&@INSTALL@&$ac_INSTALL&;t t
 s&@MKDIR_P@&$ac_MKDIR_P&;t t
 "
-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
-  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
+  || as_fn_error "could not create $ac_file" "$LINENO" 5
 
 
-  rm -f "$ac_tmp/stdin"
+  rm -f "$tmp/stdin"
   case $ac_file in
-  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
-  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
+  -) cat "$tmp/out" && rm -f "$tmp/out";;
+  *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
   esac \
-  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+  || as_fn_error "could not create $ac_file" "$LINENO" 5
  ;;
   :H)
   #
@@ -13637,21 +13399,21 @@ eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
   if test x"$ac_file" != x-; then
     {
       $as_echo "/* $configure_input  */" \
-      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
-    } >"$ac_tmp/config.h" \
-      || as_fn_error $? "could not create $ac_file" "$LINENO" 5
-    if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
+      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
+    } >"$tmp/config.h" \
+      || as_fn_error "could not create $ac_file" "$LINENO" 5
+    if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
       { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
 $as_echo "$as_me: $ac_file is unchanged" >&6;}
     else
       rm -f "$ac_file"
-      mv "$ac_tmp/config.h" "$ac_file" \
-	|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
+      mv "$tmp/config.h" "$ac_file" \
+	|| as_fn_error "could not create $ac_file" "$LINENO" 5
     fi
   else
     $as_echo "/* $configure_input  */" \
-      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
-      || as_fn_error $? "could not create -" "$LINENO" 5
+      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
+      || as_fn_error "could not create -" "$LINENO" 5
   fi
 # Compute "$ac_file"'s index in $config_headers.
 _am_arg="$ac_file"
@@ -13697,7 +13459,7 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
 
   case $ac_file$ac_mode in
     "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
-  # Older Autoconf quotes --file arguments for eval, but not when files
+  # Autoconf 2.62 quotes --file arguments for eval, but not when files
   # are listed without --file.  Let's play safe and only enable the eval
   # if we detect the quoting.
   case $CONFIG_FILES in
@@ -13710,7 +13472,7 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
     # Strip MF so we end up with the name of the file.
     mf=`echo "$mf" | sed -e 's/:.*$//'`
     # Check whether this is an Automake generated Makefile or not.
-    # We used to match only the files named 'Makefile.in', but
+    # We used to match only the files named `Makefile.in', but
     # some people rename them; so instead we look at the file content.
     # Grep'ing the first line is not enough: some people post-process
     # each Makefile.in and add a new line on top of each file to say so.
@@ -13744,19 +13506,21 @@ $as_echo X"$mf" |
       continue
     fi
     # Extract the definition of DEPDIR, am__include, and am__quote
-    # from the Makefile without running 'make'.
+    # from the Makefile without running `make'.
     DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
     test -z "$DEPDIR" && continue
     am__include=`sed -n 's/^am__include = //p' < "$mf"`
-    test -z "$am__include" && continue
+    test -z "am__include" && continue
     am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
+    # When using ansi2knr, U may be empty or an underscore; expand it
+    U=`sed -n 's/^U = //p' < "$mf"`
     # Find all dependency output files, they are included files with
     # $(DEPDIR) in their names.  We invoke sed twice because it is the
     # simplest approach to changing $(DEPDIR) to its actual value in the
     # expansion.
     for file in `sed -n "
       s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
-	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
+	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
       # Make sure the directory exists.
       test -f "$dirpart/$file" && continue
       fdir=`$as_dirname -- "$file" ||
@@ -13889,7 +13653,7 @@ _ACEOF
 ac_clean_files=$ac_clean_files_save
 
 test $ac_write_fail = 0 ||
-  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
+  as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
 
 
 # configure is writing to config.log, and then calls config.status.
@@ -13910,7 +13674,7 @@ if test "$no_create" != yes; then
   exec 5>>config.log
   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
   # would make configure fail if this is the last instruction.
-  $ac_cs_success || as_fn_exit 1
+  $ac_cs_success || as_fn_exit $?
 fi
 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
diff --git a/configure.ac b/configure.ac
index f968b22..ea89763 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8,7 +8,7 @@ dnl Comment this out to disable autoconf custom directories:
 m4_include(accustomdir.m4)
 
 dnl Process this file with autoconf to produce a configure script.
-AC_INIT(armagetronad,0.2.8.3.3)
+AC_INIT(armagetronad,0.2.8.3.4)
 
 dnl FIXME: remove this in the future, when automake decides to actually set datarootdir by default
 dnl http://www.gnu.org/software/hello/manual/autoconf/Changed-Directory-Variables.html
@@ -147,7 +147,7 @@ AC_SUBST(build_regular)
 
 AC_ARG_ENABLE(memmanager,
 	AC_HELP_STRING([--enable-memmanager],
-		[enable custom memory manager on systems that allow it (default=disabled)]),,
+		[enable custom memory manager on systems that allow it [BROKEN] (default=disabled)]),,
 enable_memmanager=no)
 
 AC_ARG_ENABLE(music,
@@ -299,7 +299,7 @@ test -z "`echo $CXXFLAGS | grep "\-O"`" && CXXFLAGS="$CXXFLAGS -O2"
 
 test $DEBUGLEVEL -ge 1 && CXXFLAGS="`echo $CXXFLAGS | sed -e 's,-O.,,'` -g -O0"
 test $DEBUGLEVEL -ge 2 && CXXFLAGS="$CXXFLAGS -DDEBUG"
-test $DEBUGLEVEL -ge 3 && enable_memmanager=yes
+dnl test $DEBUGLEVEL -ge 3 && enable_memmanager=yes
 test $DEBUGLEVEL -ge 4 && CXXFLAGS="$CXXFLAGS -DDEBUG_EXPENSIVE"
 test $DEBUGLEVEL -ge 5 && CXXFLAGS="$CXXFLAGS -DMEM_DEB"
 
diff --git a/depcomp b/depcomp
index 4ebd5b3..df8eea7 100755
--- a/depcomp
+++ b/depcomp
@@ -1,9 +1,10 @@
 #! /bin/sh
 # depcomp - compile a program generating dependencies as side-effects
 
-scriptversion=2013-05-30.07; # UTC
+scriptversion=2009-04-28.21; # UTC
 
-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
+# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
+# Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -27,9 +28,9 @@ scriptversion=2013-05-30.07; # UTC
 
 case $1 in
   '')
-    echo "$0: No command.  Try '$0 --help' for more information." 1>&2
-    exit 1;
-    ;;
+     echo "$0: No command.  Try \`$0 --help' for more information." 1>&2
+     exit 1;
+     ;;
   -h | --h*)
     cat <<\EOF
 Usage: depcomp [--help] [--version] PROGRAM [ARGS]
@@ -39,11 +40,11 @@ as side-effects.
 
 Environment variables:
   depmode     Dependency tracking mode.
-  source      Source file read by 'PROGRAMS ARGS'.
-  object      Object file output by 'PROGRAMS ARGS'.
+  source      Source file read by `PROGRAMS ARGS'.
+  object      Object file output by `PROGRAMS ARGS'.
   DEPDIR      directory where to store dependencies.
   depfile     Dependency file to output.
-  tmpdepfile  Temporary file to use when outputting dependencies.
+  tmpdepfile  Temporary file to use when outputing dependencies.
   libtool     Whether libtool is used (yes/no).
 
 Report bugs to <bug-automake at gnu.org>.
@@ -56,66 +57,6 @@ EOF
     ;;
 esac
 
-# Get the directory component of the given path, and save it in the
-# global variables '$dir'.  Note that this directory component will
-# be either empty or ending with a '/' character.  This is deliberate.
-set_dir_from ()
-{
-  case $1 in
-    */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
-      *) dir=;;
-  esac
-}
-
-# Get the suffix-stripped basename of the given path, and save it the
-# global variable '$base'.
-set_base_from ()
-{
-  base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
-}
-
-# If no dependency file was actually created by the compiler invocation,
-# we still have to create a dummy depfile, to avoid errors with the
-# Makefile "include basename.Plo" scheme.
-make_dummy_depfile ()
-{
-  echo "#dummy" > "$depfile"
-}
-
-# Factor out some common post-processing of the generated depfile.
-# Requires the auxiliary global variable '$tmpdepfile' to be set.
-aix_post_process_depfile ()
-{
-  # If the compiler actually managed to produce a dependency file,
-  # post-process it.
-  if test -f "$tmpdepfile"; then
-    # Each line is of the form 'foo.o: dependency.h'.
-    # Do two passes, one to just change these to
-    #   $object: dependency.h
-    # and one to simply output
-    #   dependency.h:
-    # which is needed to avoid the deleted-header problem.
-    { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
-      sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
-    } > "$depfile"
-    rm -f "$tmpdepfile"
-  else
-    make_dummy_depfile
-  fi
-}
-
-# A tabulation character.
-tab='	'
-# A newline character.
-nl='
-'
-# Character ranges might be problematic outside the C locale.
-# These definitions help.
-upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
-lower=abcdefghijklmnopqrstuvwxyz
-digits=0123456789
-alpha=${upper}${lower}
-
 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
   echo "depcomp: Variables source, object and depmode must be set" 1>&2
   exit 1
@@ -128,9 +69,6 @@ tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
 
 rm -f "$tmpdepfile"
 
-# Avoid interferences from the environment.
-gccflag= dashmflag=
-
 # Some modes work just like other modes, but use different flags.  We
 # parameterize here, but still list the modes in the big case below,
 # to make depend.m4 easier to write.  Note that we *cannot* use a case
@@ -142,32 +80,18 @@ if test "$depmode" = hp; then
 fi
 
 if test "$depmode" = dashXmstdout; then
-  # This is just like dashmstdout with a different argument.
-  dashmflag=-xM
-  depmode=dashmstdout
+   # This is just like dashmstdout with a different argument.
+   dashmflag=-xM
+   depmode=dashmstdout
 fi
 
 cygpath_u="cygpath -u -f -"
 if test "$depmode" = msvcmsys; then
-  # This is just like msvisualcpp but w/o cygpath translation.
-  # Just convert the backslash-escaped backslashes to single forward
-  # slashes to satisfy depend.m4
-  cygpath_u='sed s,\\\\,/,g'
-  depmode=msvisualcpp
-fi
-
-if test "$depmode" = msvc7msys; then
-  # This is just like msvc7 but w/o cygpath translation.
-  # Just convert the backslash-escaped backslashes to single forward
-  # slashes to satisfy depend.m4
-  cygpath_u='sed s,\\\\,/,g'
-  depmode=msvc7
-fi
-
-if test "$depmode" = xlc; then
-  # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
-  gccflag=-qmakedep=gcc,-MF
-  depmode=gcc
+   # This is just like msvisualcpp but w/o cygpath translation.
+   # Just convert the backslash-escaped backslashes to single forward
+   # slashes to satisfy depend.m4
+   cygpath_u="sed s,\\\\\\\\,/,g"
+   depmode=msvisualcpp
 fi
 
 case "$depmode" in
@@ -190,7 +114,8 @@ gcc3)
   done
   "$@"
   stat=$?
-  if test $stat -ne 0; then
+  if test $stat -eq 0; then :
+  else
     rm -f "$tmpdepfile"
     exit $stat
   fi
@@ -198,17 +123,13 @@ gcc3)
   ;;
 
 gcc)
-## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
-## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
-## (see the conditional assignment to $gccflag above).
 ## There are various ways to get dependency output from gcc.  Here's
 ## why we pick this rather obscure method:
 ## - Don't want to use -MD because we'd like the dependencies to end
 ##   up in a subdir.  Having to rename by hand is ugly.
 ##   (We might end up doing this anyway to support other compilers.)
 ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
-##   -MM, not -M (despite what the docs say).  Also, it might not be
-##   supported by the other compilers which use the 'gcc' depmode.
+##   -MM, not -M (despite what the docs say).
 ## - Using -M directly means running the compiler twice (even worse
 ##   than renaming).
   if test -z "$gccflag"; then
@@ -216,31 +137,31 @@ gcc)
   fi
   "$@" -Wp,"$gccflag$tmpdepfile"
   stat=$?
-  if test $stat -ne 0; then
+  if test $stat -eq 0; then :
+  else
     rm -f "$tmpdepfile"
     exit $stat
   fi
   rm -f "$depfile"
   echo "$object : \\" > "$depfile"
-  # The second -e expression handles DOS-style file names with drive
-  # letters.
+  alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
+## The second -e expression handles DOS-style file names with drive letters.
   sed -e 's/^[^:]*: / /' \
       -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
-## This next piece of magic avoids the "deleted header file" problem.
+## This next piece of magic avoids the `deleted header file' problem.
 ## The problem is that when a header file which appears in a .P file
 ## is deleted, the dependency causes make to die (because there is
 ## typically no way to rebuild the header).  We avoid this by adding
 ## dummy dependencies for each header file.  Too bad gcc doesn't do
 ## this for us directly.
-## Some versions of gcc put a space before the ':'.  On the theory
+  tr ' ' '
+' < "$tmpdepfile" |
+## Some versions of gcc put a space before the `:'.  On the theory
 ## that the space means something, we add a space to the output as
-## well.  hp depmode also adds that space, but also prefixes the VPATH
-## to the object.  Take care to not repeat it in the output.
+## well.
 ## Some versions of the HPUX 10.20 sed can't process this invocation
 ## correctly.  Breaking it into two sed invocations is a workaround.
-  tr ' ' "$nl" < "$tmpdepfile" \
-    | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
-    | sed -e 's/$/ :/' >> "$depfile"
+    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
   rm -f "$tmpdepfile"
   ;;
 
@@ -258,7 +179,8 @@ sgi)
     "$@" -MDupdate "$tmpdepfile"
   fi
   stat=$?
-  if test $stat -ne 0; then
+  if test $stat -eq 0; then :
+  else
     rm -f "$tmpdepfile"
     exit $stat
   fi
@@ -266,41 +188,43 @@ sgi)
 
   if test -f "$tmpdepfile"; then  # yes, the sourcefile depend on other files
     echo "$object : \\" > "$depfile"
+
     # Clip off the initial element (the dependent).  Don't try to be
     # clever and replace this with sed code, as IRIX sed won't handle
     # lines with more than a fixed number of characters (4096 in
     # IRIX 6.2 sed, 8192 in IRIX 6.5).  We also remove comment lines;
-    # the IRIX cc adds comments like '#:fec' to the end of the
+    # the IRIX cc adds comments like `#:fec' to the end of the
     # dependency line.
-    tr ' ' "$nl" < "$tmpdepfile" \
-      | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \
-      | tr "$nl" ' ' >> "$depfile"
+    tr ' ' '
+' < "$tmpdepfile" \
+    | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
+    tr '
+' ' ' >> "$depfile"
     echo >> "$depfile"
+
     # The second pass generates a dummy entry for each header file.
-    tr ' ' "$nl" < "$tmpdepfile" \
-      | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
-      >> "$depfile"
+    tr ' ' '
+' < "$tmpdepfile" \
+   | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
+   >> "$depfile"
   else
-    make_dummy_depfile
+    # The sourcefile does not contain any dependencies, so just
+    # store a dummy comment line, to avoid errors with the Makefile
+    # "include basename.Plo" scheme.
+    echo "#dummy" > "$depfile"
   fi
   rm -f "$tmpdepfile"
   ;;
 
-xlc)
-  # This case exists only to let depend.m4 do its work.  It works by
-  # looking at the text of this script.  This case will never be run,
-  # since it is checked for above.
-  exit 1
-  ;;
-
 aix)
   # The C for AIX Compiler uses -M and outputs the dependencies
   # in a .u file.  In older versions, this file always lives in the
-  # current directory.  Also, the AIX compiler puts '$object:' at the
+  # current directory.  Also, the AIX compiler puts `$object:' at the
   # start of each line; $object doesn't have directory information.
   # Version 6 uses the directory in both cases.
-  set_dir_from "$object"
-  set_base_from "$object"
+  dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
+  test "x$dir" = "x$object" && dir=
+  base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
   if test "$libtool" = yes; then
     tmpdepfile1=$dir$base.u
     tmpdepfile2=$base.u
@@ -313,7 +237,9 @@ aix)
     "$@" -M
   fi
   stat=$?
-  if test $stat -ne 0; then
+
+  if test $stat -eq 0; then :
+  else
     rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
     exit $stat
   fi
@@ -322,100 +248,44 @@ aix)
   do
     test -f "$tmpdepfile" && break
   done
-  aix_post_process_depfile
-  ;;
-
-tcc)
-  # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26
-  # FIXME: That version still under development at the moment of writing.
-  #        Make that this statement remains true also for stable, released
-  #        versions.
-  # It will wrap lines (doesn't matter whether long or short) with a
-  # trailing '\', as in:
-  #
-  #   foo.o : \
-  #    foo.c \
-  #    foo.h \
-  #
-  # It will put a trailing '\' even on the last line, and will use leading
-  # spaces rather than leading tabs (at least since its commit 0394caf7
-  # "Emit spaces for -MD").
-  "$@" -MD -MF "$tmpdepfile"
-  stat=$?
-  if test $stat -ne 0; then
-    rm -f "$tmpdepfile"
-    exit $stat
+  if test -f "$tmpdepfile"; then
+    # Each line is of the form `foo.o: dependent.h'.
+    # Do two passes, one to just change these to
+    # `$object: dependent.h' and one to simply `dependent.h:'.
+    sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
+    # That's a tab and a space in the [].
+    sed -e 's,^.*\.[a-z]*:[	 ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
+  else
+    # The sourcefile does not contain any dependencies, so just
+    # store a dummy comment line, to avoid errors with the Makefile
+    # "include basename.Plo" scheme.
+    echo "#dummy" > "$depfile"
   fi
-  rm -f "$depfile"
-  # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'.
-  # We have to change lines of the first kind to '$object: \'.
-  sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile"
-  # And for each line of the second kind, we have to emit a 'dep.h:'
-  # dummy dependency, to avoid the deleted-header problem.
-  sed -n -e 's|^  *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile"
   rm -f "$tmpdepfile"
   ;;
 
-## The order of this option in the case statement is important, since the
-## shell code in configure will try each of these formats in the order
-## listed in this file.  A plain '-MD' option would be understood by many
-## compilers, so we must ensure this comes after the gcc and icc options.
-pgcc)
-  # Portland's C compiler understands '-MD'.
-  # Will always output deps to 'file.d' where file is the root name of the
-  # source file under compilation, even if file resides in a subdirectory.
-  # The object file name does not affect the name of the '.d' file.
-  # pgcc 10.2 will output
+icc)
+  # Intel's C compiler understands `-MD -MF file'.  However on
+  #    icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
+  # ICC 7.0 will fill foo.d with something like
+  #    foo.o: sub/foo.c
+  #    foo.o: sub/foo.h
+  # which is wrong.  We want:
+  #    sub/foo.o: sub/foo.c
+  #    sub/foo.o: sub/foo.h
+  #    sub/foo.c:
+  #    sub/foo.h:
+  # ICC 7.1 will output
   #    foo.o: sub/foo.c sub/foo.h
-  # and will wrap long lines using '\' :
+  # and will wrap long lines using \ :
   #    foo.o: sub/foo.c ... \
   #     sub/foo.h ... \
   #     ...
-  set_dir_from "$object"
-  # Use the source, not the object, to determine the base name, since
-  # that's sadly what pgcc will do too.
-  set_base_from "$source"
-  tmpdepfile=$base.d
-
-  # For projects that build the same source file twice into different object
-  # files, the pgcc approach of using the *source* file root name can cause
-  # problems in parallel builds.  Use a locking strategy to avoid stomping on
-  # the same $tmpdepfile.
-  lockdir=$base.d-lock
-  trap "
-    echo '$0: caught signal, cleaning up...' >&2
-    rmdir '$lockdir'
-    exit 1
-  " 1 2 13 15
-  numtries=100
-  i=$numtries
-  while test $i -gt 0; do
-    # mkdir is a portable test-and-set.
-    if mkdir "$lockdir" 2>/dev/null; then
-      # This process acquired the lock.
-      "$@" -MD
-      stat=$?
-      # Release the lock.
-      rmdir "$lockdir"
-      break
-    else
-      # If the lock is being held by a different process, wait
-      # until the winning process is done or we timeout.
-      while test -d "$lockdir" && test $i -gt 0; do
-        sleep 1
-        i=`expr $i - 1`
-      done
-    fi
-    i=`expr $i - 1`
-  done
-  trap - 1 2 13 15
-  if test $i -le 0; then
-    echo "$0: failed to acquire lock after $numtries attempts" >&2
-    echo "$0: check lockdir '$lockdir'" >&2
-    exit 1
-  fi
 
-  if test $stat -ne 0; then
+  "$@" -MD -MF "$tmpdepfile"
+  stat=$?
+  if test $stat -eq 0; then :
+  else
     rm -f "$tmpdepfile"
     exit $stat
   fi
@@ -427,8 +297,8 @@ pgcc)
   sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
   # Some versions of the HPUX 10.20 sed can't process this invocation
   # correctly.  Breaking it into two sed invocations is a workaround.
-  sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \
-    | sed -e 's/$/ :/' >> "$depfile"
+  sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" |
+    sed -e 's/$/ :/' >> "$depfile"
   rm -f "$tmpdepfile"
   ;;
 
@@ -439,8 +309,9 @@ hp2)
   # 'foo.d', which lands next to the object file, wherever that
   # happens to be.
   # Much of this is similar to the tru64 case; see comments there.
-  set_dir_from  "$object"
-  set_base_from "$object"
+  dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
+  test "x$dir" = "x$object" && dir=
+  base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
   if test "$libtool" = yes; then
     tmpdepfile1=$dir$base.d
     tmpdepfile2=$dir.libs/$base.d
@@ -451,7 +322,8 @@ hp2)
     "$@" +Maked
   fi
   stat=$?
-  if test $stat -ne 0; then
+  if test $stat -eq 0; then :
+  else
      rm -f "$tmpdepfile1" "$tmpdepfile2"
      exit $stat
   fi
@@ -461,107 +333,77 @@ hp2)
     test -f "$tmpdepfile" && break
   done
   if test -f "$tmpdepfile"; then
-    sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile"
-    # Add 'dependent.h:' lines.
+    sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile"
+    # Add `dependent.h:' lines.
     sed -ne '2,${
-               s/^ *//
-               s/ \\*$//
-               s/$/:/
-               p
-             }' "$tmpdepfile" >> "$depfile"
+	       s/^ *//
+	       s/ \\*$//
+	       s/$/:/
+	       p
+	     }' "$tmpdepfile" >> "$depfile"
   else
-    make_dummy_depfile
+    echo "#dummy" > "$depfile"
   fi
   rm -f "$tmpdepfile" "$tmpdepfile2"
   ;;
 
 tru64)
-  # The Tru64 compiler uses -MD to generate dependencies as a side
-  # effect.  'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
-  # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
-  # dependencies in 'foo.d' instead, so we check for that too.
-  # Subdirectories are respected.
-  set_dir_from  "$object"
-  set_base_from "$object"
-
-  if test "$libtool" = yes; then
-    # Libtool generates 2 separate objects for the 2 libraries.  These
-    # two compilations output dependencies in $dir.libs/$base.o.d and
-    # in $dir$base.o.d.  We have to check for both files, because
-    # one of the two compilations can be disabled.  We should prefer
-    # $dir$base.o.d over $dir.libs/$base.o.d because the latter is
-    # automatically cleaned when .libs/ is deleted, while ignoring
-    # the former would cause a distcleancheck panic.
-    tmpdepfile1=$dir$base.o.d          # libtool 1.5
-    tmpdepfile2=$dir.libs/$base.o.d    # Likewise.
-    tmpdepfile3=$dir.libs/$base.d      # Compaq CCC V6.2-504
-    "$@" -Wc,-MD
-  else
-    tmpdepfile1=$dir$base.d
-    tmpdepfile2=$dir$base.d
-    tmpdepfile3=$dir$base.d
-    "$@" -MD
-  fi
-
-  stat=$?
-  if test $stat -ne 0; then
-    rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
-    exit $stat
-  fi
-
-  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
-  do
-    test -f "$tmpdepfile" && break
-  done
-  # Same post-processing that is required for AIX mode.
-  aix_post_process_depfile
-  ;;
-
-msvc7)
-  if test "$libtool" = yes; then
-    showIncludes=-Wc,-showIncludes
-  else
-    showIncludes=-showIncludes
-  fi
-  "$@" $showIncludes > "$tmpdepfile"
-  stat=$?
-  grep -v '^Note: including file: ' "$tmpdepfile"
-  if test $stat -ne 0; then
-    rm -f "$tmpdepfile"
-    exit $stat
-  fi
-  rm -f "$depfile"
-  echo "$object : \\" > "$depfile"
-  # The first sed program below extracts the file names and escapes
-  # backslashes for cygpath.  The second sed program outputs the file
-  # name when reading, but also accumulates all include files in the
-  # hold buffer in order to output them again at the end.  This only
-  # works with sed implementations that can handle large buffers.
-  sed < "$tmpdepfile" -n '
-/^Note: including file:  *\(.*\)/ {
-  s//\1/
-  s/\\/\\\\/g
-  p
-}' | $cygpath_u | sort -u | sed -n '
-s/ /\\ /g
-s/\(.*\)/'"$tab"'\1 \\/p
-s/.\(.*\) \\/\1:/
-H
-$ {
-  s/.*/'"$tab"'/
-  G
-  p
-}' >> "$depfile"
-  echo >> "$depfile" # make sure the fragment doesn't end with a backslash
-  rm -f "$tmpdepfile"
-  ;;
-
-msvc7msys)
-  # This case exists only to let depend.m4 do its work.  It works by
-  # looking at the text of this script.  This case will never be run,
-  # since it is checked for above.
-  exit 1
-  ;;
+   # The Tru64 compiler uses -MD to generate dependencies as a side
+   # effect.  `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
+   # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
+   # dependencies in `foo.d' instead, so we check for that too.
+   # Subdirectories are respected.
+   dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
+   test "x$dir" = "x$object" && dir=
+   base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
+
+   if test "$libtool" = yes; then
+      # With Tru64 cc, shared objects can also be used to make a
+      # static library.  This mechanism is used in libtool 1.4 series to
+      # handle both shared and static libraries in a single compilation.
+      # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d.
+      #
+      # With libtool 1.5 this exception was removed, and libtool now
+      # generates 2 separate objects for the 2 libraries.  These two
+      # compilations output dependencies in $dir.libs/$base.o.d and
+      # in $dir$base.o.d.  We have to check for both files, because
+      # one of the two compilations can be disabled.  We should prefer
+      # $dir$base.o.d over $dir.libs/$base.o.d because the latter is
+      # automatically cleaned when .libs/ is deleted, while ignoring
+      # the former would cause a distcleancheck panic.
+      tmpdepfile1=$dir.libs/$base.lo.d   # libtool 1.4
+      tmpdepfile2=$dir$base.o.d          # libtool 1.5
+      tmpdepfile3=$dir.libs/$base.o.d    # libtool 1.5
+      tmpdepfile4=$dir.libs/$base.d      # Compaq CCC V6.2-504
+      "$@" -Wc,-MD
+   else
+      tmpdepfile1=$dir$base.o.d
+      tmpdepfile2=$dir$base.d
+      tmpdepfile3=$dir$base.d
+      tmpdepfile4=$dir$base.d
+      "$@" -MD
+   fi
+
+   stat=$?
+   if test $stat -eq 0; then :
+   else
+      rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
+      exit $stat
+   fi
+
+   for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
+   do
+     test -f "$tmpdepfile" && break
+   done
+   if test -f "$tmpdepfile"; then
+      sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
+      # That's a tab and a space in the [].
+      sed -e 's,^.*\.[a-z]*:[	 ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
+   else
+      echo "#dummy" > "$depfile"
+   fi
+   rm -f "$tmpdepfile"
+   ;;
 
 #nosideeffect)
   # This comment above is used by automake to tell side-effect
@@ -580,7 +422,7 @@ dashmstdout)
     shift
   fi
 
-  # Remove '-o $object'.
+  # Remove `-o $object'.
   IFS=" "
   for arg
   do
@@ -600,18 +442,18 @@ dashmstdout)
   done
 
   test -z "$dashmflag" && dashmflag=-M
-  # Require at least two characters before searching for ':'
+  # Require at least two characters before searching for `:'
   # in the target name.  This is to cope with DOS-style filenames:
-  # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
+  # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise.
   "$@" $dashmflag |
-    sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
+    sed 's:^[  ]*[^: ][^:][^:]*\:[    ]*:'"$object"'\: :' > "$tmpdepfile"
   rm -f "$depfile"
   cat < "$tmpdepfile" > "$depfile"
-  # Some versions of the HPUX 10.20 sed can't process this sed invocation
-  # correctly.  Breaking it into two sed invocations is a workaround.
-  tr ' ' "$nl" < "$tmpdepfile" \
-    | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
-    | sed -e 's/$/ :/' >> "$depfile"
+  tr ' ' '
+' < "$tmpdepfile" | \
+## Some versions of the HPUX 10.20 sed can't process this invocation
+## correctly.  Breaking it into two sed invocations is a workaround.
+    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
   rm -f "$tmpdepfile"
   ;;
 
@@ -661,15 +503,12 @@ makedepend)
   touch "$tmpdepfile"
   ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
   rm -f "$depfile"
-  # makedepend may prepend the VPATH from the source file name to the object.
-  # No need to regex-escape $object, excess matching of '.' is harmless.
-  sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
-  # Some versions of the HPUX 10.20 sed can't process the last invocation
-  # correctly.  Breaking it into two sed invocations is a workaround.
-  sed '1,2d' "$tmpdepfile" \
-    | tr ' ' "$nl" \
-    | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
-    | sed -e 's/$/ :/' >> "$depfile"
+  cat < "$tmpdepfile" > "$depfile"
+  sed '1,2d' "$tmpdepfile" | tr ' ' '
+' | \
+## Some versions of the HPUX 10.20 sed can't process this invocation
+## correctly.  Breaking it into two sed invocations is a workaround.
+    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
   rm -f "$tmpdepfile" "$tmpdepfile".bak
   ;;
 
@@ -686,7 +525,7 @@ cpp)
     shift
   fi
 
-  # Remove '-o $object'.
+  # Remove `-o $object'.
   IFS=" "
   for arg
   do
@@ -705,10 +544,10 @@ cpp)
     esac
   done
 
-  "$@" -E \
-    | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
-             -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
-    | sed '$ s: \\$::' > "$tmpdepfile"
+  "$@" -E |
+    sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
+       -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
+    sed '$ s: \\$::' > "$tmpdepfile"
   rm -f "$depfile"
   echo "$object : \\" > "$depfile"
   cat < "$tmpdepfile" >> "$depfile"
@@ -740,23 +579,23 @@ msvisualcpp)
       shift
       ;;
     "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
-        set fnord "$@"
-        shift
-        shift
-        ;;
+	set fnord "$@"
+	shift
+	shift
+	;;
     *)
-        set fnord "$@" "$arg"
-        shift
-        shift
-        ;;
+	set fnord "$@" "$arg"
+	shift
+	shift
+	;;
     esac
   done
   "$@" -E 2>/dev/null |
   sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
   rm -f "$depfile"
   echo "$object : \\" > "$depfile"
-  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
-  echo "$tab" >> "$depfile"
+  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::	\1 \\:p' >> "$depfile"
+  echo "	" >> "$depfile"
   sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
   rm -f "$tmpdepfile"
   ;;
diff --git a/desktop/Makefile.in b/desktop/Makefile.in
index b1e9e1c..425e1a5 100644
--- a/desktop/Makefile.in
+++ b/desktop/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
-
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -17,51 +18,6 @@
 # include $(top_srcdir)/Makefile.paths
 
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -82,7 +38,7 @@ build_triplet = @build@
 host_triplet = @host@
 target_triplet = @target@
 subdir = desktop
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
 	$(srcdir)/armagetronad.desktop.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
@@ -93,25 +49,8 @@ mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = $(top_builddir)/config.h
 CONFIG_CLEAN_FILES = armagetronad.desktop
 CONFIG_CLEAN_VPATH_FILES =
-AM_V_P = $(am__v_P_ at AM_V@)
-am__v_P_ = $(am__v_P_ at AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
 SOURCES =
 DIST_SOURCES =
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 am__vpath_adj = case $$p in \
     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
@@ -133,19 +72,11 @@ am__nobase_list = $(am__nobase_strip_setup); \
 am__base_list = \
   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
-am__uninstall_files_from_dir = { \
-  test -z "$$files" \
-    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
-    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
-         $(am__cd) "$$dir" && rm -f $$files; }; \
-  }
 am__installdirs = "$(DESTDIR)$(desktopfiledir)"
 DATA = $(nobase_desktopfile_DATA)
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APBUILD_CC = @APBUILD_CC@
 APBUILD_CXX1 = @APBUILD_CXX1@
 APBUILD_CXX2 = @APBUILD_CXX2@
@@ -358,18 +289,15 @@ armagetronad.desktop: $(top_builddir)/config.status $(srcdir)/armagetronad.deskt
 	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
 install-nobase_desktopfileDATA: $(nobase_desktopfile_DATA)
 	@$(NORMAL_INSTALL)
+	test -z "$(desktopfiledir)" || $(MKDIR_P) "$(DESTDIR)$(desktopfiledir)"
 	@list='$(nobase_desktopfile_DATA)'; test -n "$(desktopfiledir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(desktopfiledir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(desktopfiledir)" || exit 1; \
-	fi; \
 	$(am__nobase_list) | while read dir files; do \
 	  xfiles=; for file in $$files; do \
 	    if test -f "$$file"; then xfiles="$$xfiles $$file"; \
 	    else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
 	  test -z "$$xfiles" || { \
 	    test "x$$dir" = x. || { \
-	      echo " $(MKDIR_P) '$(DESTDIR)$(desktopfiledir)/$$dir'"; \
+	      echo "$(MKDIR_P) '$(DESTDIR)$(desktopfiledir)/$$dir'"; \
 	      $(MKDIR_P) "$(DESTDIR)$(desktopfiledir)/$$dir"; }; \
 	    echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(desktopfiledir)/$$dir'"; \
 	    $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(desktopfiledir)/$$dir" || exit $$?; }; \
@@ -379,12 +307,14 @@ uninstall-nobase_desktopfileDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(nobase_desktopfile_DATA)'; test -n "$(desktopfiledir)" || list=; \
 	$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
-	dir='$(DESTDIR)$(desktopfiledir)'; $(am__uninstall_files_from_dir)
-tags TAGS:
-
-ctags CTAGS:
+	test -n "$$files" || exit 0; \
+	echo " ( cd '$(DESTDIR)$(desktopfiledir)' && rm -f" $$files ")"; \
+	cd "$(DESTDIR)$(desktopfiledir)" && rm -f $$files
+tags: TAGS
+TAGS:
 
-cscope cscopelist:
+ctags: CTAGS
+CTAGS:
 
 
 distdir: $(DISTFILES)
@@ -434,15 +364,10 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 mostlyclean-generic:
 
 clean-generic:
@@ -522,17 +447,17 @@ uninstall-am: uninstall-nobase_desktopfileDATA
 
 .MAKE: install-am install-strip
 
-.PHONY: all all-am check check-am clean clean-generic cscopelist-am \
-	ctags-am distclean distclean-generic distdir dvi dvi-am html \
-	html-am info info-am install install-am install-data \
-	install-data-am install-dvi install-dvi-am install-exec \
-	install-exec-am install-html install-html-am install-info \
-	install-info-am install-man install-nobase_desktopfileDATA \
-	install-pdf install-pdf-am install-ps install-ps-am \
-	install-strip installcheck installcheck-am installdirs \
-	maintainer-clean maintainer-clean-generic mostlyclean \
-	mostlyclean-generic pdf pdf-am ps ps-am tags-am uninstall \
-	uninstall-am uninstall-nobase_desktopfileDATA
+.PHONY: all all-am check check-am clean clean-generic distclean \
+	distclean-generic distdir dvi dvi-am html html-am info info-am \
+	install install-am install-data install-data-am install-dvi \
+	install-dvi-am install-exec install-exec-am install-html \
+	install-html-am install-info install-info-am install-man \
+	install-nobase_desktopfileDATA install-pdf install-pdf-am \
+	install-ps install-ps-am install-strip installcheck \
+	installcheck-am installdirs maintainer-clean \
+	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
+	pdf-am ps ps-am uninstall uninstall-am \
+	uninstall-nobase_desktopfileDATA
 
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
diff --git a/fingerprint b/fingerprint
index 85352bb..b18cefd 100644
--- a/fingerprint
+++ b/fingerprint
@@ -1,13 +1,11 @@
-Path: /home/manuel/Tron/bzr/admin/release/tags/0.2.8.3.3/armagetronad
-Working Copy Root Path: /home/manuel/Tron/bzr/admin/release/tags/0.2.8.3.3
-URL: https://svn.code.sf.net/p/armagetronad/code/armagetronad/tags/0.2.8.3.3/armagetronad
-Relative URL: ^/armagetronad/tags/0.2.8.3.3/armagetronad
+Path: /usr/local/chroot/lucid32/home/manuel/Tron/release/auto/0.2.8.3.4/armagetronad
+URL: https://svn.code.sf.net/p/armagetronad/code/armagetronad/tags/0.2.8.3.4/armagetronad
 Repository Root: https://svn.code.sf.net/p/armagetronad/code
 Repository UUID: 7d95bf1e-0414-0410-9756-b78462a59f44
-Revision: 10741
+Revision: 10876
 Node Kind: directory
 Schedule: normal
 Last Changed Author: z-man
-Last Changed Rev: 10740
-Last Changed Date: 2015-02-26 20:28:18 +0100 (Thu, 26 Feb 2015)
+Last Changed Rev: 10866
+Last Changed Date: 2016-11-08 23:04:58 +0100 (Tue, 08 Nov 2016)
 
diff --git a/install-sh b/install-sh
index 377bb86..6781b98 100755
--- a/install-sh
+++ b/install-sh
@@ -1,7 +1,7 @@
 #!/bin/sh
 # install - install a program, script, or datafile
 
-scriptversion=2011-11-20.07; # UTC
+scriptversion=2009-04-28.21; # UTC
 
 # This originates from X11R5 (mit/util/scripts/install.sh), which was
 # later released in X11R6 (xc/config/util/install.sh) with the
@@ -35,7 +35,7 @@ scriptversion=2011-11-20.07; # UTC
 # FSF changes to this file are in the public domain.
 #
 # Calling this script install-sh is preferred over install.sh, to prevent
-# 'make' implicit rules from creating a file called install from it
+# `make' implicit rules from creating a file called install from it
 # when there is no Makefile.
 #
 # This script is compatible with the BSD install script, but was written
@@ -156,10 +156,6 @@ while test $# -ne 0; do
     -s) stripcmd=$stripprog;;
 
     -t) dst_arg=$2
-	# Protect names problematic for 'test' and other utilities.
-	case $dst_arg in
-	  -* | [=\(\)!]) dst_arg=./$dst_arg;;
-	esac
 	shift;;
 
     -T) no_target_directory=true;;
@@ -190,10 +186,6 @@ if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
     fi
     shift # arg
     dst_arg=$arg
-    # Protect names problematic for 'test' and other utilities.
-    case $dst_arg in
-      -* | [=\(\)!]) dst_arg=./$dst_arg;;
-    esac
   done
 fi
 
@@ -202,17 +194,13 @@ if test $# -eq 0; then
     echo "$0: no input file specified." >&2
     exit 1
   fi
-  # It's OK to call 'install-sh -d' without argument.
+  # It's OK to call `install-sh -d' without argument.
   # This can happen when creating conditional directories.
   exit 0
 fi
 
 if test -z "$dir_arg"; then
-  do_exit='(exit $ret); exit $ret'
-  trap "ret=129; $do_exit" 1
-  trap "ret=130; $do_exit" 2
-  trap "ret=141; $do_exit" 13
-  trap "ret=143; $do_exit" 15
+  trap '(exit $?); exit' 1 2 13 15
 
   # Set umask so as not to create temps with too-generous modes.
   # However, 'strip' requires both read and write access to temps.
@@ -240,9 +228,9 @@ fi
 
 for src
 do
-  # Protect names problematic for 'test' and other utilities.
+  # Protect names starting with `-'.
   case $src in
-    -* | [=\(\)!]) src=./$src;;
+    -*) src=./$src;;
   esac
 
   if test -n "$dir_arg"; then
@@ -264,7 +252,12 @@ do
       echo "$0: no destination specified." >&2
       exit 1
     fi
+
     dst=$dst_arg
+    # Protect names starting with `-'.
+    case $dst in
+      -*) dst=./$dst;;
+    esac
 
     # If destination is a directory, append the input filename; won't work
     # if double slashes aren't ignored.
@@ -354,7 +347,7 @@ do
 	      if test -z "$dir_arg" || {
 		   # Check for POSIX incompatibilities with -m.
 		   # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
-		   # other-writable bit of parent directory when it shouldn't.
+		   # other-writeable bit of parent directory when it shouldn't.
 		   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
 		   ls_ld_tmpdir=`ls -ld "$tmpdir"`
 		   case $ls_ld_tmpdir in
@@ -392,7 +385,7 @@ do
 
       case $dstdir in
 	/*) prefix='/';;
-	[-=\(\)!]*) prefix='./';;
+	-*) prefix='./';;
 	*)  prefix='';;
       esac
 
@@ -410,7 +403,7 @@ do
 
       for d
       do
-	test X"$d" = X && continue
+	test -z "$d" && continue
 
 	prefix=$prefix$d
 	if test -d "$prefix"; then
diff --git a/language/deutsch.txt b/language/deutsch.txt
index 288c9c2..5c114ec 100644
--- a/language/deutsch.txt
+++ b/language/deutsch.txt
@@ -242,7 +242,7 @@ silence_player_help Wenn dieser Menupunkt aktiviert ist, dann werden alle Nachri
 network_master_options Optionen:\n
 prefix_spam_start_color_multiplier_help Prefixe, die Farbcodes enthalten, bekommen ihre Spam-Bewertung mit diesem Wert multipliziert.
 access_level_list_admins_help Minimaler Zugriffslevel, um das /admins-Kommando benutzen zu d�rfen.
-voting_harm_time_help Zeit in Sekunden, die zwischen zwei sch�dlichen Abstimmungen gegen denselben Spieler liegen muss.
+cycle_dist_wall_shrink_help Entfernungsmultiplikator bei der Wandl�ngenberechnung. Genaue Anleitung in settings.cfg.
 access_level_team_help Minimaler Zugriffslevel f�r die Team-Management-Kommandos /lock, /unlock, /invite und /uninvite.
 player_teamchanges_disallowed Sorry, der Administrator hat Teamwechsel verboten.\n
 big_brother_help Wurde die Big-Brother information schon gesendet?
@@ -450,7 +450,7 @@ cycle_sound_speed_help Geschwindigkeit, bei der der Motorton "normal" klingt
 team_name_7_help Name f�r Team 7
 detail_floor_mirror_help Welche Objekte sollen sich im Boden spiegeln?
 game_menu_balance_ais_help Gleiche die Spielerzahl in ungleichen Teams mit Computergesteuerten Spielern aus
-vote_approve_help Damit stimmst Du dem Vorschlag zu.
+screen_zdepth_32_text 32 Bit
 recording_debuglevel_help Niveau der zus�tzlichen Informationen, die zur Fehlersuche in Aufzeichnungen abgelegt werden
 directory_path_null FEHLER: Der angegebene Pfad ist leer.\n
 floor_mirror_help Spiegelung des Bodens
@@ -474,7 +474,7 @@ access_level_op_overpowered 0xff7f7f\1 verweigert,0xffffff du brauchst einen h
 alpha_blend_help Aktiviert Transparenzeffekte
 input_items_unbound Nicht belegt
 player_scoretable_inactive nicht aktiv
-pref_skymove_text Himmelsbewegung:
+suspend_player_text Entferne \1
 input_mess_down_help Scrollt die Nachrichten eine Seite nach unten.
 max_in_rate_help Maximale Netzwerkbandbreite (Eingabe)
 game_menu_mode_text Spielmodus:
@@ -592,7 +592,7 @@ resource_fetcherror FEHLER \1 != 200.\n
 cycle_rubber_wall_shrink_help Bei endlicher Wandl�nge wird der aufgebrauchte Rubber-Vorrat mit diesem Wert multipliziert und das Ergebnis wird von der Wandl�nge abgezogen.
 win_zone_deaths_help Ein Wert von 1 macht es zu eine Todeszone
 sound_menu_quality_off_text Aus
-instant_death_activated Die Todeszone wurde aktiviert! Vermeide sie!\n
+cycle_boost_rim_help Geschwindigkeitsboost, wenn man sich vom Rand l�st
 player_camera_server_custom_help Erlaubt, die vom Server aus einstellbare Kamera auszuw�hlen.
 network_message_denied_inter Der Server hat den Verbindungsversuch abgelehnt.\nDas bedeutet normalerweise, dass er voll ist. Versuche einen anderen Server.
 game_menu_finish_fast_help Das Spiel wird fortgesetzt, bis ein Sieger feststeht, allerdings in Zeitraffer.
@@ -714,7 +714,7 @@ swapmode_glflush_help Die Funktion glFlush() wird zur Synchronisation verwendet.
 player_scoretable_pingcharity Ping-Spende:            
 game_menu_exrad_16meters_help Zerst�rung innerhalb eines Radius von 16 Metern
 help_commands_chat_shortdesc Einfache Chat-Kommandos
-suspend_player_text Entferne \1
+pref_skymove_text Himmelsbewegung:
 gamestate_deleting_grid L�sche Raster...\n
 ladderlog_write_match_winner_help Schreibt in ladderlog.txt: MATCH_WINNER <Gewinner>
 network_message_lateto_title Zeit�berschreitung
@@ -870,6 +870,7 @@ texture_mode_2_help Objekttexturen:
 voting_menu_text Abstimmung
 help_commands_team_shortdesc Kommandos f�r Team-Management
 local_team_help F�gt einen lokalen Account f�r ein ganzes Team hinzu (Team-Tags werden verglichen).
+team_name_violet Team Lila
 timer_hickup Die Systemuhr scheint gerade um \1 Sekunden gesprungen zu sein. Wenn das häufger vorkommt, solltest Du ihre Funktion ueberpruefen.
 gamestate_2minutes_warn Noch zwei Minuten!\n
 team_menu_help L�sst die Spieler ihre Teams w�hlen oder neue erstellen.
@@ -988,13 +989,12 @@ chat_title_text Sage:
 input_cycle_turn_right_help Macht eine scharfe Rechtskurve
 texture_nearest_help Keine Filterung, keine Detail-Levels. Sehr h�sslich. Nur auf ganz langsamen Maschinen brauchbar.
 team_name_black Team Schwarz
-detail_settings_menu Detail
+server_port_help Port, auf dem dieser Server Verbindungen annimmt
 cycle_width_help Breite der Vehikel in der Kollisionserkennung. Man kann sich nur schadlos durch Tunnel quetschen, die schmaler als dieser Wert sind.
 pref_showbrake_help Zeigt den F�llstand des Bremsvorrats in der Statusanzeige
 gamestate_newround_log Neue Runde\n
 player_leaves_team \1 0xff7f7fverl�sst \2.\n
 player_authenticate_text Authentifizierung
-sound_error_initfailed Sound-Initialisierung fehlgeschlagen.\n
 bookmarks_menu_name_help Der Name des Servers. Wird nur f�r die Anzeige verwendet und hat keine Funktion, ist also frei w�hlbar.
 setting_legacy_ignore Die Einstellung \1 (Gruppe: \2) weicht vom Standartwert ab. Clients �lter als Version \3 k�nnten damit Probleme haben.\n
 player_scoretable_alive_yes Ja
@@ -1004,7 +1004,7 @@ player_not_on_team Du bist in keinem Team.\n
 new_team_allowed_help Kann man momentan ein neues Team er�ffnen?
 game_menu_reset_text Neues Match
 screen_fullscreen_text Vollbild:
-screen_zdepth_32_text 32 Bit
+vote_approve_help Damit stimmst Du dem Vorschlag zu.
 game_menu_exrad_8meters_help Zerst�rung innerhalb eines Radius von 8 Metern
 network_host_port_text Server Port
 game_menu_mode_free_text Freistil
@@ -1084,7 +1084,7 @@ rubber_gauge_locx_help Horizontale Position des Rubber-Meters
 sp_walls_stay_up_delay_help Anzahl der Sekunden, die die W�nde noch stehenbleiben, wenn ein Spieler crasht; negative Werte lassen die W�nde ewig stehen.
 player_chat_wait_max_help So lange (in Sekunden) wird maximal auf einen Spieler gewartet, der in einem Menu steckt.
 resource_fetcherror_404 FEHLER 404 : Datei nicht gefunden.\n
-server_port_help Port, auf dem dieser Server Verbindungen annimmt
+detail_settings_menu Detail
 cycle_speed_min_help Minimalgeschwindigkeit der Vehikel im Verh�ltnis zu CYCLE_SPEED
 bug_rip_help Erm�glicht es, durch sehr nahes Fahren am Rand ein Loch in diesen zu reissen.
 fullscreen_help Vollbild oder Fenster?
@@ -1278,7 +1278,7 @@ score_die_help Punktzahl, die man f
 chat_command_accesslevel Dein Zugriffslevel reicht leider nicht aus, um "\1" auszuf�hren. Du bist \2, erforderlich w�re \3.\n
 auto_login_confitem_help Soll sich dieser Spieler automatisch am Server einloggen?
 exit_help Beendet den Serverprozess.
-team_name_violet Team Lila
+misc_fps_text FPS-Anzeige:
 lag_fast_weight_help Gewicht, mit dem Lag-Reports vom Server die schnelle Lag-Messung beeinflussen
 network_opts_deletepw_text Passw�rter l�schen
 input_bank_down_help Dreht die Kamera nach unten (falls das erlaubt ist) oder bewegt sie nach oben
@@ -1464,7 +1464,7 @@ cycle_start_speed_help Startgeschwindigkeit der Vehikel
 cycle_rubber_mindistance_reservoir_help Zusatzwert zu CYCLE_RUBBER_MINDISTANCE, der bei leerem Rubber-Meter voll und zum tragen kommt und mit steigendem F�llstand langsam ausgeblendet wird.
 spam_protection_silenced_default LABER-SCHUTZ: der Administrator hat dir dein Rederecht zur�ckgegeben.
 team_name_gold Team Gold
-cycle_dist_wall_shrink_help Entfernungsmultiplikator bei der Wandl�ngenberechnung. Genaue Anleitung in settings.cfg.
+voting_harm_time_help Zeit in Sekunden, die zwischen zwei sch�dlichen Abstimmungen gegen denselben Spieler liegen muss.
 team_red_8_help Rot-Komponente der Farbe von Team 8
 login_error_blacklist Meldeamt \1 ist auf der schwarzen Liste dieses Servers.
 league_message_greet_lastsep und 
@@ -1551,7 +1551,7 @@ last_fullscreen_help Vollbild oder Fenster, letzte erfolgreiche Einstellung
 game_menu_wz_mr_help Bevor die Siegzone aktiviert wird, muss die aktuelle Runde mindestens so viele Sekunden gedauert haben.
 max_out_rate_help Maximale Netzwerkbandbreite (Ausgabe)
 kick_player_help Dieser Menupunkt schl�gt den anderen Spielern vor, besagten Spieler vom Server zu werfen.
-cycle_boost_rim_help Geschwindigkeitsboost, wenn man sich vom Rand l�st
+instant_death_activated Die Todeszone wurde aktiviert! Vermeide sie!\n
 resource_not_cached Datei \1 befindet sich nicht im lokalen Speicher. Bitte etwas Geduld, sie wird heruntergeladen...\n
 player_camera_smartcam_help Erlaubt, die Smartcam auszuw�hlen. (Eine externe Kamera, die versucht ein m�glichst dramatisches Bild des Geschehens zu liefern)
 lag_o_meter_blend_help Bestimmt, wie stark die Farbe eines Spielers sein Lag-O-Meter beinflusst. Bei 1 wird das Lag-O-Meter ganz wei�, bei 0 nimmt es komplett die Farbe des Spielers an.
@@ -1771,7 +1771,7 @@ testing_version_expired Dies ist eine Testversion, und der Server verwendet eine
 access_level_vote_suspend_help Minimaler Zugriffslevel, um Suspendierungsabstimmungen starten zu d�rfen.
 network_error_shortmessage Benutzer \1 sendet eine unzul�ssige (zu kurze) Nachricht.\n
 player_win_survivor \1 erh�lt als letztes aktives Team \2 Punkte.\n
-misc_fps_text FPS-Anzeige:
+sound_error_initfailed Sound-Initialisierung fehlgeschlagen.\n
 cycle_accel_rim_help Multiplikator f�r CYCLE_ACCEL f�r Arenaw�nde
 auto_team_spec_spam_help Nur wenn der wert 1 ist, werden Zuschauer, die den Server betreten oder verlassen, angek�ndigt. Hat nur einen Effekt, wenn AUTO_TEAM auf 0 steht.
 version_info_misc_stuff \n0xff8888Offizielle Website:0xRESETT http://armagetronad.net/\n0xff8888Offizielles Forum:0xRESETT http://forums.armagetronad.net/\n0xff8888Wiki (Strategie, Turniere, Dokumentation, ...):0xRESETT http://wiki.armagetronad.net/\n0xff8888Projektverwalter:0xRESETT z-man, Tank Program (guru3), Lucifer
diff --git a/language/french.txt b/language/french.txt
index 2c9fc3b..33acd7a 100644
--- a/language/french.txt
+++ b/language/french.txt
@@ -134,6 +134,7 @@ start_fov_help Champs de vision initial
 game_menu_wallslength_1600meter_text 1600m
 sound_buffer_shift_help Multiplicateur de la taille du buffer
 floor_blue_help Couleur du sol ( bleu )
+vote_overflow Sondage refuse, trop de sondages en cours.\n
 vote_timeout Le temps du sondage "\1" est ecoule.\n
 preferences_menu_help Options qui dependent plus de vos preferences personelles que des performances du systeme
 voting_timeout_help votes older than this time out and are rejected.
@@ -251,6 +252,7 @@ input_cycle_turn_left_text Tourner a gauche
 detail_smooth_help Les bords semblent arrondis, en ajoutant un degrade de couleurs aux surfaces. M^me le rendu logiciel n'est pas ralenti avec cela!
 gamestate_done Termine!\n
 nconfig_value_changed \1 a change \2 en \3 dans l'ordre du serveur.\n
+sound_menu_quality_medium_text moyenne
 gamestate_30seconds_warn 30 secondes restantes!\n
 screen_zdepth_desk_help Le Z buffer utilise l profondeur de couleurs; c'est la solution la plus compatible
 input_bank_down_text Vue vers le bas
@@ -327,12 +329,12 @@ network_opts_minport_text Port min.:
 menuitem_toggle_off Off
 network_warn_unknowndescriptor \n\n\nMessage inconnu recu, avec l'ID \1 \n\nVOUS DEVEZ SANS DOUTE METTRE ARMAGETRON A JOUR!!!!\n
 sound_menu_sources_help Donne le nombre approximatif de sources a mixer; regler ceci trop bas donneras des sources sonores importantes, qui s'interrompront sans cesse, une valeur trop elevee utilisera trop de puissance du processeur. 6 semble etre une bonne valeur pour les CPU de faible puissance
+login_storepw_dont_text Pas du tout
 player_camera_initial_free_help Une camera se deplacant librement.
 floor_red_help Couleur du sol ( rouge )
 spam_autokick_help Les "points de spam", qui vous bannissent d'un serveur instantanement.
 gamestate_10minutes_warn Dix minutes restantes!\n
 game_menu_exrad_0_text Aucune
-gamestate_reset_center Remise a zero
 gamestate_resetnow_log Nouveau match\n
 network_killuser Fin de l'utilisateur \1, ping \2.\n
 ingame_menu_exit_help Retourner au jeu!
@@ -367,7 +369,6 @@ player_lose_default \1 perd \2 points pour une raison tres etrange.\n
 network_master_servername Nom du serveur
 win_zone_min_last_death_help Nombre minimum ( en secondes ) depuis le dernier crash avant l'activation de la "Instant Win Zone"
 wait_for_external_script_timeout_help If the server has been paused by WAIT_FOR_EXTERNAL_SCRIPT for more seconds than this, kickstart the game.
-password_help Configurations: mot de passe
 game_menu_shutdown_help Termine le processus du serveur et retourne au menu principal.
 language_menu_item_second_help Si la langue principale n'est pas disponible pour certains textes, \g les affichera dans cette langue-la (ndlr:conseil, laissez English). Gauche/droite pour changer
 player_camera_center_int_help ON = chaque fois que vous tournez, la camera fera face a la nouvelle direction. \nOFF = Vous seul decidez de l'orientation de la camera: celle-ci sera independante de votre direction. Utile si vous voulez utiliser le systeme de vue a la Quake
@@ -699,7 +700,6 @@ game_menu_wallstayup_immediate_help Les murs disparaissent des qu'un joueur se c
 spam_maxlen_help Taille maximale des messages dans le chat
 pref_showenemies_help Affiche combien de joueurs sont encore en vie, vous excepte (le tableau de bord doit etre active)
 welcome_message_vendor Fournisseur du GL: 
-sound_menu_quality_medium_text moyenne
 network_master_start Heberger un jeu
 input_instant_chat_help Publie un macro special pour le chat
 cycle_smooth_threshold_help Seulement les synchronisations qui different de votre position par moins que cela ( en ping x vitesse ) ne souffriront pas de lag, de plus grandes differences seront appliquees immediatement
@@ -713,7 +713,6 @@ sp_teams_max_help Nombre maximum d'equipes
 cycle_boost_team_help Acc�l�ration lorsque vous vous tournez d'un des murs de vos co�quipiers.
 player_mainmenu_help Selectionne le nom du joueur et le mode de controle.
 language_menu_item_fist Langage principale:
-vote_overflow Sondage refuse, trop de sondages en cours.\n
 network_master_status Reception du serveur \1...\n
 sound_menu_buffer_small_help Latency below 0.04s, but high probability of artefacts.
 ladder_lose_percent_on_load_help Pourcentage de votre score dans le top que vous perdez a chaque chargement
@@ -858,6 +857,7 @@ game_menu_exrad_16meters_text 16m
 game_menu_wallslength_25meter_help Les murs sont longs de vingt-cinq metres
 detail_floor_mirror_ow_help Tout ce qui est important dans le jeu
 sound_inited son initialise: 16 bit stereo a \1 Hz, taille du buffer \2.\n
+gamestate_reset_center Remise a zero
 gamestate_champ_center Gagnant(e) du match: \1
 camera_forbid_free_help Interdit l'utilisation de la camera libre pour tout le monde
 network_custjoin_name_text Nom du serveur:
@@ -892,7 +892,6 @@ player_input_text Configuration des touches
 game_menu_autoiq_text QI auto:
 texture_mode_3_help Police:
 team_menu_create Creer une equipe
-login_storepw_dont_text Pas du tout
 player_camera_fov_help Choisissez votre champs de vision prefere.
 game_menu_finish_expr_help Lance le round suivant aussi vite que possible
 network_opts_inrate_help Le nombre maximum de kilo-octets que votre reseau peut recevoir par seconde. 1 pour les modems 9.6K ( seulement un jeu limite est possible), 3 pour les 28.8K ( d'habitude aucun problemes ), 7 pour les 56K, 8 pour l'ISDN, et plus pour les liaisons par cable, (A)DSL et LAN
@@ -999,6 +998,7 @@ detail_floor_mirror_obj_help Tous les objets se deplacant
 vote_approve Approuve
 screen_zdepth_32_text 32 Bits
 player_camera_wobble_text Mouvements de la cam.interne:
+password_help Configurations: mot de passe
 game_menu_finish_expr_text "Express Reset"
 sound_menu_buffer_high_help Latency of about 0.2s, probably no artefacts.
 auto_incam_help Utilise automatiquement la camera interne dans un labyrinthe
diff --git a/language/polish.txt b/language/polish.txt
index ff1ed4b..2563c2e 100644
--- a/language/polish.txt
+++ b/language/polish.txt
@@ -491,7 +491,7 @@ team_name_7_help nazwa druzyny 7
 detail_floor_mirror_help Kr�te obiekty powinny miec swoje odbicie na podlodze?
 game_menu_balance_ais_help Czy wyr�wnac poziom druzyn dodajac mocne AI do slabszej druzyny?
 hud_fastest Najszybszy:
-vote_approve_help Wybierajac te opcje, zaznaczasz, ze zgadzasz sie z ta ankieta.
+screen_zdepth_32_text 32 Bity
 recording_debuglevel_help Poziom dodatkowych informacji, jakie sa nagrywane.
 directory_path_null BLAD: Sciezka jest pusta.\n
 floor_mirror_help Tryb lustra podlogi
@@ -516,7 +516,7 @@ access_level_op_overpowered 0xff7f7f\1 zabronione,0xffffff musisz miec wyzsze pr
 alpha_blend_help Aktywuj p�lprzezroczystosc
 input_items_unbound Nieprzypisane
 player_scoretable_inactive Rozlaczony
-pref_skymove_text Ruch nieba:
+suspend_player_text Zawies \1
 input_mess_down_help Przewija wiadomosci o strone w d�l.
 max_in_rate_help Maksymalna wejsciowa ilosc kb/s.
 game_menu_mode_text Tryb gry:
@@ -639,7 +639,7 @@ resource_fetcherror BLAD: Zwr
 cycle_rubber_wall_shrink_help Przy skonczonej dlugosci scian, zuzyty Rubber jest mnozony przez te wartosc a dlugosc sciany jest zmniejszana o wynik
 win_zone_deaths_help Wartosc = 1 zmienia strefe wygranej w strefe smierci.
 sound_menu_quality_off_text Wyl.
-instant_death_activated Strefa smierci aktywowana! Unikaj jej!\n
+cycle_boost_rim_help Dodatkowe przyspieszenie otrzymywane podczas odjezdzania od sciany krawedzi mapy.
 player_camera_server_custom_help Przyciskajac przelacznik kamery, to pozwoli przelaczyc sie do kamery Meritona.
 network_message_denied_inter Serwer, z kt�rym chciales sie polaczyc nie pozwolil Ci sie zalogowac.\nZazwyczaj oznacza to ze jest juz pelny.
 game_menu_finish_fast_help Gra toczy sie dalej normalnie dop�ki nie ma zwyciezcy, ale w przyspieszonym trybie.
@@ -765,7 +765,7 @@ swapmode_glflush_help Wywoluje funkcje glFlush() do synchronizacji grafiki. Male
 player_scoretable_pingcharity Zr�wnanie Ping'a:
 game_menu_exrad_16meters_help Promien wybuch ma 16 metr�w
 help_commands_chat_shortdesc Podstwawowe komendy
-suspend_player_text Zawies \1
+pref_skymove_text Ruch nieba:
 gamestate_deleting_grid Usuwanie siatki...\n
 ladderlog_write_match_winner_help Wpisuje do rankingu zwyciezce meczu: MATCH_WINNER <zwyciezca>
 network_message_lateto_title Przekroczony limit czasu
@@ -885,7 +885,7 @@ team_allow_shuffle_up_help Jezeli wynosi 1, gracze moga sie przetasowywac do wol
 player_leaving_game \1 0xff7f7fopuscil gre.\n
 input_score_text Wynik
 login_message_delayed Tw�j proces logowania zostal odlozony na p�zniej, poniewaz konfiguracja serwera nie pozwala na logowanie w tle. Serdecznie przeprzszamy.\n
-player_admin_slap_lose \1 zostal spoliczkowany przez administratora i starcil \2 pkt.\n
+detail_floor_2tex_text Podw�jna teksturowana plaszczyzna
 invite_team_unlocked Druzyna \1 jest odblokowana, mozesz do niej dolaczyc bez zadnych przeszk�d.\n
 login_not_supported Niestety, ten serwer nie dopuszcza autentykacji tego typu, co prosiles.\n
 line_antialias_help Aktywuj antyaliasing linii
@@ -932,7 +932,6 @@ voting_menu_text Glosuj
 hud_score Wynik:
 help_commands_team_shortdesc Podstawowe komendy zarzadzania druzyna
 local_team_help Dodaje lokalne konto druzyny (por�wnywane sa taki druzyn).
-team_name_violet Druzyna Fioletowa
 timer_hickup Przeskok zegara o \1 sek. znaleziony i zrekompensowany. Jezeli bedzie sie to zdarzalo czesto, powinienes sprawdzic, czy Tw�j systemowy zegar dziala poprawnie..\n
 gamestate_2minutes_warn Zostaly dwie minuty!\n
 team_menu_help Pozwala graczom zmieniac druzyny i tworzyc nowe.
@@ -1056,12 +1055,13 @@ chat_title_text M
 input_cycle_turn_right_help Wykonuje zwrot w prawo o 90 stopni
 texture_nearest_help Najszybciej, ale najbrzydziej: bez filtrowania ani detali. Nie zalecane.
 team_name_black Druzyna Czarna
-detail_settings_menu Ustawienia detali
+server_port_help Port, na kt�rym nasluchuje serwer
 cycle_width_help Kolizyjna szerokosc tunelu. Jesli cykl wjedzie do tunelu o takiej szerokosci, lub wezszego, odniesie szkody.
 pref_showbrake_help Pokazuje w HUD aktualny stan Twoich hamulc�w.
 gamestate_newround_log Nowa runda\n
 player_leaves_team \1 0xff7f7fopuscil \2.\n
 player_authenticate_text Autentykacja
+sound_error_initfailed Inicjacja dzwieku zakonczona niepowodzeniem.\n
 bookmarks_menu_name_help Nazwa tego serwera. Uzywane tylko do wyswietlenia, nie dla powod�w funkcyjnych.
 setting_legacy_ignore Ustawienie \1 (Group: \2) odstaje od wartosci domyslnej; klienci starsi niz \3 moga miec problemy.\n
 player_scoretable_alive_yes Tak
@@ -1071,7 +1071,7 @@ player_not_on_team Nie jestes druzyna.\n
 new_team_allowed_help Czy tworzenie nowej druzyny jest aktualnie dozwolone?
 game_menu_reset_text Zacznij nowy mecz
 screen_fullscreen_text Pelny Ekran:
-screen_zdepth_32_text 32 Bity
+vote_approve_help Wybierajac te opcje, zaznaczasz, ze zgadzasz sie z ta ankieta.
 game_menu_exrad_8meters_help Promien wybuch ma 8 metr�w
 network_host_port_text Port Serwera:
 game_menu_mode_free_text Freestyle
@@ -1161,7 +1161,7 @@ rubber_gauge_locx_help Polozenie poziome miernika Rubber'a
 sp_walls_stay_up_delay_help Czas w sekundach po jakim znikaja sciany gracza, kt�ry zginal; ujemne wartosci zostawia te sciany na zawsze.
 player_chat_wait_max_help Maksymalny czas w sekundach w jakim czeka sie na pojedynczego gracza, az skonczy rozmawiac.
 resource_fetcherror_404 BLAD: Zwr�cona wartosc 404: File not found.\n
-server_port_help Port, na kt�rym nasluchuje serwer
+detail_settings_menu Ustawienia detali
 cycle_speed_min_help Minimalna predkosc cyklu, mierzona wzgledem CYCLE_SPEED
 bug_rip_help Pozw�l scianom zewnetrznym byc przekraczane przez BARDZO bliskie grindowanie.
 fullscreen_help Pelny ekran, czy gra w oknie?
@@ -1295,7 +1295,7 @@ game_menu_max_teams_text Max. druzyn:
 screen_colordepth_16_text 16 Bit�w
 game_menu_wallstayup_help Czas w jakim sciana zostaje na planszy po jego przegranej
 language_menu_help Wybierz jezyk uzywany przez \g do wyswietlania komunikat�w na ekranie.
-detail_floor_2tex_text Podw�jna teksturowana plaszczyzna
+player_admin_slap_lose \1 zostal spoliczkowany przez administratora i starcil \2 pkt.\n
 team_menu_color_team_ok_help Pozw�l zmieniac prefix/kolor druzyn.
 game_menu_wallstayup_halfsecond_text 1/2s
 pref_sparks_help Swiecace iskry wylatujace z rozbitego pojazdu.
@@ -1363,7 +1363,7 @@ score_die_help Ilosc punkt
 chat_command_accesslevel Niestety, masz za niski poziom dostepu (\2) aby wykonac komende "\1". Potrzebny poziom dostepu to \3.\n
 auto_login_confitem_help Czy ten gracz powinien automatycznie prosic o autentykacje?
 exit_help Zamyka serwer dedykowany i wylacza to okno.
-misc_fps_text Pokaz FPS:
+team_name_violet Druzyna Fioletowa
 player_silenced \10xff7777 zostal wyciszony.\n
 network_opts_deletepw_text Usun hasla
 input_bank_down_help Obraca kamere w d�l lub przesuwa ja do g�ry, jesli jej kierunek jest staly.
@@ -1646,7 +1646,7 @@ last_fullscreen_help Pelny ekran, czy gra w oknie? - ostatnia dzialajaca wartosc
 game_menu_wz_mr_help Minimalny czas rundy w sekundach, po jakim aktywowana jest sterefa natychmiastowej wygranej
 max_out_rate_help Maksymalna wyjsciowa ilosc kb/s.
 kick_player_help Potwierdzenie utworzy ankiete wsr�d graczy na temat wyrzucenia tego gracza z serwera.
-cycle_boost_rim_help Dodatkowe przyspieszenie otrzymywane podczas odjezdzania od sciany krawedzi mapy.
+instant_death_activated Strefa smierci aktywowana! Unikaj jej!\n
 resource_not_cached Plik \1 nie znaleziony. Pobieranie go, prosze czekac...\n
 player_camera_smartcam_help Przyciskajac przelacznik kamery, to pozwoli przelaczyc sie do kamery Sprytnej.
 lag_o_meter_blend_help Kolor Lag-O-Mierza. 1 bialy, 0 kolor gracza.
@@ -1876,7 +1876,7 @@ testing_version_expired Posiadasz za stara testowa wersje Armagetron'a. Serwer,
 access_level_vote_suspend_help Minimalny poziom dostepu potrzebny aby wyslac ankiete o zawieszeniu.
 network_error_shortmessage Wiadomosc uzytkownika \1's byla zbyt kr�tka.\n
 player_win_survivor \1 zostal nagrodzony \2 pkt. za przetrwanie.\n
-sound_error_initfailed Inicjacja dzwieku zakonczona niepowodzeniem.\n
+misc_fps_text Pokaz FPS:
 cycle_accel_rim_help Mnoznik do CYCLE_ACCEL dla stalych scian mapy
 auto_team_spec_spam_help Jesli 0, przyjscie/odejscie obserwatora nie bedzie oznaczane.
 version_info_misc_stuff \n0xff8888Oficjalna strona:0xRESETT http://armagetronad.net/\n0xff8888Oficjalne forum:0xRESETT http://forums.armagetronad.net/\n0xff8888Wiki (strategie, zawody, ...):0xRESETT http://wiki.armagetronad.net/\n0xff8888Administratorzy projektu:0xRESETT z-man, Tank Program (guru3), Lucifer
diff --git a/language/polish_transliterated.txt b/language/polish_transliterated.txt
index 9be0ff6..9236140 100644
--- a/language/polish_transliterated.txt
+++ b/language/polish_transliterated.txt
@@ -491,7 +491,7 @@ team_name_7_help nazwa druzyny 7
 detail_floor_mirror_help Krote obiekty powinny miec swoje odbicie na podlodze?
 game_menu_balance_ais_help Czy wyrownac poziom druzyn dodajac mocne AI do slabszej druzyny?
 hud_fastest Najszybszy:
-vote_approve_help Wybierajac te opcje, zaznaczasz, ze zgadzasz sie z ta ankieta.
+screen_zdepth_32_text 32 Bity
 recording_debuglevel_help Poziom dodatkowych informacji, jakie sa nagrywane.
 directory_path_null BlaD: sciezka jest pusta.\n
 floor_mirror_help Tryb lustra podlogi
@@ -516,7 +516,7 @@ access_level_op_overpowered 0xff7f7f\1 zabronione,0xffffff musisz miec wyzsze pr
 alpha_blend_help Aktywuj polprzezroczystosc
 input_items_unbound Nieprzypisane
 player_scoretable_inactive Rozlaczony
-pref_skymove_text Ruch nieba:
+suspend_player_text Zawies \1
 input_mess_down_help Przewija wiadomosci o strone w dol.
 max_in_rate_help Maksymalna wejsciowa ilosc kb/s.
 game_menu_mode_text Tryb gry:
@@ -639,7 +639,7 @@ resource_fetcherror BlaD: Zwrocona wartosc \1 != 200.\n
 cycle_rubber_wall_shrink_help Przy skonczonej dlugosci scian, zuzyty Rubber jest mnozony przez te wartosc a dlugosc sciany jest zmniejszana o wynik
 win_zone_deaths_help Wartosc = 1 zmienia strefe wygranej w strefe smierci.
 sound_menu_quality_off_text Wyl.
-instant_death_activated Strefa smierci aktywowana! Unikaj jej!\n
+cycle_boost_rim_help Dodatkowe przyspieszenie otrzymywane podczas odjezdzania od sciany krawedzi mapy.
 player_camera_server_custom_help Przyciskajac przelacznik kamery, to pozwoli przelaczyc sie do kamery Meritona.
 network_message_denied_inter Serwer, z ktorym chciales sie polaczyc nie pozwolil Ci sie zalogowac.\nZazwyczaj oznacza to ze jest juz pelny.
 game_menu_finish_fast_help Gra toczy sie dalej normalnie dopoki nie ma zwyciezcy, ale w przyspieszonym trybie.
@@ -765,7 +765,7 @@ swapmode_glflush_help Wywoluje funkcje glFlush() do synchronizacji grafiki. Male
 player_scoretable_pingcharity Zrownanie Ping'a:
 game_menu_exrad_16meters_help Promien wybuch ma 16 metrow
 help_commands_chat_shortdesc Podstwawowe komendy
-suspend_player_text Zawies \1
+pref_skymove_text Ruch nieba:
 gamestate_deleting_grid Usuwanie siatki...\n
 ladderlog_write_match_winner_help Wpisuje do rankingu zwyciezce meczu: MATCH_WINNER <zwyciezca>
 network_message_lateto_title Przekroczony limit czasu
@@ -884,7 +884,7 @@ team_allow_shuffle_up_help Jezeli wynosi 1, gracze moga sie przetasowywac do wol
 player_leaving_game \1 0xff7f7fopuscil gre.\n
 input_score_text Wynik
 login_message_delayed Twoj proces logowania zostal odlozony na pozniej, poniewaz konfiguracja serwera nie pozwala na logowanie w tle. Serdecznie przeprzszamy.\n
-player_admin_slap_lose \1 zostal spoliczkowany przez administratora i starcil \2 pkt.\n
+detail_floor_2tex_text Podwojna teksturowana plaszczyzna
 invite_team_unlocked Druzyna \1 jest odblokowana, mozesz do niej dolaczyc bez zadnych przeszkod.\n
 login_not_supported Niestety, ten serwer nie dopuszcza autentykacji tego typu, co prosiles.\n
 line_antialias_help Aktywuj antyaliasing linii
@@ -931,7 +931,6 @@ voting_menu_text Glosuj
 hud_score Wynik:
 help_commands_team_shortdesc Podstawowe komendy zarzadzania druzyna
 local_team_help Dodaje lokalne konto druzyny (porownywane sa taki druzyn).
-team_name_violet Druzyna Fioletowa
 timer_hickup Przeskok zegara o \1 sek. znaleziony i zrekompensowany. Jezeli bedzie sie to zdarzalo czesto, powinienes sprawdzic, czy Twoj systemowy zegar dziala poprawnie..\n
 gamestate_2minutes_warn Zostaly dwie minuty!\n
 team_menu_help Pozwala graczom zmieniac druzyny i tworzyc nowe.
@@ -1055,12 +1054,13 @@ chat_title_text Mow:
 input_cycle_turn_right_help Wykonuje zwrot w prawo o 90 stopni
 texture_nearest_help Najszybciej, ale najbrzydziej: bez filtrowania ani detali. Nie zalecane.
 team_name_black Druzyna Czarna
-detail_settings_menu Ustawienia detali
+server_port_help Port, na ktorym nasluchuje serwer
 cycle_width_help Kolizyjna szerokosc tunelu. Jesli cykl wjedzie do tunelu o takiej szerokosci, lub wezszego, odniesie szkody.
 pref_showbrake_help Pokazuje w HUD aktualny stan Twoich hamulcow.
 gamestate_newround_log Nowa runda\n
 player_leaves_team \1 0xff7f7fopuscil \2.\n
 player_authenticate_text Autentykacja
+sound_error_initfailed Inicjacja dzwieku zakonczona niepowodzeniem.\n
 bookmarks_menu_name_help Nazwa tego serwera. Uzywane tylko do wyswietlenia, nie dla powodow funkcyjnych.
 setting_legacy_ignore Ustawienie \1 (Group: \2) odstaje od wartosci domyslnej; klienci starsi niz \3 moga miec problemy.\n
 player_scoretable_alive_yes Tak
@@ -1070,7 +1070,7 @@ player_not_on_team Nie jestes druzyna.\n
 new_team_allowed_help Czy tworzenie nowej druzyny jest aktualnie dozwolone?
 game_menu_reset_text Zacznij nowy mecz
 screen_fullscreen_text Pelny Ekran:
-screen_zdepth_32_text 32 Bity
+vote_approve_help Wybierajac te opcje, zaznaczasz, ze zgadzasz sie z ta ankieta.
 game_menu_exrad_8meters_help Promien wybuch ma 8 metrow
 network_host_port_text Port Serwera:
 game_menu_mode_free_text Freestyle
@@ -1160,7 +1160,7 @@ rubber_gauge_locx_help Polozenie poziome miernika Rubber'a
 sp_walls_stay_up_delay_help Czas w sekundach po jakim znikaja sciany gracza, ktory zginal; ujemne wartosci zostawia te sciany na zawsze.
 player_chat_wait_max_help Maksymalny czas w sekundach w jakim czeka sie na pojedynczego gracza, az skonczy rozmawiac.
 resource_fetcherror_404 BlaD: Zwrocona wartosc 404: File not found.\n
-server_port_help Port, na ktorym nasluchuje serwer
+detail_settings_menu Ustawienia detali
 cycle_speed_min_help Minimalna predkosc cyklu, mierzona wzgledem CYCLE_SPEED
 bug_rip_help Pozwol scianom zewnetrznym byc przekraczane przez BARDZO bliskie grindowanie.bug_tunnel_help              Pozwol graczom przejezdzac przez sciany w dziwnych przypadkach.
 fullscreen_help Pelny ekran, czy gra w oknie?
@@ -1294,7 +1294,7 @@ game_menu_max_teams_text Max. druzyn:
 screen_colordepth_16_text 16 Bitow
 game_menu_wallstayup_help Czas w jakim sciana zostaje na planszy po jego przegranej
 language_menu_help Wybierz jezyk uzywany przez \g do wyswietlania komunikatow na ekranie.
-detail_floor_2tex_text Podwojna teksturowana plaszczyzna
+player_admin_slap_lose \1 zostal spoliczkowany przez administratora i starcil \2 pkt.\n
 team_menu_color_team_ok_help Pozwol zmieniac prefix/kolor druzyn.
 game_menu_wallstayup_halfsecond_text 1/2s
 pref_sparks_help swiecace iskry wylatujace z rozbitego pojazdu.
@@ -1362,7 +1362,7 @@ score_die_help Ilosc punktow, jaka zdobywasz za smierc
 chat_command_accesslevel Niestety, masz za niski poziom dostepu (\2) aby wykonac komende "\1". Potrzebny poziom dostepu to \3.\n
 auto_login_confitem_help Czy ten gracz powinien automatycznie prosic o autentykacje?
 exit_help Zamyka serwer dedykowany i wylacza to okno.
-misc_fps_text Pokaz FPS:
+team_name_violet Druzyna Fioletowa
 player_silenced \10xff7777 zostal wyciszony.\n
 network_opts_deletepw_text Usun hasla
 input_bank_down_help Obraca kamere w dol lub przesuwa ja do gory, jesli jej kierunek jest staly.
@@ -1645,7 +1645,7 @@ last_fullscreen_help Pelny ekran, czy gra w oknie? - ostatnia dzialajaca wartosc
 game_menu_wz_mr_help Minimalny czas rundy w sekundach, po jakim aktywowana jest sterefa natychmiastowej wygranej
 max_out_rate_help Maksymalna wyjsciowa ilosc kb/s.
 kick_player_help Potwierdzenie utworzy ankiete wsrod graczy na temat wyrzucenia tego gracza z serwera.
-cycle_boost_rim_help Dodatkowe przyspieszenie otrzymywane podczas odjezdzania od sciany krawedzi mapy.
+instant_death_activated Strefa smierci aktywowana! Unikaj jej!\n
 resource_not_cached Plik \1 nie znaleziony. Pobieranie go, prosze czekac...\n
 player_camera_smartcam_help Przyciskajac przelacznik kamery, to pozwoli przelaczyc sie do kamery Sprytnej.
 lag_o_meter_blend_help Kolor Lag-O-Mierza. 1 bialy, 0 kolor gracza.
@@ -1875,7 +1875,7 @@ testing_version_expired Posiadasz za stara testowa wersje Armagetron'a. Serwer,
 access_level_vote_suspend_help Minimalny poziom dostepu potrzebny aby wyslac ankiete o zawieszeniu.
 network_error_shortmessage Wiadomosc uzytkownika \1's byla zbyt krotka.\n
 player_win_survivor \1 zostal nagrodzony \2 pkt. za przetrwanie.\n
-sound_error_initfailed Inicjacja dzwieku zakonczona niepowodzeniem.\n
+misc_fps_text Pokaz FPS:
 cycle_accel_rim_help Mnoznik do CYCLE_ACCEL dla stalych scian mapy
 auto_team_spec_spam_help Jesli 0, przyjscie/odejscie obserwatora nie bedzie oznaczane.
 version_info_misc_stuff \n0xff8888Oficjalna strona:0xRESETT http://armagetronad.net/\n0xff8888Oficjalne forum:0xRESETT http://forums.armagetronad.net/\n0xff8888Wiki (strategie, zawody, ...):0xRESETT http://wiki.armagetronad.net/\n0xff8888Administratorzy projektu:0xRESETT z-man, Tank Program (guru3), Lucifer
diff --git a/language/spanish.txt b/language/spanish.txt
index 7b6d896..e2ac538 100644
--- a/language/spanish.txt
+++ b/language/spanish.txt
@@ -55,13 +55,12 @@ tweaks_infinity_help Algunos planos (cielo, suelo, etc.) tienen una prolongaci
 vote_submitted Votaci�n "\2" iniciada por \1.\n
 min_players_help N�mero m�nimo de jugadores
 camera_custom_back_fromspeed_help Este valor se multiplica por la velocidad actual y se a�ade a CAMERA_CUSTOM_BACK.
-instant_death_activated Activada la Zona de la Muerte! Ev�tala!\n
 finish_type_help Qu� ocurre cuando el ultimo humano esta muerto?
 highscore_description mejores puntuaciones personales
 spam_protection_repeat PROTECCION CONTRA SPAM: ya dijiste: \1\n
 network_custjoin_port_help Puerto de red que el servidor utilizar�; debe coincidir con la opci�n correspondiente puesta en el servidor que quieres conectarte
 game_menu_wallslength_2400meter_text 2400m
-network_message_abortconn_title Conexi�n terminada
+network_master_downgrage el servidor est� desactualizado
 league_message_greet_sep ,
 gamestate_wait_players_con Esperando a jugadores reales (conectados solo espectadores)...\n
 ping_flood_time_100_help Tiempo m�nimo para que lleguen 100 paquetes de ping de una m�quina.
@@ -104,6 +103,7 @@ input_cycle_turn_left_help Realiza un giro de 90 grados hacia la izquierda
 login_username Nombre de usuario
 team_name_ugly Equipo feo
 limit_rounds_help Finalizar la partida tras este n�mero de rondas
+network_login_done Hecho!\n
 player_scoretable_inactive Desconectado
 welcome_message_version GL Version  : 
 team_owned_by equipo de \1
@@ -161,6 +161,7 @@ fast_forward_maxstep_real_help Fracci
 game_menu_wallslength_1600meter_text 1600m
 sound_buffer_shift_help Multiplicador del tama�o del buffer
 floor_blue_help Color del suelo (componente azul)
+vote_overflow Votaci�n rechazada, demasiadas votaciones pendientes.\n
 filter_color_names_help Filtrar los c�digos de color de los nombre de los jugadores.
 vote_timeout La votaci�n "\1" expir�.\n
 team_max_imbalance_perm_help Desequilibrio m�ximo y permanente autorizado por equipo
@@ -278,6 +279,7 @@ ban_list_help Imprime una lista de las IPs baneadas actualmente.
 last_check_errors_help ver errores cuando un modo de v�deo no existe, �ltima inicializacion correcta
 network_opts_maxport_help Puerto de red m�ximo que es escaneado al realizar la b�squeda de un servidor en una LAN
 detail_floor_mirror_text Reflejos del suelo:
+sound_menu_help Configuraci�n de la calidad del sonido.
 ladder_message_stay_top y permanece en la primera posici�n.
 gamestate_chat_wait Esperando hasta \2 segundos para que \1 finalice de chatear.\n
 gamestate_wait_players Esperando a jugadores reales...\n
@@ -300,7 +302,6 @@ zdepth_help Profundidad del buffer Z (0: 16 bits 1: como la profundidad de color
 size_factor_help Modificador del tama�o de la arena
 game_menu_wallstayup_infinite_help Los muros siempre est�n levantados
 input_toggle_spectator_text Cambiar a Espectador
-network_kill_full El servidor est� lleno.
 network_autoban_factor_help Autobanear jugadores por NETWORK_AUTOBAN_FACTOR * ( kph - NETWORK_AUTOBAN_OFFSET ) minutos cuando sean expulsados; kph es el n�mero medio de expulsiones por hora.
 texture_mode_1_help Texturas de los muros:
 cycle_speed_decay_above_help Ratio de la velocidad de moto al cual se acerca al valor CYCLE_SPEED desde velocidades superiores
@@ -309,6 +310,7 @@ player_chat_wait_single_help Poner a 1 si s
 bookmarks_menu_edit_help Editar y a�adir servidores favoritos.
 gamestate_done hecho!\n
 vote_disabled_spectator Votaci�n rechazada, deshabilitado para los espectadores por el admin del servidor.\n
+sound_menu_quality_medium_text Media
 gamestate_30seconds_warn Quedan 30 segundos!\n
 screen_zdepth_desk_help La profundidad del buffer Z seg�n la profundidad del color; esta es la opci�n mas compatible
 cycle_rubber_help Distancia m�nima permitida de conducci�n cerca de un muro.
@@ -399,6 +401,7 @@ network_opts_minport_text Puerto m
 menuitem_toggle_off Desactivado
 network_warn_unknowndescriptor \n\n\nrecibido el nMessage desconocido con id \1 \n\nPROBABLEMENTE DEBAS ACTUALIZAR ARMAGETRON!!!!\n
 sound_menu_sources_help Da el n�mero aproximado de fuentes de sonido que se mezclar�n; un valor muy bajo provocar� que las fuentes se entrecorten, valores muy altos consumir�n mucho tiempo de procesador. 6 podr�a ser un buen valor para equipos de poca potencia.
+network_message_abortconn_title Conexi�n terminada
 player_camera_initial_free_help Una c�mara que se desplaza libremente.
 floor_red_help Color del suelo (componente roja)
 spam_autokick_help Los puntos de spam que provocan la expulsi�n inmediata de un servidor.
@@ -447,7 +450,6 @@ allow_imposters_help Si vale 1, se tolera jugadores con nombres id
 network_master_servername Nombre del servidor
 win_zone_min_last_death_help N�mero m�nimo (en segundos) desde la �ltima muerte antes de la activaci�n de la Zona de Victoria Instant�nea
 vote_approve Aprobar
-password_help Configuraci�n de contrase�a
 setting_legacy_change_blocked La configuraci�n \1 (Grupo: \2) no se puede cambiar ahora; clientes m�s antiguos que \3 est�n conectados.\n
 game_menu_shutdown_help Finaliza el proceso del servidor y vuelve al men� principal.
 language_menu_item_second_help Si el idioma principal no est� disponible para ciertos textos, \g los mostrar� en el segundo idioma (o en ingl�s como �ltimo recurso). Utiliza las flechas izquierda/derecha para cambiarlo
@@ -548,7 +550,6 @@ network_opts_help Configurar las preferencias de red.
 game_menu_wallslength_800meter_text 800m
 moviepack_floor_green_help Color del suelo (componente verde)
 detail_floor_tex_help Se muestra un plano infinito, con la estructura de rejilla pintada en �l. Recomendado para los usuarios de tarjetas 3D. Problema: mirando al horizonte, la rejilla pierde nitidez demasiado r�pido.
-network_ban_kph Las expulsiones por hora de la IP \1 son ahora de \2.\n
 input_look_right_text Vista hacia la derecha
 sound_menu_sources_text Fuentes de sonido:
 allow_cam_help Permitir/prohibir los diferentes modos de c�mara
@@ -582,13 +583,13 @@ max_out_rate_help Transferencia m
 kick_player_help Pulsando intro o espacio en este men� lanzar� un voto de expulsi�n contra este jugador.
 sp_team_max_players_help N�mero m�ximo de jugadores por equipo
 player_kill_collapse \1 fue suprimido al derrumbarse su zona.\n
-instant_win_activated Activada la Zona de Victoria Instant�nea! Entra para ganar la ronda.\n
 menuitem_accept_help Acepta las configuraciones en este men� y contin�a.
 game_menu_exrad_0_help Sin destrucci�n
 team_name_red Equipo rojo
 resource_not_cached \1 no se encontr� en la cach�. Descarg�ndolo, un momento por favor...\n
 gamestate_reset_console Inicializando puntuaciones y comenzando una nueva partida despu�s de esta ronda.\n
 pref_sparks_text Chispas:
+login_storepw_dont_text Ninguna
 sp_ais_help N�mero de bots en modo de juego local
 player_camera_smartcam_help Cuando se pulsa la tecla de cambio de c�mara, se permite cambiar a la c�mara inteligente (una c�mara externa que intenta adivinar que perspectiva de tu moto es la m�s �til).
 screen_colordepth_desk_text Por defecto
@@ -770,12 +771,10 @@ texture_menuitem_help Cambia el modo de texturizado; nota como afecta al fondo d
 system_settings_menu_text Configuraci�n del sistema
 last_fullscreen_help Pantalla completa o modo ventana, �ltima inicializaci�n correcta
 camera_forbid_smart_help Proh�be el uso de la c�mara interna para todos los clientes
-network_master_downgrage el servidor est� desactualizado
 detail_smooth_text Smooth Shading:
 pref_highrim_text Paredes altas:
 sound_menu_buffer_text Tama�o del buffer:
 swap_mode_help Determina la funci�n usada para sincronizar gr�ficos y entradas. 0: ninguna, 1: glFlush(), 2: glFinish().
-network_login_done Hecho!\n
 cm_locy_help Posici�n vertical de los mensajes centrales
 allow_enemies_same_ip_help Si vale 1, permite que dos jugadores que aparentemente utilizan la misma m�quina luchen por puntos con cada otro.
 camera_in_turn_speed_help Velocodad a la que gira la c�mara interna
@@ -786,7 +785,6 @@ player_camera_initial_smrt_text Inteligente
 vote_reject Rechazar
 main_menu_exit_help Hasta la vista!
 player_scoretable_score Punt:
-vote_vote_against \1 vota en contra de la votaci�n "\2".\n
 network_host_host_text Servir juego en red
 player_camera_initial_int_help Vista desde dentro de tu moto.
 network_ban Los jugadores de la IP \1 est�n baneados durante \2 minutos. Raz�n: \3\n
@@ -846,7 +844,6 @@ config_file_write_error No se pudo escribir el archivo de configuraci
 white_sparks_help Dibuja las chispas en blanco (en vez de los colores de las motos).
 game_menu_wallstayup_halfsecond_text 1/2s
 pref_sparks_help Chispas que aparecen cuando conduces bastante cerca de un muro.
-sound_menu_help Configuraci�n de la calidad del sonido.
 detail_settings_menu_help Te permite ajustar los detalles gr�ficos dependiendo del rendimiento de tu sistema
 sp_team_balance_on_quit_help Equilibrar equipos cuando un jugador abandone?
 cycle_accel_self_help Multiplicador de CYCLE_ACCEL de tu propio muro
@@ -870,7 +867,7 @@ game_menu_wallstayup_immediate_help Los muros desaparecen inmediatamente
 spam_maxlen_help Longitud m�xima de los mensajes en el chat.
 pref_showenemies_help Muestra cu�ntos jugadores a�n est�n vivos, excluy�ndote a ti (el HUD debe estar activo)
 welcome_message_vendor GL Vendor   : 
-sound_menu_quality_medium_text Media
+vote_vote_against \1 vota en contra de la votaci�n "\2".\n
 network_master_start Servir juego
 input_instant_chat_help Activa una macro r�pida de chat
 server_options_help Corta descripci�n de las opciones en este servidor
@@ -886,7 +883,6 @@ sp_teams_max_help N
 player_mainmenu_help Selecciona el nombre del jugador y el modo de control.
 sound_menu_buffer_vsmall_text Muy peque�o
 language_menu_item_fist Idioma principal:
-vote_overflow Votaci�n rechazada, demasiadas votaciones pendientes.\n
 team_menu_player_help Permite a este jugador tomar decisiones relacionadas con el equipo
 sound_menu_buffer_small_help Latencia menor de 0.04s, con alta probabilidad de errores de precisi�n.
 rim_wall_stretch_x_help Extensi�n de la textura del muro exterior en la direcci�n horizontal
@@ -1061,7 +1057,7 @@ input_screenshot_help Realiza una captura de pantalla y la guarda en screenshot_
 input_pause_game_text Pausar juego
 gamestate_5minutes_warn Quedan cinco minutos!\n
 gamestate_minute_warn Queda un minuto!\n
-network_message_denied_inter2 El servidor al que quer�as conectar deneg� tu intento de acceso.
+instant_win_activated Activada la Zona de Victoria Instant�nea! Entra para ganar la ronda.\n
 setting_legacy_behavior_visual_help Comportamiento por defecto para configuraciones que s�lo afectan la visualizaci�n del estado y efectos visuales, no la f�sica del juego. Ejemplo: CYCLE_RUBBER_* (el cliente muestra el medidor de rubber, pero no se usa para nada).
 login_storepw_text Almacenar contrase�as:
 game_menu_exrad_16meters_text 16m
@@ -1078,15 +1074,14 @@ login_password_help Escribe tu contrase
 min_voters_help N�mero de votantes conectados necesarios para realizar una votaci�n.
 input_instant_chat_text Instant Chat \1
 check_errors_help Ver errores cuando un modo de v�deo no existe
-login_storepw_dont_text Ninguna
 sound_sources_help N�mero de fuentes de sonido audibles al mismo tiempo
 pref_showfastest_text Mostrar el + r�pido:
 brake_gauge_locx_help Posici�n horizontal del medidor de freno
 input_chat_text Chat
 max_clients_help N�mero m�ximo de clientes que se aceptan
 player_joins_team_start \1 0x7fff7flucha por \2.\n
-network_master_host_lan_help Iniciar� un juego en red que s�lo es visible desde tu LAN.
-player_name_text Nombre:
+instant_death_activated Activada la Zona de la Muerte! Ev�tala!\n
+display_settings_menu Configuraci�n de visualizaci�n
 cycle_invulnerable_time_help Tiempo en segundos que una moto es invulnerable tras un respawn.
 poly_antialias_help Activar antialiasing de pol�gonos
 last_colordepth_help Profundidad de color, �ltima inicializaci�n correcta
@@ -1115,6 +1110,7 @@ enemy_chatbot_penalty_help Penalizaci
 player_camera_fov_help Elige tu campo de visi�n favorito.
 game_menu_finish_expr_help Inicia la ronda siguiente lo m�s r�pido posible
 network_opts_inrate_help El n�mero m�ximo de kilobytes que tu red puede recibir por segundo. 1 para los modem de 9.6K (s�lo un juego de tipo limitado es posible), 3 para los de 28.8K (normalmente sin problemas), 7 para los de 56K, 8 para RDSI, y m�s para conexiones con cable-modem, (A)DSL o LAN
+network_ban_kph Las expulsiones por hora de la IP \1 son ahora de \2.\n
 floor_mirror_help El suelo refleja como un espejo
 network_opts_predict_help En un juego en red, extrapola el desplazamiento de las motos. Desactiv�ndolo los gr�ficos ser�n m�s fluidos, activ�ndolo dar� una mejor idea de la situacion; el lag�metro es un buen sustituto para la predicci�n. Siempre est� desactivado en el modo servidor
 history_size_chat_help N�mero de l�neas que parmanecen en el hist�rico del chat.
@@ -1148,6 +1144,7 @@ network_autoban_offset_help Autobanear jugadores por NETWORK_AUTOBAN_FACTOR * (
 resource_downloading Descargando \1 ...\n
 misc_fps_text Mostrar FPS:
 cycle_accel_rim_help Multiplicador de CYCLE_ACCEL para los muros externos de la arena
+network_message_denied_inter2 El servidor al que quer�as conectar deneg� tu intento de acceso.
 armagetron_windowsize_help Tama�o de la ventana
 exit_help Detener el servidor dedicado y abandonar
 team_menu_join Unirse a \1
@@ -1223,6 +1220,7 @@ menuitem_toggle_on Activado
 start_cam_help C�mara inicial
 nconfig_error_unknown Mensaje recibido para configuraci�n desconocida \1\n\n\n\nPROBABLEMENTE DEBERIAS ACTUALIZAR ARMAGETRON ADVANCED!!!\n
 player_camera_initial_ext_help Una c�mara externa fija.
+network_kill_full El servidor est� lleno.
 vote_redundant Votaci�n rechazada, ya se ha pedido una votaci�n.\n
 network_spectator_time_help Si se coloca a mayor que cero, �ste es el tiempo m�ximo en segundos que un cliente sin jugadores es tolerado.
 network_message_lateto_inter La conexi�n al servidor se inici� correctamente; sin embargo, fall� la sincronizaci�n del estado del juego.\nInt�ntalo de nuevo!
@@ -1231,6 +1229,7 @@ pref_showhud_text Mostrar HUD:
 detail_persp_help La mayor�a de los renderers ignoran esto. Si se desactiva, las texturas del suelo y paredes se mostrar�n deformes.
 spam_protection_vote_help Factor adicional del SPAM_PROTECTION para los votos.
 cycle_sound_speed_help Velocidad del sonido.
+player_name_text Nombre:
 screen_mode_menu Modo de pantalla
 input_glance_right_help Gira temporalmente la c�mara hacia la derecha.
 screen_apply_changes_help Intenta aplicar las modificaciones sin abandonar \g. Util�zalo bajo tu responsabilidad!
@@ -1247,6 +1246,7 @@ detail_floor_mirror_obj_help Todos los objetos que se mueven
 preferences_menu_help Opciones personales que no dependen del rendimiento del sistema.
 screen_zdepth_32_text 32 bits
 player_camera_wobble_text Movimiento cam.interna:
+password_help Configuraci�n de contrase�a
 recording_debuglevel_help Nivel de informaci�n adicional en el archivo de grabaci�n
 sound_menu_buffer_high_help Latencia de aproximadamente 0.2s, probablemente sin errores de precisi�n.
 auto_incam_help Cambiar autom�ticamente a la c�mara interna en un laberinto
@@ -1272,6 +1272,7 @@ sound_menu_buffer_med_text Normal
 sp_win_zone_min_round_time_help N�mero m�nimo (en segundos) a partir del cual la Zona de Victoria Instant�nea se activa
 sparks_help Dibuja chispas cuando una moto circula demasiado cerca de un muro
 max_votes_help N�mero m�ximo de votos totales que pueden estar activos en un determinado momento.
+network_master_host_lan_help Iniciar� un juego en red que s�lo es visible desde tu LAN.
 game_menu_exrad_2meters_text 2m
 bug_color_overflow_help Permite diferentes colores para la moto y los muros cuando los colores del jugador sobrepasen los l�mites.
 detail_lineantialias_help Las l�neas se suavizar�n para evitar el efecto de diente de sierra?
@@ -1283,6 +1284,5 @@ voting_menu_help Votar asuntos pendientes
 network_master_users Usuarios
 console_columns_help N�mero de caracteres en cada l�nea de la salida de la consola
 cycle_rubber_speed_help Velocidad logar�tmica de la aproximaci�n del muro (cada segundo, te acercas al muro por un factor de ~0.4^{este valor} ).
-display_settings_menu Configuraci�n de visualizaci�n
 login_request_failed Acceso fallido. Int�ntalo de nuevo!
 explosion_radius_help Radio de la onda de explosi�n
diff --git a/missing b/missing
index db98974..28055d2 100755
--- a/missing
+++ b/missing
@@ -1,10 +1,11 @@
 #! /bin/sh
-# Common wrapper for a few potentially missing GNU programs.
+# Common stub for a few missing GNU programs while installing.
 
-scriptversion=2013-10-28.13; # UTC
+scriptversion=2009-04-28.21; # UTC
 
-# Copyright (C) 1996-2013 Free Software Foundation, Inc.
-# Originally written by Fran,cois Pinard <pinard at iro.umontreal.ca>, 1996.
+# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
+# 2008, 2009 Free Software Foundation, Inc.
+# Originally by Fran,cois Pinard <pinard at iro.umontreal.ca>, 1996.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -25,40 +26,69 @@ scriptversion=2013-10-28.13; # UTC
 # the same distribution terms that you use for the rest of that program.
 
 if test $# -eq 0; then
-  echo 1>&2 "Try '$0 --help' for more information"
+  echo 1>&2 "Try \`$0 --help' for more information"
   exit 1
 fi
 
-case $1 in
+run=:
+sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p'
+sed_minuso='s/.* -o \([^ ]*\).*/\1/p'
 
-  --is-lightweight)
-    # Used by our autoconf macros to check whether the available missing
-    # script is modern enough.
-    exit 0
-    ;;
+# In the cases where this matters, `missing' is being run in the
+# srcdir already.
+if test -f configure.ac; then
+  configure_ac=configure.ac
+else
+  configure_ac=configure.in
+fi
 
-  --run)
-    # Back-compat with the calling convention used by older automake.
-    shift
-    ;;
+msg="missing on your system"
+
+case $1 in
+--run)
+  # Try to run requested program, and just exit if it succeeds.
+  run=
+  shift
+  "$@" && exit 0
+  # Exit code 63 means version mismatch.  This often happens
+  # when the user try to use an ancient version of a tool on
+  # a file that requires a minimum version.  In this case we
+  # we should proceed has if the program had been absent, or
+  # if --run hadn't been passed.
+  if test $? = 63; then
+    run=:
+    msg="probably too old"
+  fi
+  ;;
 
   -h|--h|--he|--hel|--help)
     echo "\
 $0 [OPTION]... PROGRAM [ARGUMENT]...
 
-Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due
-to PROGRAM being missing or too old.
+Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
+error status if there is no known handling for PROGRAM.
 
 Options:
   -h, --help      display this help and exit
   -v, --version   output version information and exit
+  --run           try to run the given command, and emulate it if it fails
 
 Supported PROGRAM values:
-  aclocal   autoconf  autoheader   autom4te  automake  makeinfo
-  bison     yacc      flex         lex       help2man
+  aclocal      touch file \`aclocal.m4'
+  autoconf     touch file \`configure'
+  autoheader   touch file \`config.h.in'
+  autom4te     touch the output file, or create a stub one
+  automake     touch all \`Makefile.in' files
+  bison        create \`y.tab.[ch]', if possible, from existing .[ch]
+  flex         create \`lex.yy.c', if possible, from existing .c
+  help2man     touch the output file
+  lex          create \`lex.yy.c', if possible, from existing .c
+  makeinfo     touch the output file
+  tar          try tar, gnutar, gtar, then tar without non-portable flags
+  yacc         create \`y.tab.[ch]', if possible, from existing .[ch]
 
-Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
-'g' are ignored when checking the name.
+Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and
+\`g' are ignored when checking the name.
 
 Send bug reports to <bug-automake at gnu.org>."
     exit $?
@@ -70,141 +100,272 @@ Send bug reports to <bug-automake at gnu.org>."
     ;;
 
   -*)
-    echo 1>&2 "$0: unknown '$1' option"
-    echo 1>&2 "Try '$0 --help' for more information"
+    echo 1>&2 "$0: Unknown \`$1' option"
+    echo 1>&2 "Try \`$0 --help' for more information"
     exit 1
     ;;
 
 esac
 
-# Run the given program, remember its exit status.
-"$@"; st=$?
-
-# If it succeeded, we are done.
-test $st -eq 0 && exit 0
-
-# Also exit now if we it failed (or wasn't found), and '--version' was
-# passed; such an option is passed most likely to detect whether the
-# program is present and works.
-case $2 in --version|--help) exit $st;; esac
-
-# Exit code 63 means version mismatch.  This often happens when the user
-# tries to use an ancient version of a tool on a file that requires a
-# minimum version.
-if test $st -eq 63; then
-  msg="probably too old"
-elif test $st -eq 127; then
-  # Program was missing.
-  msg="missing on your system"
-else
-  # Program was found and executed, but failed.  Give up.
-  exit $st
-fi
+# normalize program name to check for.
+program=`echo "$1" | sed '
+  s/^gnu-//; t
+  s/^gnu//; t
+  s/^g//; t'`
+
+# Now exit if we have it, but it failed.  Also exit now if we
+# don't have it and --version was passed (most likely to detect
+# the program).  This is about non-GNU programs, so use $1 not
+# $program.
+case $1 in
+  lex*|yacc*)
+    # Not GNU programs, they don't have --version.
+    ;;
+
+  tar*)
+    if test -n "$run"; then
+       echo 1>&2 "ERROR: \`tar' requires --run"
+       exit 1
+    elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
+       exit 1
+    fi
+    ;;
+
+  *)
+    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
+       # We have it, but it failed.
+       exit 1
+    elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
+       # Could not run --version or --help.  This is probably someone
+       # running `$TOOL --version' or `$TOOL --help' to check whether
+       # $TOOL exists and not knowing $TOOL uses missing.
+       exit 1
+    fi
+    ;;
+esac
+
+# If it does not exist, or fails to run (possibly an outdated version),
+# try to emulate it.
+case $program in
+  aclocal*)
+    echo 1>&2 "\
+WARNING: \`$1' is $msg.  You should only need it if
+         you modified \`acinclude.m4' or \`${configure_ac}'.  You might want
+         to install the \`Automake' and \`Perl' packages.  Grab them from
+         any GNU archive site."
+    touch aclocal.m4
+    ;;
+
+  autoconf*)
+    echo 1>&2 "\
+WARNING: \`$1' is $msg.  You should only need it if
+         you modified \`${configure_ac}'.  You might want to install the
+         \`Autoconf' and \`GNU m4' packages.  Grab them from any GNU
+         archive site."
+    touch configure
+    ;;
+
+  autoheader*)
+    echo 1>&2 "\
+WARNING: \`$1' is $msg.  You should only need it if
+         you modified \`acconfig.h' or \`${configure_ac}'.  You might want
+         to install the \`Autoconf' and \`GNU m4' packages.  Grab them
+         from any GNU archive site."
+    files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
+    test -z "$files" && files="config.h"
+    touch_files=
+    for f in $files; do
+      case $f in
+      *:*) touch_files="$touch_files "`echo "$f" |
+				       sed -e 's/^[^:]*://' -e 's/:.*//'`;;
+      *) touch_files="$touch_files $f.in";;
+      esac
+    done
+    touch $touch_files
+    ;;
+
+  automake*)
+    echo 1>&2 "\
+WARNING: \`$1' is $msg.  You should only need it if
+         you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
+         You might want to install the \`Automake' and \`Perl' packages.
+         Grab them from any GNU archive site."
+    find . -type f -name Makefile.am -print |
+	   sed 's/\.am$/.in/' |
+	   while read f; do touch "$f"; done
+    ;;
+
+  autom4te*)
+    echo 1>&2 "\
+WARNING: \`$1' is needed, but is $msg.
+         You might have modified some files without having the
+         proper tools for further handling them.
+         You can get \`$1' as part of \`Autoconf' from any GNU
+         archive site."
+
+    file=`echo "$*" | sed -n "$sed_output"`
+    test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
+    if test -f "$file"; then
+	touch $file
+    else
+	test -z "$file" || exec >$file
+	echo "#! /bin/sh"
+	echo "# Created by GNU Automake missing as a replacement of"
+	echo "#  $ $@"
+	echo "exit 0"
+	chmod +x $file
+	exit 1
+    fi
+    ;;
+
+  bison*|yacc*)
+    echo 1>&2 "\
+WARNING: \`$1' $msg.  You should only need it if
+         you modified a \`.y' file.  You may need the \`Bison' package
+         in order for those modifications to take effect.  You can get
+         \`Bison' from any GNU archive site."
+    rm -f y.tab.c y.tab.h
+    if test $# -ne 1; then
+        eval LASTARG="\${$#}"
+	case $LASTARG in
+	*.y)
+	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
+	    if test -f "$SRCFILE"; then
+	         cp "$SRCFILE" y.tab.c
+	    fi
+	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
+	    if test -f "$SRCFILE"; then
+	         cp "$SRCFILE" y.tab.h
+	    fi
+	  ;;
+	esac
+    fi
+    if test ! -f y.tab.h; then
+	echo >y.tab.h
+    fi
+    if test ! -f y.tab.c; then
+	echo 'main() { return 0; }' >y.tab.c
+    fi
+    ;;
+
+  lex*|flex*)
+    echo 1>&2 "\
+WARNING: \`$1' is $msg.  You should only need it if
+         you modified a \`.l' file.  You may need the \`Flex' package
+         in order for those modifications to take effect.  You can get
+         \`Flex' from any GNU archive site."
+    rm -f lex.yy.c
+    if test $# -ne 1; then
+        eval LASTARG="\${$#}"
+	case $LASTARG in
+	*.l)
+	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
+	    if test -f "$SRCFILE"; then
+	         cp "$SRCFILE" lex.yy.c
+	    fi
+	  ;;
+	esac
+    fi
+    if test ! -f lex.yy.c; then
+	echo 'main() { return 0; }' >lex.yy.c
+    fi
+    ;;
+
+  help2man*)
+    echo 1>&2 "\
+WARNING: \`$1' is $msg.  You should only need it if
+	 you modified a dependency of a manual page.  You may need the
+	 \`Help2man' package in order for those modifications to take
+	 effect.  You can get \`Help2man' from any GNU archive site."
+
+    file=`echo "$*" | sed -n "$sed_output"`
+    test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
+    if test -f "$file"; then
+	touch $file
+    else
+	test -z "$file" || exec >$file
+	echo ".ab help2man is required to generate this page"
+	exit $?
+    fi
+    ;;
+
+  makeinfo*)
+    echo 1>&2 "\
+WARNING: \`$1' is $msg.  You should only need it if
+         you modified a \`.texi' or \`.texinfo' file, or any other file
+         indirectly affecting the aspect of the manual.  The spurious
+         call might also be the consequence of using a buggy \`make' (AIX,
+         DU, IRIX).  You might want to install the \`Texinfo' package or
+         the \`GNU make' package.  Grab either from any GNU archive site."
+    # The file to touch is that specified with -o ...
+    file=`echo "$*" | sed -n "$sed_output"`
+    test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
+    if test -z "$file"; then
+      # ... or it is the one specified with @setfilename ...
+      infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
+      file=`sed -n '
+	/^@setfilename/{
+	  s/.* \([^ ]*\) *$/\1/
+	  p
+	  q
+	}' $infile`
+      # ... or it is derived from the source name (dir/f.texi becomes f.info)
+      test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
+    fi
+    # If the file does not exist, the user really needs makeinfo;
+    # let's fail without touching anything.
+    test -f $file || exit 1
+    touch $file
+    ;;
+
+  tar*)
+    shift
+
+    # We have already tried tar in the generic part.
+    # Look for gnutar/gtar before invocation to avoid ugly error
+    # messages.
+    if (gnutar --version > /dev/null 2>&1); then
+       gnutar "$@" && exit 0
+    fi
+    if (gtar --version > /dev/null 2>&1); then
+       gtar "$@" && exit 0
+    fi
+    firstarg="$1"
+    if shift; then
+	case $firstarg in
+	*o*)
+	    firstarg=`echo "$firstarg" | sed s/o//`
+	    tar "$firstarg" "$@" && exit 0
+	    ;;
+	esac
+	case $firstarg in
+	*h*)
+	    firstarg=`echo "$firstarg" | sed s/h//`
+	    tar "$firstarg" "$@" && exit 0
+	    ;;
+	esac
+    fi
+
+    echo 1>&2 "\
+WARNING: I can't seem to be able to run \`tar' with the given arguments.
+         You may want to install GNU tar or Free paxutils, or check the
+         command line arguments."
+    exit 1
+    ;;
+
+  *)
+    echo 1>&2 "\
+WARNING: \`$1' is needed, and is $msg.
+         You might have modified some files without having the
+         proper tools for further handling them.  Check the \`README' file,
+         it often tells you about the needed prerequisites for installing
+         this package.  You may also peek at any GNU archive site, in case
+         some other package would contain this missing \`$1' program."
+    exit 1
+    ;;
+esac
 
-perl_URL=http://www.perl.org/
-flex_URL=http://flex.sourceforge.net/
-gnu_software_URL=http://www.gnu.org/software
-
-program_details ()
-{
-  case $1 in
-    aclocal|automake)
-      echo "The '$1' program is part of the GNU Automake package:"
-      echo "<$gnu_software_URL/automake>"
-      echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:"
-      echo "<$gnu_software_URL/autoconf>"
-      echo "<$gnu_software_URL/m4/>"
-      echo "<$perl_URL>"
-      ;;
-    autoconf|autom4te|autoheader)
-      echo "The '$1' program is part of the GNU Autoconf package:"
-      echo "<$gnu_software_URL/autoconf/>"
-      echo "It also requires GNU m4 and Perl in order to run:"
-      echo "<$gnu_software_URL/m4/>"
-      echo "<$perl_URL>"
-      ;;
-  esac
-}
-
-give_advice ()
-{
-  # Normalize program name to check for.
-  normalized_program=`echo "$1" | sed '
-    s/^gnu-//; t
-    s/^gnu//; t
-    s/^g//; t'`
-
-  printf '%s\n' "'$1' is $msg."
-
-  configure_deps="'configure.ac' or m4 files included by 'configure.ac'"
-  case $normalized_program in
-    autoconf*)
-      echo "You should only need it if you modified 'configure.ac',"
-      echo "or m4 files included by it."
-      program_details 'autoconf'
-      ;;
-    autoheader*)
-      echo "You should only need it if you modified 'acconfig.h' or"
-      echo "$configure_deps."
-      program_details 'autoheader'
-      ;;
-    automake*)
-      echo "You should only need it if you modified 'Makefile.am' or"
-      echo "$configure_deps."
-      program_details 'automake'
-      ;;
-    aclocal*)
-      echo "You should only need it if you modified 'acinclude.m4' or"
-      echo "$configure_deps."
-      program_details 'aclocal'
-      ;;
-   autom4te*)
-      echo "You might have modified some maintainer files that require"
-      echo "the 'autom4te' program to be rebuilt."
-      program_details 'autom4te'
-      ;;
-    bison*|yacc*)
-      echo "You should only need it if you modified a '.y' file."
-      echo "You may want to install the GNU Bison package:"
-      echo "<$gnu_software_URL/bison/>"
-      ;;
-    lex*|flex*)
-      echo "You should only need it if you modified a '.l' file."
-      echo "You may want to install the Fast Lexical Analyzer package:"
-      echo "<$flex_URL>"
-      ;;
-    help2man*)
-      echo "You should only need it if you modified a dependency" \
-           "of a man page."
-      echo "You may want to install the GNU Help2man package:"
-      echo "<$gnu_software_URL/help2man/>"
-    ;;
-    makeinfo*)
-      echo "You should only need it if you modified a '.texi' file, or"
-      echo "any other file indirectly affecting the aspect of the manual."
-      echo "You might want to install the Texinfo package:"
-      echo "<$gnu_software_URL/texinfo/>"
-      echo "The spurious makeinfo call might also be the consequence of"
-      echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might"
-      echo "want to install GNU make:"
-      echo "<$gnu_software_URL/make/>"
-      ;;
-    *)
-      echo "You might have modified some files without having the proper"
-      echo "tools for further handling them.  Check the 'README' file, it"
-      echo "often tells you about the needed prerequisites for installing"
-      echo "this package.  You may also peek at any GNU archive site, in"
-      echo "case some other package contains this missing '$1' program."
-      ;;
-  esac
-}
-
-give_advice "$1" | sed -e '1s/^/WARNING: /' \
-                       -e '2,$s/^/         /' >&2
-
-# Propagate the correct exit status (expected to be 127 for a program
-# not found, 63 for a program that failed due to version mismatch).
-exit $st
+exit 0
 
 # Local variables:
 # eval: (add-hook 'write-file-hooks 'time-stamp)
diff --git a/resource/Makefile.in b/resource/Makefile.in
index a6beda1..223ba61 100644
--- a/resource/Makefile.in
+++ b/resource/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
-
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -16,51 +17,6 @@
 
 # include $(top_srcdir)/Makefile.paths
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -81,7 +37,7 @@ build_triplet = @build@
 host_triplet = @host@
 target_triplet = @target@
 subdir = resource
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
 	$(top_srcdir)/accustomdir.m4 $(top_srcdir)/configure.ac
@@ -91,30 +47,11 @@ mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = $(top_builddir)/config.h
 CONFIG_CLEAN_FILES =
 CONFIG_CLEAN_VPATH_FILES =
-AM_V_P = $(am__v_P_ at AM_V@)
-am__v_P_ = $(am__v_P_ at AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
 SOURCES =
 DIST_SOURCES =
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APBUILD_CC = @APBUILD_CC@
 APBUILD_CXX1 = @APBUILD_CXX1@
 APBUILD_CXX2 = @APBUILD_CXX2@
@@ -316,11 +253,11 @@ $(top_srcdir)/configure:  $(am__configure_deps)
 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 $(am__aclocal_m4_deps):
-tags TAGS:
-
-ctags CTAGS:
+tags: TAGS
+TAGS:
 
-cscope cscopelist:
+ctags: CTAGS
+CTAGS:
 
 
 distdir: $(DISTFILES)
@@ -370,15 +307,10 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 mostlyclean-generic:
 
 clean-generic:
@@ -459,16 +391,15 @@ uninstall-am: uninstall-local
 .MAKE: install-am install-strip
 
 .PHONY: all all-am check check-am clean clean-generic clean-local \
-	cscopelist-am ctags-am dist-hook distclean distclean-generic \
-	distdir dvi dvi-am html html-am info info-am install \
-	install-am install-data install-data-am install-data-local \
-	install-dvi install-dvi-am install-exec install-exec-am \
-	install-html install-html-am install-info install-info-am \
-	install-man install-pdf install-pdf-am install-ps \
-	install-ps-am install-strip installcheck installcheck-am \
-	installdirs maintainer-clean maintainer-clean-generic \
-	mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags-am \
-	uninstall uninstall-am uninstall-local
+	dist-hook distclean distclean-generic distdir dvi dvi-am html \
+	html-am info info-am install install-am install-data \
+	install-data-am install-data-local install-dvi install-dvi-am \
+	install-exec install-exec-am install-html install-html-am \
+	install-info install-info-am install-man install-pdf \
+	install-pdf-am install-ps install-ps-am install-strip \
+	installcheck installcheck-am installdirs maintainer-clean \
+	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
+	pdf-am ps ps-am uninstall uninstall-am uninstall-local
 
 
 included: ${sourcefiles} ${top_srcdir}/batch/make/sortresources.py ${top_srcdir}/batch/make/sortresources Makefile
diff --git a/src/Makefile.in b/src/Makefile.in
index 22f55f5..924418c 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
-
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -16,51 +17,6 @@
 
 
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -82,8 +38,7 @@ host_triplet = @host@
 target_triplet = @target@
 games_PROGRAMS = $(am__EXEEXT_1) $(am__EXEEXT_2)
 subdir = src
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
-	$(top_srcdir)/depcomp
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
 	$(top_srcdir)/accustomdir.m4 $(top_srcdir)/configure.ac
@@ -96,10 +51,6 @@ CONFIG_CLEAN_VPATH_FILES =
 LIBRARIES = $(noinst_LIBRARIES)
 AR = ar
 ARFLAGS = cru
-AM_V_AR = $(am__v_AR_ at AM_V@)
-am__v_AR_ = $(am__v_AR_ at AM_DEFAULT_V@)
-am__v_AR_0 = @echo "  AR      " $@;
-am__v_AR_1 = 
 libengine_a_AR = $(AR) $(ARFLAGS)
 libengine_a_LIBADD =
 am__libengine_a_SOURCES_DIST = engine/eAdvWall.cpp engine/eAdvWall.h \
@@ -300,51 +251,19 @@ armagetronad_main_master_OBJECTS =  \
 armagetronad_main_master_LINK = $(CXXLD) \
 	$(armagetronad_main_master_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
 	$(LDFLAGS) -o $@
-AM_V_P = $(am__v_P_ at AM_V@)
-am__v_P_ = $(am__v_P_ at AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
 DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
 depcomp = $(SHELL) $(top_srcdir)/depcomp
 am__depfiles_maybe = depfiles
 am__mv = mv -f
-AM_V_lt = $(am__v_lt_ at AM_V@)
-am__v_lt_ = $(am__v_lt_ at AM_DEFAULT_V@)
-am__v_lt_0 = --silent
-am__v_lt_1 = 
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-AM_V_CC = $(am__v_CC_ at AM_V@)
-am__v_CC_ = $(am__v_CC_ at AM_DEFAULT_V@)
-am__v_CC_0 = @echo "  CC      " $@;
-am__v_CC_1 = 
 CCLD = $(CC)
 LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
-AM_V_CCLD = $(am__v_CCLD_ at AM_V@)
-am__v_CCLD_ = $(am__v_CCLD_ at AM_DEFAULT_V@)
-am__v_CCLD_0 = @echo "  CCLD    " $@;
-am__v_CCLD_1 = 
 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
 	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
-AM_V_CXX = $(am__v_CXX_ at AM_V@)
-am__v_CXX_ = $(am__v_CXX_ at AM_DEFAULT_V@)
-am__v_CXX_0 = @echo "  CXX     " $@;
-am__v_CXX_1 = 
 CXXLD = $(CXX)
 CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
 	-o $@
-AM_V_CXXLD = $(am__v_CXXLD_ at AM_V@)
-am__v_CXXLD_ = $(am__v_CXXLD_ at AM_DEFAULT_V@)
-am__v_CXXLD_0 = @echo "  CXXLD   " $@;
-am__v_CXXLD_1 = 
 SOURCES = $(libengine_a_SOURCES) $(libenginecore_a_SOURCES) \
 	$(libnetwork_a_SOURCES) $(librender_a_SOURCES) \
 	$(libtools_a_SOURCES) $(libtron_a_SOURCES) $(libui_a_SOURCES) \
@@ -356,44 +275,18 @@ DIST_SOURCES = $(am__libengine_a_SOURCES_DIST) \
 	$(am__libtron_a_SOURCES_DIST) $(am__libui_a_SOURCES_DIST) \
 	$(am__armagetronad_main_SOURCES_DIST) \
 	$(am__armagetronad_main_master_SOURCES_DIST)
-RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
-	ctags-recursive dvi-recursive html-recursive info-recursive \
-	install-data-recursive install-dvi-recursive \
-	install-exec-recursive install-html-recursive \
-	install-info-recursive install-pdf-recursive \
-	install-ps-recursive install-recursive installcheck-recursive \
-	installdirs-recursive pdf-recursive ps-recursive \
-	tags-recursive uninstall-recursive
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
+	html-recursive info-recursive install-data-recursive \
+	install-dvi-recursive install-exec-recursive \
+	install-html-recursive install-info-recursive \
+	install-pdf-recursive install-ps-recursive install-recursive \
+	installcheck-recursive installdirs-recursive pdf-recursive \
+	ps-recursive uninstall-recursive
 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
   distclean-recursive maintainer-clean-recursive
-am__recursive_targets = \
-  $(RECURSIVE_TARGETS) \
-  $(RECURSIVE_CLEAN_TARGETS) \
-  $(am__extra_recursive_targets)
-AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
+AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
+	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 	distdir
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
-# Read a list of newline-separated strings from the standard input,
-# and print each of them once, without duplicates.  Input order is
-# *not* preserved.
-am__uniquify_input = $(AWK) '\
-  BEGIN { nonempty = 0; } \
-  { items[$$0] = 1; nonempty = 1; } \
-  END { if (nonempty) { for (i in items) print i; }; } \
-'
-# Make sure the list of sources is unique.  This is necessary because,
-# e.g., the same source file might be shared among _SOURCES variables
-# for different programs/libraries.
-am__define_uniq_tagged_files = \
-  list='$(am__tagged_files)'; \
-  unique=`for i in $$list; do \
-    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-  done | $(am__uniquify_input)`
 ETAGS = etags
 CTAGS = ctags
 DIST_SUBDIRS = $(SUBDIRS)
@@ -425,7 +318,6 @@ am__relativize = \
   reldir="$$dir2"
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APBUILD_CC = @APBUILD_CC@
 APBUILD_CXX1 = @APBUILD_CXX1@
 APBUILD_CXX2 = @APBUILD_CXX2@
@@ -731,55 +623,44 @@ $(am__aclocal_m4_deps):
 
 clean-noinstLIBRARIES:
 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
-
-libengine.a: $(libengine_a_OBJECTS) $(libengine_a_DEPENDENCIES) $(EXTRA_libengine_a_DEPENDENCIES) 
-	$(AM_V_at)-rm -f libengine.a
-	$(AM_V_AR)$(libengine_a_AR) libengine.a $(libengine_a_OBJECTS) $(libengine_a_LIBADD)
-	$(AM_V_at)$(RANLIB) libengine.a
-
-libenginecore.a: $(libenginecore_a_OBJECTS) $(libenginecore_a_DEPENDENCIES) $(EXTRA_libenginecore_a_DEPENDENCIES) 
-	$(AM_V_at)-rm -f libenginecore.a
-	$(AM_V_AR)$(libenginecore_a_AR) libenginecore.a $(libenginecore_a_OBJECTS) $(libenginecore_a_LIBADD)
-	$(AM_V_at)$(RANLIB) libenginecore.a
-
-libnetwork.a: $(libnetwork_a_OBJECTS) $(libnetwork_a_DEPENDENCIES) $(EXTRA_libnetwork_a_DEPENDENCIES) 
-	$(AM_V_at)-rm -f libnetwork.a
-	$(AM_V_AR)$(libnetwork_a_AR) libnetwork.a $(libnetwork_a_OBJECTS) $(libnetwork_a_LIBADD)
-	$(AM_V_at)$(RANLIB) libnetwork.a
-
-librender.a: $(librender_a_OBJECTS) $(librender_a_DEPENDENCIES) $(EXTRA_librender_a_DEPENDENCIES) 
-	$(AM_V_at)-rm -f librender.a
-	$(AM_V_AR)$(librender_a_AR) librender.a $(librender_a_OBJECTS) $(librender_a_LIBADD)
-	$(AM_V_at)$(RANLIB) librender.a
-
-libtools.a: $(libtools_a_OBJECTS) $(libtools_a_DEPENDENCIES) $(EXTRA_libtools_a_DEPENDENCIES) 
-	$(AM_V_at)-rm -f libtools.a
-	$(AM_V_AR)$(libtools_a_AR) libtools.a $(libtools_a_OBJECTS) $(libtools_a_LIBADD)
-	$(AM_V_at)$(RANLIB) libtools.a
-
-libtron.a: $(libtron_a_OBJECTS) $(libtron_a_DEPENDENCIES) $(EXTRA_libtron_a_DEPENDENCIES) 
-	$(AM_V_at)-rm -f libtron.a
-	$(AM_V_AR)$(libtron_a_AR) libtron.a $(libtron_a_OBJECTS) $(libtron_a_LIBADD)
-	$(AM_V_at)$(RANLIB) libtron.a
-
-libui.a: $(libui_a_OBJECTS) $(libui_a_DEPENDENCIES) $(EXTRA_libui_a_DEPENDENCIES) 
-	$(AM_V_at)-rm -f libui.a
-	$(AM_V_AR)$(libui_a_AR) libui.a $(libui_a_OBJECTS) $(libui_a_LIBADD)
-	$(AM_V_at)$(RANLIB) libui.a
+libengine.a: $(libengine_a_OBJECTS) $(libengine_a_DEPENDENCIES) 
+	-rm -f libengine.a
+	$(libengine_a_AR) libengine.a $(libengine_a_OBJECTS) $(libengine_a_LIBADD)
+	$(RANLIB) libengine.a
+libenginecore.a: $(libenginecore_a_OBJECTS) $(libenginecore_a_DEPENDENCIES) 
+	-rm -f libenginecore.a
+	$(libenginecore_a_AR) libenginecore.a $(libenginecore_a_OBJECTS) $(libenginecore_a_LIBADD)
+	$(RANLIB) libenginecore.a
+libnetwork.a: $(libnetwork_a_OBJECTS) $(libnetwork_a_DEPENDENCIES) 
+	-rm -f libnetwork.a
+	$(libnetwork_a_AR) libnetwork.a $(libnetwork_a_OBJECTS) $(libnetwork_a_LIBADD)
+	$(RANLIB) libnetwork.a
+librender.a: $(librender_a_OBJECTS) $(librender_a_DEPENDENCIES) 
+	-rm -f librender.a
+	$(librender_a_AR) librender.a $(librender_a_OBJECTS) $(librender_a_LIBADD)
+	$(RANLIB) librender.a
+libtools.a: $(libtools_a_OBJECTS) $(libtools_a_DEPENDENCIES) 
+	-rm -f libtools.a
+	$(libtools_a_AR) libtools.a $(libtools_a_OBJECTS) $(libtools_a_LIBADD)
+	$(RANLIB) libtools.a
+libtron.a: $(libtron_a_OBJECTS) $(libtron_a_DEPENDENCIES) 
+	-rm -f libtron.a
+	$(libtron_a_AR) libtron.a $(libtron_a_OBJECTS) $(libtron_a_LIBADD)
+	$(RANLIB) libtron.a
+libui.a: $(libui_a_OBJECTS) $(libui_a_DEPENDENCIES) 
+	-rm -f libui.a
+	$(libui_a_AR) libui.a $(libui_a_OBJECTS) $(libui_a_LIBADD)
+	$(RANLIB) libui.a
 install-gamesPROGRAMS: $(games_PROGRAMS)
 	@$(NORMAL_INSTALL)
+	test -z "$(gamesdir)" || $(MKDIR_P) "$(DESTDIR)$(gamesdir)"
 	@list='$(games_PROGRAMS)'; test -n "$(gamesdir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(gamesdir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(gamesdir)" || exit 1; \
-	fi; \
 	for p in $$list; do echo "$$p $$p"; done | \
 	sed 's/$(EXEEXT)$$//' | \
-	while read p p1; do if test -f $$p \
-	  ; then echo "$$p"; echo "$$p"; else :; fi; \
+	while read p p1; do if test -f $$p; \
+	  then echo "$$p"; echo "$$p"; else :; fi; \
 	done | \
-	sed -e 'p;s,.*/,,;n;h' \
-	    -e 's|.*|.|' \
+	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
 	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
 	sed 'N;N;N;s,\n, ,g' | \
 	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
@@ -800,22 +681,19 @@ uninstall-gamesPROGRAMS:
 	@list='$(games_PROGRAMS)'; test -n "$(gamesdir)" || list=; \
 	files=`for p in $$list; do echo "$$p"; done | \
 	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-	      -e 's/$$/$(EXEEXT)/' \
-	`; \
+	      -e 's/$$/$(EXEEXT)/' `; \
 	test -n "$$list" || exit 0; \
 	echo " ( cd '$(DESTDIR)$(gamesdir)' && rm -f" $$files ")"; \
 	cd "$(DESTDIR)$(gamesdir)" && rm -f $$files
 
 clean-gamesPROGRAMS:
 	-test -z "$(games_PROGRAMS)" || rm -f $(games_PROGRAMS)
-
- at BUILDFAKERELEASE_FALSE@armagetronad_main$(EXEEXT): $(armagetronad_main_OBJECTS) $(armagetronad_main_DEPENDENCIES) $(EXTRA_armagetronad_main_DEPENDENCIES) 
+ at BUILDFAKERELEASE_FALSE@armagetronad_main$(EXEEXT): $(armagetronad_main_OBJECTS) $(armagetronad_main_DEPENDENCIES) 
 @BUILDFAKERELEASE_FALSE@	@rm -f armagetronad_main$(EXEEXT)
- at BUILDFAKERELEASE_FALSE@	$(AM_V_CXXLD)$(armagetronad_main_LINK) $(armagetronad_main_OBJECTS) $(armagetronad_main_LDADD) $(LIBS)
-
- at BUILDFAKERELEASE_FALSE@armagetronad_main_master$(EXEEXT): $(armagetronad_main_master_OBJECTS) $(armagetronad_main_master_DEPENDENCIES) $(EXTRA_armagetronad_main_master_DEPENDENCIES) 
+ at BUILDFAKERELEASE_FALSE@	$(armagetronad_main_LINK) $(armagetronad_main_OBJECTS) $(armagetronad_main_LDADD) $(LIBS)
+ at BUILDFAKERELEASE_FALSE@armagetronad_main_master$(EXEEXT): $(armagetronad_main_master_OBJECTS) $(armagetronad_main_master_DEPENDENCIES) 
 @BUILDFAKERELEASE_FALSE@	@rm -f armagetronad_main_master$(EXEEXT)
- at BUILDFAKERELEASE_FALSE@	$(AM_V_CXXLD)$(armagetronad_main_master_LINK) $(armagetronad_main_master_OBJECTS) $(armagetronad_main_master_LDADD) $(LIBS)
+ at BUILDFAKERELEASE_FALSE@	$(armagetronad_main_master_LINK) $(armagetronad_main_master_OBJECTS) $(armagetronad_main_master_LDADD) $(LIBS)
 
 mostlyclean-compile:
 	-rm -f *.$(OBJEXT)
@@ -927,1481 +805,1478 @@ distclean-compile:
 @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/prefix.Po at am__quote@
 
 .c.o:
- at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
- at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+ at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(AM_V_CC at am__nodep@)$(COMPILE) -c -o $@ $<
+ at am__fastdepCC_FALSE@	$(COMPILE) -c $<
 
 .c.obj:
- at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
- at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+ at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(AM_V_CC at am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+ at am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
 
 prefix.o: thirdparty/binreloc/prefix.c
- at am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT prefix.o -MD -MP -MF $(DEPDIR)/prefix.Tpo -c -o prefix.o `test -f 'thirdparty/binreloc/prefix.c' || echo '$(srcdir)/'`thirdparty/binreloc/prefix.c
- at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/prefix.Tpo $(DEPDIR)/prefix.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='thirdparty/binreloc/prefix.c' object='prefix.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT prefix.o -MD -MP -MF $(DEPDIR)/prefix.Tpo -c -o prefix.o `test -f 'thirdparty/binreloc/prefix.c' || echo '$(srcdir)/'`thirdparty/binreloc/prefix.c
+ at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/prefix.Tpo $(DEPDIR)/prefix.Po
+ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='thirdparty/binreloc/prefix.c' object='prefix.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(AM_V_CC at am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o prefix.o `test -f 'thirdparty/binreloc/prefix.c' || echo '$(srcdir)/'`thirdparty/binreloc/prefix.c
+ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o prefix.o `test -f 'thirdparty/binreloc/prefix.c' || echo '$(srcdir)/'`thirdparty/binreloc/prefix.c
 
 prefix.obj: thirdparty/binreloc/prefix.c
- at am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT prefix.obj -MD -MP -MF $(DEPDIR)/prefix.Tpo -c -o prefix.obj `if test -f 'thirdparty/binreloc/prefix.c'; then $(CYGPATH_W) 'thirdparty/binreloc/prefix.c'; else $(CYGPATH_W) '$(srcdir)/thirdparty/binreloc/prefix.c'; fi`
- at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/prefix.Tpo $(DEPDIR)/prefix.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='thirdparty/binreloc/prefix.c' object='prefix.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT prefix.obj -MD -MP -MF $(DEPDIR)/prefix.Tpo -c -o prefix.obj `if test -f 'thirdparty/binreloc/prefix.c'; then $(CYGPATH_W) 'thirdparty/binreloc/prefix.c'; else $(CYGPATH_W) '$(srcdir)/thirdparty/binreloc/prefix.c'; fi`
+ at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/prefix.Tpo $(DEPDIR)/prefix.Po
+ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='thirdparty/binreloc/prefix.c' object='prefix.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(AM_V_CC at am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o prefix.obj `if test -f 'thirdparty/binreloc/prefix.c'; then $(CYGPATH_W) 'thirdparty/binreloc/prefix.c'; else $(CYGPATH_W) '$(srcdir)/thirdparty/binreloc/prefix.c'; fi`
+ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o prefix.obj `if test -f 'thirdparty/binreloc/prefix.c'; then $(CYGPATH_W) 'thirdparty/binreloc/prefix.c'; else $(CYGPATH_W) '$(srcdir)/thirdparty/binreloc/prefix.c'; fi`
 
 .cpp.o:
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXXCOMPILE) -c -o $@ $<
+ at am__fastdepCXX_FALSE@	$(CXXCOMPILE) -c -o $@ $<
 
 .cpp.obj:
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+ at am__fastdepCXX_FALSE@	$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
 
 libengine_a-eAdvWall.o: engine/eAdvWall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAdvWall.o -MD -MP -MF $(DEPDIR)/libengine_a-eAdvWall.Tpo -c -o libengine_a-eAdvWall.o `test -f 'engine/eAdvWall.cpp' || echo '$(srcdir)/'`engine/eAdvWall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eAdvWall.Tpo $(DEPDIR)/libengine_a-eAdvWall.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eAdvWall.cpp' object='libengine_a-eAdvWall.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAdvWall.o -MD -MP -MF $(DEPDIR)/libengine_a-eAdvWall.Tpo -c -o libengine_a-eAdvWall.o `test -f 'engine/eAdvWall.cpp' || echo '$(srcdir)/'`engine/eAdvWall.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eAdvWall.Tpo $(DEPDIR)/libengine_a-eAdvWall.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eAdvWall.cpp' object='libengine_a-eAdvWall.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAdvWall.o `test -f 'engine/eAdvWall.cpp' || echo '$(srcdir)/'`engine/eAdvWall.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAdvWall.o `test -f 'engine/eAdvWall.cpp' || echo '$(srcdir)/'`engine/eAdvWall.cpp
 
 libengine_a-eAdvWall.obj: engine/eAdvWall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAdvWall.obj -MD -MP -MF $(DEPDIR)/libengine_a-eAdvWall.Tpo -c -o libengine_a-eAdvWall.obj `if test -f 'engine/eAdvWall.cpp'; then $(CYGPATH_W) 'engine/eAdvWall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAdvWall.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eAdvWall.Tpo $(DEPDIR)/libengine_a-eAdvWall.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eAdvWall.cpp' object='libengine_a-eAdvWall.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAdvWall.obj -MD -MP -MF $(DEPDIR)/libengine_a-eAdvWall.Tpo -c -o libengine_a-eAdvWall.obj `if test -f 'engine/eAdvWall.cpp'; then $(CYGPATH_W) 'engine/eAdvWall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAdvWall.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eAdvWall.Tpo $(DEPDIR)/libengine_a-eAdvWall.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eAdvWall.cpp' object='libengine_a-eAdvWall.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAdvWall.obj `if test -f 'engine/eAdvWall.cpp'; then $(CYGPATH_W) 'engine/eAdvWall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAdvWall.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAdvWall.obj `if test -f 'engine/eAdvWall.cpp'; then $(CYGPATH_W) 'engine/eAdvWall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAdvWall.cpp'; fi`
 
 libengine_a-eAuthentication.o: engine/eAuthentication.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAuthentication.o -MD -MP -MF $(DEPDIR)/libengine_a-eAuthentication.Tpo -c -o libengine_a-eAuthentication.o `test -f 'engine/eAuthentication.cpp' || echo '$(srcdir)/'`engine/eAuthentication.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eAuthentication.Tpo $(DEPDIR)/libengine_a-eAuthentication.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eAuthentication.cpp' object='libengine_a-eAuthentication.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAuthentication.o -MD -MP -MF $(DEPDIR)/libengine_a-eAuthentication.Tpo -c -o libengine_a-eAuthentication.o `test -f 'engine/eAuthentication.cpp' || echo '$(srcdir)/'`engine/eAuthentication.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eAuthentication.Tpo $(DEPDIR)/libengine_a-eAuthentication.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eAuthentication.cpp' object='libengine_a-eAuthentication.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAuthentication.o `test -f 'engine/eAuthentication.cpp' || echo '$(srcdir)/'`engine/eAuthentication.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAuthentication.o `test -f 'engine/eAuthentication.cpp' || echo '$(srcdir)/'`engine/eAuthentication.cpp
 
 libengine_a-eAuthentication.obj: engine/eAuthentication.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAuthentication.obj -MD -MP -MF $(DEPDIR)/libengine_a-eAuthentication.Tpo -c -o libengine_a-eAuthentication.obj `if test -f 'engine/eAuthentication.cpp'; then $(CYGPATH_W) 'engine/eAuthentication.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAuthentication.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eAuthentication.Tpo $(DEPDIR)/libengine_a-eAuthentication.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eAuthentication.cpp' object='libengine_a-eAuthentication.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAuthentication.obj -MD -MP -MF $(DEPDIR)/libengine_a-eAuthentication.Tpo -c -o libengine_a-eAuthentication.obj `if test -f 'engine/eAuthentication.cpp'; then $(CYGPATH_W) 'engine/eAuthentication.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAuthentication.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eAuthentication.Tpo $(DEPDIR)/libengine_a-eAuthentication.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eAuthentication.cpp' object='libengine_a-eAuthentication.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAuthentication.obj `if test -f 'engine/eAuthentication.cpp'; then $(CYGPATH_W) 'engine/eAuthentication.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAuthentication.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAuthentication.obj `if test -f 'engine/eAuthentication.cpp'; then $(CYGPATH_W) 'engine/eAuthentication.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAuthentication.cpp'; fi`
 
 libengine_a-eAxis.o: engine/eAxis.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAxis.o -MD -MP -MF $(DEPDIR)/libengine_a-eAxis.Tpo -c -o libengine_a-eAxis.o `test -f 'engine/eAxis.cpp' || echo '$(srcdir)/'`engine/eAxis.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eAxis.Tpo $(DEPDIR)/libengine_a-eAxis.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eAxis.cpp' object='libengine_a-eAxis.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAxis.o -MD -MP -MF $(DEPDIR)/libengine_a-eAxis.Tpo -c -o libengine_a-eAxis.o `test -f 'engine/eAxis.cpp' || echo '$(srcdir)/'`engine/eAxis.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eAxis.Tpo $(DEPDIR)/libengine_a-eAxis.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eAxis.cpp' object='libengine_a-eAxis.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAxis.o `test -f 'engine/eAxis.cpp' || echo '$(srcdir)/'`engine/eAxis.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAxis.o `test -f 'engine/eAxis.cpp' || echo '$(srcdir)/'`engine/eAxis.cpp
 
 libengine_a-eAxis.obj: engine/eAxis.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAxis.obj -MD -MP -MF $(DEPDIR)/libengine_a-eAxis.Tpo -c -o libengine_a-eAxis.obj `if test -f 'engine/eAxis.cpp'; then $(CYGPATH_W) 'engine/eAxis.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAxis.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eAxis.Tpo $(DEPDIR)/libengine_a-eAxis.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eAxis.cpp' object='libengine_a-eAxis.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eAxis.obj -MD -MP -MF $(DEPDIR)/libengine_a-eAxis.Tpo -c -o libengine_a-eAxis.obj `if test -f 'engine/eAxis.cpp'; then $(CYGPATH_W) 'engine/eAxis.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAxis.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eAxis.Tpo $(DEPDIR)/libengine_a-eAxis.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eAxis.cpp' object='libengine_a-eAxis.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAxis.obj `if test -f 'engine/eAxis.cpp'; then $(CYGPATH_W) 'engine/eAxis.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAxis.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eAxis.obj `if test -f 'engine/eAxis.cpp'; then $(CYGPATH_W) 'engine/eAxis.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eAxis.cpp'; fi`
 
 libengine_a-eCamera.o: engine/eCamera.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eCamera.o -MD -MP -MF $(DEPDIR)/libengine_a-eCamera.Tpo -c -o libengine_a-eCamera.o `test -f 'engine/eCamera.cpp' || echo '$(srcdir)/'`engine/eCamera.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eCamera.Tpo $(DEPDIR)/libengine_a-eCamera.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eCamera.cpp' object='libengine_a-eCamera.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eCamera.o -MD -MP -MF $(DEPDIR)/libengine_a-eCamera.Tpo -c -o libengine_a-eCamera.o `test -f 'engine/eCamera.cpp' || echo '$(srcdir)/'`engine/eCamera.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eCamera.Tpo $(DEPDIR)/libengine_a-eCamera.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eCamera.cpp' object='libengine_a-eCamera.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eCamera.o `test -f 'engine/eCamera.cpp' || echo '$(srcdir)/'`engine/eCamera.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eCamera.o `test -f 'engine/eCamera.cpp' || echo '$(srcdir)/'`engine/eCamera.cpp
 
 libengine_a-eCamera.obj: engine/eCamera.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eCamera.obj -MD -MP -MF $(DEPDIR)/libengine_a-eCamera.Tpo -c -o libengine_a-eCamera.obj `if test -f 'engine/eCamera.cpp'; then $(CYGPATH_W) 'engine/eCamera.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eCamera.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eCamera.Tpo $(DEPDIR)/libengine_a-eCamera.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eCamera.cpp' object='libengine_a-eCamera.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eCamera.obj -MD -MP -MF $(DEPDIR)/libengine_a-eCamera.Tpo -c -o libengine_a-eCamera.obj `if test -f 'engine/eCamera.cpp'; then $(CYGPATH_W) 'engine/eCamera.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eCamera.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eCamera.Tpo $(DEPDIR)/libengine_a-eCamera.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eCamera.cpp' object='libengine_a-eCamera.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eCamera.obj `if test -f 'engine/eCamera.cpp'; then $(CYGPATH_W) 'engine/eCamera.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eCamera.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eCamera.obj `if test -f 'engine/eCamera.cpp'; then $(CYGPATH_W) 'engine/eCamera.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eCamera.cpp'; fi`
 
 libengine_a-eDebugLine.o: engine/eDebugLine.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eDebugLine.o -MD -MP -MF $(DEPDIR)/libengine_a-eDebugLine.Tpo -c -o libengine_a-eDebugLine.o `test -f 'engine/eDebugLine.cpp' || echo '$(srcdir)/'`engine/eDebugLine.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eDebugLine.Tpo $(DEPDIR)/libengine_a-eDebugLine.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eDebugLine.cpp' object='libengine_a-eDebugLine.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eDebugLine.o -MD -MP -MF $(DEPDIR)/libengine_a-eDebugLine.Tpo -c -o libengine_a-eDebugLine.o `test -f 'engine/eDebugLine.cpp' || echo '$(srcdir)/'`engine/eDebugLine.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eDebugLine.Tpo $(DEPDIR)/libengine_a-eDebugLine.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eDebugLine.cpp' object='libengine_a-eDebugLine.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eDebugLine.o `test -f 'engine/eDebugLine.cpp' || echo '$(srcdir)/'`engine/eDebugLine.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eDebugLine.o `test -f 'engine/eDebugLine.cpp' || echo '$(srcdir)/'`engine/eDebugLine.cpp
 
 libengine_a-eDebugLine.obj: engine/eDebugLine.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eDebugLine.obj -MD -MP -MF $(DEPDIR)/libengine_a-eDebugLine.Tpo -c -o libengine_a-eDebugLine.obj `if test -f 'engine/eDebugLine.cpp'; then $(CYGPATH_W) 'engine/eDebugLine.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eDebugLine.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eDebugLine.Tpo $(DEPDIR)/libengine_a-eDebugLine.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eDebugLine.cpp' object='libengine_a-eDebugLine.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eDebugLine.obj -MD -MP -MF $(DEPDIR)/libengine_a-eDebugLine.Tpo -c -o libengine_a-eDebugLine.obj `if test -f 'engine/eDebugLine.cpp'; then $(CYGPATH_W) 'engine/eDebugLine.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eDebugLine.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eDebugLine.Tpo $(DEPDIR)/libengine_a-eDebugLine.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eDebugLine.cpp' object='libengine_a-eDebugLine.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eDebugLine.obj `if test -f 'engine/eDebugLine.cpp'; then $(CYGPATH_W) 'engine/eDebugLine.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eDebugLine.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eDebugLine.obj `if test -f 'engine/eDebugLine.cpp'; then $(CYGPATH_W) 'engine/eDebugLine.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eDebugLine.cpp'; fi`
 
 libengine_a-eDisplay.o: engine/eDisplay.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eDisplay.o -MD -MP -MF $(DEPDIR)/libengine_a-eDisplay.Tpo -c -o libengine_a-eDisplay.o `test -f 'engine/eDisplay.cpp' || echo '$(srcdir)/'`engine/eDisplay.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eDisplay.Tpo $(DEPDIR)/libengine_a-eDisplay.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eDisplay.cpp' object='libengine_a-eDisplay.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eDisplay.o -MD -MP -MF $(DEPDIR)/libengine_a-eDisplay.Tpo -c -o libengine_a-eDisplay.o `test -f 'engine/eDisplay.cpp' || echo '$(srcdir)/'`engine/eDisplay.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eDisplay.Tpo $(DEPDIR)/libengine_a-eDisplay.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eDisplay.cpp' object='libengine_a-eDisplay.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eDisplay.o `test -f 'engine/eDisplay.cpp' || echo '$(srcdir)/'`engine/eDisplay.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eDisplay.o `test -f 'engine/eDisplay.cpp' || echo '$(srcdir)/'`engine/eDisplay.cpp
 
 libengine_a-eDisplay.obj: engine/eDisplay.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eDisplay.obj -MD -MP -MF $(DEPDIR)/libengine_a-eDisplay.Tpo -c -o libengine_a-eDisplay.obj `if test -f 'engine/eDisplay.cpp'; then $(CYGPATH_W) 'engine/eDisplay.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eDisplay.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eDisplay.Tpo $(DEPDIR)/libengine_a-eDisplay.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eDisplay.cpp' object='libengine_a-eDisplay.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eDisplay.obj -MD -MP -MF $(DEPDIR)/libengine_a-eDisplay.Tpo -c -o libengine_a-eDisplay.obj `if test -f 'engine/eDisplay.cpp'; then $(CYGPATH_W) 'engine/eDisplay.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eDisplay.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eDisplay.Tpo $(DEPDIR)/libengine_a-eDisplay.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eDisplay.cpp' object='libengine_a-eDisplay.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eDisplay.obj `if test -f 'engine/eDisplay.cpp'; then $(CYGPATH_W) 'engine/eDisplay.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eDisplay.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eDisplay.obj `if test -f 'engine/eDisplay.cpp'; then $(CYGPATH_W) 'engine/eDisplay.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eDisplay.cpp'; fi`
 
 libengine_a-eFloor.o: engine/eFloor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eFloor.o -MD -MP -MF $(DEPDIR)/libengine_a-eFloor.Tpo -c -o libengine_a-eFloor.o `test -f 'engine/eFloor.cpp' || echo '$(srcdir)/'`engine/eFloor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eFloor.Tpo $(DEPDIR)/libengine_a-eFloor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eFloor.cpp' object='libengine_a-eFloor.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eFloor.o -MD -MP -MF $(DEPDIR)/libengine_a-eFloor.Tpo -c -o libengine_a-eFloor.o `test -f 'engine/eFloor.cpp' || echo '$(srcdir)/'`engine/eFloor.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eFloor.Tpo $(DEPDIR)/libengine_a-eFloor.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eFloor.cpp' object='libengine_a-eFloor.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eFloor.o `test -f 'engine/eFloor.cpp' || echo '$(srcdir)/'`engine/eFloor.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eFloor.o `test -f 'engine/eFloor.cpp' || echo '$(srcdir)/'`engine/eFloor.cpp
 
 libengine_a-eFloor.obj: engine/eFloor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eFloor.obj -MD -MP -MF $(DEPDIR)/libengine_a-eFloor.Tpo -c -o libengine_a-eFloor.obj `if test -f 'engine/eFloor.cpp'; then $(CYGPATH_W) 'engine/eFloor.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eFloor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eFloor.Tpo $(DEPDIR)/libengine_a-eFloor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eFloor.cpp' object='libengine_a-eFloor.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eFloor.obj -MD -MP -MF $(DEPDIR)/libengine_a-eFloor.Tpo -c -o libengine_a-eFloor.obj `if test -f 'engine/eFloor.cpp'; then $(CYGPATH_W) 'engine/eFloor.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eFloor.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eFloor.Tpo $(DEPDIR)/libengine_a-eFloor.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eFloor.cpp' object='libengine_a-eFloor.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eFloor.obj `if test -f 'engine/eFloor.cpp'; then $(CYGPATH_W) 'engine/eFloor.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eFloor.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eFloor.obj `if test -f 'engine/eFloor.cpp'; then $(CYGPATH_W) 'engine/eFloor.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eFloor.cpp'; fi`
 
 libengine_a-eKrawall.o: engine/eKrawall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eKrawall.o -MD -MP -MF $(DEPDIR)/libengine_a-eKrawall.Tpo -c -o libengine_a-eKrawall.o `test -f 'engine/eKrawall.cpp' || echo '$(srcdir)/'`engine/eKrawall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eKrawall.Tpo $(DEPDIR)/libengine_a-eKrawall.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eKrawall.cpp' object='libengine_a-eKrawall.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eKrawall.o -MD -MP -MF $(DEPDIR)/libengine_a-eKrawall.Tpo -c -o libengine_a-eKrawall.o `test -f 'engine/eKrawall.cpp' || echo '$(srcdir)/'`engine/eKrawall.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eKrawall.Tpo $(DEPDIR)/libengine_a-eKrawall.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eKrawall.cpp' object='libengine_a-eKrawall.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eKrawall.o `test -f 'engine/eKrawall.cpp' || echo '$(srcdir)/'`engine/eKrawall.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eKrawall.o `test -f 'engine/eKrawall.cpp' || echo '$(srcdir)/'`engine/eKrawall.cpp
 
 libengine_a-eKrawall.obj: engine/eKrawall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eKrawall.obj -MD -MP -MF $(DEPDIR)/libengine_a-eKrawall.Tpo -c -o libengine_a-eKrawall.obj `if test -f 'engine/eKrawall.cpp'; then $(CYGPATH_W) 'engine/eKrawall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eKrawall.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eKrawall.Tpo $(DEPDIR)/libengine_a-eKrawall.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eKrawall.cpp' object='libengine_a-eKrawall.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eKrawall.obj -MD -MP -MF $(DEPDIR)/libengine_a-eKrawall.Tpo -c -o libengine_a-eKrawall.obj `if test -f 'engine/eKrawall.cpp'; then $(CYGPATH_W) 'engine/eKrawall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eKrawall.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eKrawall.Tpo $(DEPDIR)/libengine_a-eKrawall.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eKrawall.cpp' object='libengine_a-eKrawall.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eKrawall.obj `if test -f 'engine/eKrawall.cpp'; then $(CYGPATH_W) 'engine/eKrawall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eKrawall.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eKrawall.obj `if test -f 'engine/eKrawall.cpp'; then $(CYGPATH_W) 'engine/eKrawall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eKrawall.cpp'; fi`
 
 libengine_a-eNetGameObject.o: engine/eNetGameObject.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eNetGameObject.o -MD -MP -MF $(DEPDIR)/libengine_a-eNetGameObject.Tpo -c -o libengine_a-eNetGameObject.o `test -f 'engine/eNetGameObject.cpp' || echo '$(srcdir)/'`engine/eNetGameObject.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eNetGameObject.Tpo $(DEPDIR)/libengine_a-eNetGameObject.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eNetGameObject.cpp' object='libengine_a-eNetGameObject.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eNetGameObject.o -MD -MP -MF $(DEPDIR)/libengine_a-eNetGameObject.Tpo -c -o libengine_a-eNetGameObject.o `test -f 'engine/eNetGameObject.cpp' || echo '$(srcdir)/'`engine/eNetGameObject.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eNetGameObject.Tpo $(DEPDIR)/libengine_a-eNetGameObject.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eNetGameObject.cpp' object='libengine_a-eNetGameObject.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eNetGameObject.o `test -f 'engine/eNetGameObject.cpp' || echo '$(srcdir)/'`engine/eNetGameObject.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eNetGameObject.o `test -f 'engine/eNetGameObject.cpp' || echo '$(srcdir)/'`engine/eNetGameObject.cpp
 
 libengine_a-eNetGameObject.obj: engine/eNetGameObject.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eNetGameObject.obj -MD -MP -MF $(DEPDIR)/libengine_a-eNetGameObject.Tpo -c -o libengine_a-eNetGameObject.obj `if test -f 'engine/eNetGameObject.cpp'; then $(CYGPATH_W) 'engine/eNetGameObject.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eNetGameObject.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eNetGameObject.Tpo $(DEPDIR)/libengine_a-eNetGameObject.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eNetGameObject.cpp' object='libengine_a-eNetGameObject.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eNetGameObject.obj -MD -MP -MF $(DEPDIR)/libengine_a-eNetGameObject.Tpo -c -o libengine_a-eNetGameObject.obj `if test -f 'engine/eNetGameObject.cpp'; then $(CYGPATH_W) 'engine/eNetGameObject.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eNetGameObject.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eNetGameObject.Tpo $(DEPDIR)/libengine_a-eNetGameObject.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eNetGameObject.cpp' object='libengine_a-eNetGameObject.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eNetGameObject.obj `if test -f 'engine/eNetGameObject.cpp'; then $(CYGPATH_W) 'engine/eNetGameObject.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eNetGameObject.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eNetGameObject.obj `if test -f 'engine/eNetGameObject.cpp'; then $(CYGPATH_W) 'engine/eNetGameObject.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eNetGameObject.cpp'; fi`
 
 libengine_a-ePath.o: engine/ePath.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-ePath.o -MD -MP -MF $(DEPDIR)/libengine_a-ePath.Tpo -c -o libengine_a-ePath.o `test -f 'engine/ePath.cpp' || echo '$(srcdir)/'`engine/ePath.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-ePath.Tpo $(DEPDIR)/libengine_a-ePath.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/ePath.cpp' object='libengine_a-ePath.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-ePath.o -MD -MP -MF $(DEPDIR)/libengine_a-ePath.Tpo -c -o libengine_a-ePath.o `test -f 'engine/ePath.cpp' || echo '$(srcdir)/'`engine/ePath.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-ePath.Tpo $(DEPDIR)/libengine_a-ePath.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/ePath.cpp' object='libengine_a-ePath.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-ePath.o `test -f 'engine/ePath.cpp' || echo '$(srcdir)/'`engine/ePath.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-ePath.o `test -f 'engine/ePath.cpp' || echo '$(srcdir)/'`engine/ePath.cpp
 
 libengine_a-ePath.obj: engine/ePath.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-ePath.obj -MD -MP -MF $(DEPDIR)/libengine_a-ePath.Tpo -c -o libengine_a-ePath.obj `if test -f 'engine/ePath.cpp'; then $(CYGPATH_W) 'engine/ePath.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/ePath.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-ePath.Tpo $(DEPDIR)/libengine_a-ePath.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/ePath.cpp' object='libengine_a-ePath.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-ePath.obj -MD -MP -MF $(DEPDIR)/libengine_a-ePath.Tpo -c -o libengine_a-ePath.obj `if test -f 'engine/ePath.cpp'; then $(CYGPATH_W) 'engine/ePath.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/ePath.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-ePath.Tpo $(DEPDIR)/libengine_a-ePath.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/ePath.cpp' object='libengine_a-ePath.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-ePath.obj `if test -f 'engine/ePath.cpp'; then $(CYGPATH_W) 'engine/ePath.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/ePath.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-ePath.obj `if test -f 'engine/ePath.cpp'; then $(CYGPATH_W) 'engine/ePath.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/ePath.cpp'; fi`
 
 libengine_a-ePlayer.o: engine/ePlayer.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-ePlayer.o -MD -MP -MF $(DEPDIR)/libengine_a-ePlayer.Tpo -c -o libengine_a-ePlayer.o `test -f 'engine/ePlayer.cpp' || echo '$(srcdir)/'`engine/ePlayer.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-ePlayer.Tpo $(DEPDIR)/libengine_a-ePlayer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/ePlayer.cpp' object='libengine_a-ePlayer.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-ePlayer.o -MD -MP -MF $(DEPDIR)/libengine_a-ePlayer.Tpo -c -o libengine_a-ePlayer.o `test -f 'engine/ePlayer.cpp' || echo '$(srcdir)/'`engine/ePlayer.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-ePlayer.Tpo $(DEPDIR)/libengine_a-ePlayer.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/ePlayer.cpp' object='libengine_a-ePlayer.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-ePlayer.o `test -f 'engine/ePlayer.cpp' || echo '$(srcdir)/'`engine/ePlayer.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-ePlayer.o `test -f 'engine/ePlayer.cpp' || echo '$(srcdir)/'`engine/ePlayer.cpp
 
 libengine_a-ePlayer.obj: engine/ePlayer.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-ePlayer.obj -MD -MP -MF $(DEPDIR)/libengine_a-ePlayer.Tpo -c -o libengine_a-ePlayer.obj `if test -f 'engine/ePlayer.cpp'; then $(CYGPATH_W) 'engine/ePlayer.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/ePlayer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-ePlayer.Tpo $(DEPDIR)/libengine_a-ePlayer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/ePlayer.cpp' object='libengine_a-ePlayer.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-ePlayer.obj -MD -MP -MF $(DEPDIR)/libengine_a-ePlayer.Tpo -c -o libengine_a-ePlayer.obj `if test -f 'engine/ePlayer.cpp'; then $(CYGPATH_W) 'engine/ePlayer.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/ePlayer.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-ePlayer.Tpo $(DEPDIR)/libengine_a-ePlayer.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/ePlayer.cpp' object='libengine_a-ePlayer.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-ePlayer.obj `if test -f 'engine/ePlayer.cpp'; then $(CYGPATH_W) 'engine/ePlayer.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/ePlayer.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-ePlayer.obj `if test -f 'engine/ePlayer.cpp'; then $(CYGPATH_W) 'engine/ePlayer.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/ePlayer.cpp'; fi`
 
 libengine_a-eSensor.o: engine/eSensor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eSensor.o -MD -MP -MF $(DEPDIR)/libengine_a-eSensor.Tpo -c -o libengine_a-eSensor.o `test -f 'engine/eSensor.cpp' || echo '$(srcdir)/'`engine/eSensor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eSensor.Tpo $(DEPDIR)/libengine_a-eSensor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eSensor.cpp' object='libengine_a-eSensor.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eSensor.o -MD -MP -MF $(DEPDIR)/libengine_a-eSensor.Tpo -c -o libengine_a-eSensor.o `test -f 'engine/eSensor.cpp' || echo '$(srcdir)/'`engine/eSensor.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eSensor.Tpo $(DEPDIR)/libengine_a-eSensor.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eSensor.cpp' object='libengine_a-eSensor.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eSensor.o `test -f 'engine/eSensor.cpp' || echo '$(srcdir)/'`engine/eSensor.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eSensor.o `test -f 'engine/eSensor.cpp' || echo '$(srcdir)/'`engine/eSensor.cpp
 
 libengine_a-eSensor.obj: engine/eSensor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eSensor.obj -MD -MP -MF $(DEPDIR)/libengine_a-eSensor.Tpo -c -o libengine_a-eSensor.obj `if test -f 'engine/eSensor.cpp'; then $(CYGPATH_W) 'engine/eSensor.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eSensor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eSensor.Tpo $(DEPDIR)/libengine_a-eSensor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eSensor.cpp' object='libengine_a-eSensor.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eSensor.obj -MD -MP -MF $(DEPDIR)/libengine_a-eSensor.Tpo -c -o libengine_a-eSensor.obj `if test -f 'engine/eSensor.cpp'; then $(CYGPATH_W) 'engine/eSensor.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eSensor.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eSensor.Tpo $(DEPDIR)/libengine_a-eSensor.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eSensor.cpp' object='libengine_a-eSensor.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eSensor.obj `if test -f 'engine/eSensor.cpp'; then $(CYGPATH_W) 'engine/eSensor.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eSensor.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eSensor.obj `if test -f 'engine/eSensor.cpp'; then $(CYGPATH_W) 'engine/eSensor.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eSensor.cpp'; fi`
 
 libengine_a-eSound.o: engine/eSound.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eSound.o -MD -MP -MF $(DEPDIR)/libengine_a-eSound.Tpo -c -o libengine_a-eSound.o `test -f 'engine/eSound.cpp' || echo '$(srcdir)/'`engine/eSound.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eSound.Tpo $(DEPDIR)/libengine_a-eSound.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eSound.cpp' object='libengine_a-eSound.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eSound.o -MD -MP -MF $(DEPDIR)/libengine_a-eSound.Tpo -c -o libengine_a-eSound.o `test -f 'engine/eSound.cpp' || echo '$(srcdir)/'`engine/eSound.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eSound.Tpo $(DEPDIR)/libengine_a-eSound.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eSound.cpp' object='libengine_a-eSound.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eSound.o `test -f 'engine/eSound.cpp' || echo '$(srcdir)/'`engine/eSound.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eSound.o `test -f 'engine/eSound.cpp' || echo '$(srcdir)/'`engine/eSound.cpp
 
 libengine_a-eSound.obj: engine/eSound.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eSound.obj -MD -MP -MF $(DEPDIR)/libengine_a-eSound.Tpo -c -o libengine_a-eSound.obj `if test -f 'engine/eSound.cpp'; then $(CYGPATH_W) 'engine/eSound.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eSound.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eSound.Tpo $(DEPDIR)/libengine_a-eSound.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eSound.cpp' object='libengine_a-eSound.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eSound.obj -MD -MP -MF $(DEPDIR)/libengine_a-eSound.Tpo -c -o libengine_a-eSound.obj `if test -f 'engine/eSound.cpp'; then $(CYGPATH_W) 'engine/eSound.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eSound.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eSound.Tpo $(DEPDIR)/libengine_a-eSound.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eSound.cpp' object='libengine_a-eSound.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eSound.obj `if test -f 'engine/eSound.cpp'; then $(CYGPATH_W) 'engine/eSound.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eSound.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eSound.obj `if test -f 'engine/eSound.cpp'; then $(CYGPATH_W) 'engine/eSound.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eSound.cpp'; fi`
 
 libengine_a-eTeam.o: engine/eTeam.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eTeam.o -MD -MP -MF $(DEPDIR)/libengine_a-eTeam.Tpo -c -o libengine_a-eTeam.o `test -f 'engine/eTeam.cpp' || echo '$(srcdir)/'`engine/eTeam.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eTeam.Tpo $(DEPDIR)/libengine_a-eTeam.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eTeam.cpp' object='libengine_a-eTeam.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eTeam.o -MD -MP -MF $(DEPDIR)/libengine_a-eTeam.Tpo -c -o libengine_a-eTeam.o `test -f 'engine/eTeam.cpp' || echo '$(srcdir)/'`engine/eTeam.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eTeam.Tpo $(DEPDIR)/libengine_a-eTeam.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eTeam.cpp' object='libengine_a-eTeam.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eTeam.o `test -f 'engine/eTeam.cpp' || echo '$(srcdir)/'`engine/eTeam.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eTeam.o `test -f 'engine/eTeam.cpp' || echo '$(srcdir)/'`engine/eTeam.cpp
 
 libengine_a-eTeam.obj: engine/eTeam.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eTeam.obj -MD -MP -MF $(DEPDIR)/libengine_a-eTeam.Tpo -c -o libengine_a-eTeam.obj `if test -f 'engine/eTeam.cpp'; then $(CYGPATH_W) 'engine/eTeam.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eTeam.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eTeam.Tpo $(DEPDIR)/libengine_a-eTeam.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eTeam.cpp' object='libengine_a-eTeam.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eTeam.obj -MD -MP -MF $(DEPDIR)/libengine_a-eTeam.Tpo -c -o libengine_a-eTeam.obj `if test -f 'engine/eTeam.cpp'; then $(CYGPATH_W) 'engine/eTeam.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eTeam.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eTeam.Tpo $(DEPDIR)/libengine_a-eTeam.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eTeam.cpp' object='libengine_a-eTeam.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eTeam.obj `if test -f 'engine/eTeam.cpp'; then $(CYGPATH_W) 'engine/eTeam.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eTeam.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eTeam.obj `if test -f 'engine/eTeam.cpp'; then $(CYGPATH_W) 'engine/eTeam.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eTeam.cpp'; fi`
 
 libengine_a-eTimer.o: engine/eTimer.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eTimer.o -MD -MP -MF $(DEPDIR)/libengine_a-eTimer.Tpo -c -o libengine_a-eTimer.o `test -f 'engine/eTimer.cpp' || echo '$(srcdir)/'`engine/eTimer.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eTimer.Tpo $(DEPDIR)/libengine_a-eTimer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eTimer.cpp' object='libengine_a-eTimer.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eTimer.o -MD -MP -MF $(DEPDIR)/libengine_a-eTimer.Tpo -c -o libengine_a-eTimer.o `test -f 'engine/eTimer.cpp' || echo '$(srcdir)/'`engine/eTimer.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eTimer.Tpo $(DEPDIR)/libengine_a-eTimer.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eTimer.cpp' object='libengine_a-eTimer.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eTimer.o `test -f 'engine/eTimer.cpp' || echo '$(srcdir)/'`engine/eTimer.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eTimer.o `test -f 'engine/eTimer.cpp' || echo '$(srcdir)/'`engine/eTimer.cpp
 
 libengine_a-eTimer.obj: engine/eTimer.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eTimer.obj -MD -MP -MF $(DEPDIR)/libengine_a-eTimer.Tpo -c -o libengine_a-eTimer.obj `if test -f 'engine/eTimer.cpp'; then $(CYGPATH_W) 'engine/eTimer.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eTimer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eTimer.Tpo $(DEPDIR)/libengine_a-eTimer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eTimer.cpp' object='libengine_a-eTimer.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eTimer.obj -MD -MP -MF $(DEPDIR)/libengine_a-eTimer.Tpo -c -o libengine_a-eTimer.obj `if test -f 'engine/eTimer.cpp'; then $(CYGPATH_W) 'engine/eTimer.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eTimer.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eTimer.Tpo $(DEPDIR)/libengine_a-eTimer.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eTimer.cpp' object='libengine_a-eTimer.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eTimer.obj `if test -f 'engine/eTimer.cpp'; then $(CYGPATH_W) 'engine/eTimer.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eTimer.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eTimer.obj `if test -f 'engine/eTimer.cpp'; then $(CYGPATH_W) 'engine/eTimer.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eTimer.cpp'; fi`
 
 libengine_a-eVoter.o: engine/eVoter.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eVoter.o -MD -MP -MF $(DEPDIR)/libengine_a-eVoter.Tpo -c -o libengine_a-eVoter.o `test -f 'engine/eVoter.cpp' || echo '$(srcdir)/'`engine/eVoter.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eVoter.Tpo $(DEPDIR)/libengine_a-eVoter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eVoter.cpp' object='libengine_a-eVoter.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eVoter.o -MD -MP -MF $(DEPDIR)/libengine_a-eVoter.Tpo -c -o libengine_a-eVoter.o `test -f 'engine/eVoter.cpp' || echo '$(srcdir)/'`engine/eVoter.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eVoter.Tpo $(DEPDIR)/libengine_a-eVoter.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eVoter.cpp' object='libengine_a-eVoter.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eVoter.o `test -f 'engine/eVoter.cpp' || echo '$(srcdir)/'`engine/eVoter.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eVoter.o `test -f 'engine/eVoter.cpp' || echo '$(srcdir)/'`engine/eVoter.cpp
 
 libengine_a-eVoter.obj: engine/eVoter.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eVoter.obj -MD -MP -MF $(DEPDIR)/libengine_a-eVoter.Tpo -c -o libengine_a-eVoter.obj `if test -f 'engine/eVoter.cpp'; then $(CYGPATH_W) 'engine/eVoter.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eVoter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eVoter.Tpo $(DEPDIR)/libengine_a-eVoter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eVoter.cpp' object='libengine_a-eVoter.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eVoter.obj -MD -MP -MF $(DEPDIR)/libengine_a-eVoter.Tpo -c -o libengine_a-eVoter.obj `if test -f 'engine/eVoter.cpp'; then $(CYGPATH_W) 'engine/eVoter.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eVoter.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eVoter.Tpo $(DEPDIR)/libengine_a-eVoter.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eVoter.cpp' object='libengine_a-eVoter.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eVoter.obj `if test -f 'engine/eVoter.cpp'; then $(CYGPATH_W) 'engine/eVoter.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eVoter.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eVoter.obj `if test -f 'engine/eVoter.cpp'; then $(CYGPATH_W) 'engine/eVoter.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eVoter.cpp'; fi`
 
 libengine_a-eWall.o: engine/eWall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eWall.o -MD -MP -MF $(DEPDIR)/libengine_a-eWall.Tpo -c -o libengine_a-eWall.o `test -f 'engine/eWall.cpp' || echo '$(srcdir)/'`engine/eWall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eWall.Tpo $(DEPDIR)/libengine_a-eWall.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eWall.cpp' object='libengine_a-eWall.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eWall.o -MD -MP -MF $(DEPDIR)/libengine_a-eWall.Tpo -c -o libengine_a-eWall.o `test -f 'engine/eWall.cpp' || echo '$(srcdir)/'`engine/eWall.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eWall.Tpo $(DEPDIR)/libengine_a-eWall.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eWall.cpp' object='libengine_a-eWall.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eWall.o `test -f 'engine/eWall.cpp' || echo '$(srcdir)/'`engine/eWall.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eWall.o `test -f 'engine/eWall.cpp' || echo '$(srcdir)/'`engine/eWall.cpp
 
 libengine_a-eWall.obj: engine/eWall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eWall.obj -MD -MP -MF $(DEPDIR)/libengine_a-eWall.Tpo -c -o libengine_a-eWall.obj `if test -f 'engine/eWall.cpp'; then $(CYGPATH_W) 'engine/eWall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eWall.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eWall.Tpo $(DEPDIR)/libengine_a-eWall.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eWall.cpp' object='libengine_a-eWall.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eWall.obj -MD -MP -MF $(DEPDIR)/libengine_a-eWall.Tpo -c -o libengine_a-eWall.obj `if test -f 'engine/eWall.cpp'; then $(CYGPATH_W) 'engine/eWall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eWall.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eWall.Tpo $(DEPDIR)/libengine_a-eWall.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eWall.cpp' object='libengine_a-eWall.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eWall.obj `if test -f 'engine/eWall.cpp'; then $(CYGPATH_W) 'engine/eWall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eWall.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eWall.obj `if test -f 'engine/eWall.cpp'; then $(CYGPATH_W) 'engine/eWall.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eWall.cpp'; fi`
 
 libengine_a-eRectangle.o: engine/eRectangle.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eRectangle.o -MD -MP -MF $(DEPDIR)/libengine_a-eRectangle.Tpo -c -o libengine_a-eRectangle.o `test -f 'engine/eRectangle.cpp' || echo '$(srcdir)/'`engine/eRectangle.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eRectangle.Tpo $(DEPDIR)/libengine_a-eRectangle.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eRectangle.cpp' object='libengine_a-eRectangle.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eRectangle.o -MD -MP -MF $(DEPDIR)/libengine_a-eRectangle.Tpo -c -o libengine_a-eRectangle.o `test -f 'engine/eRectangle.cpp' || echo '$(srcdir)/'`engine/eRectangle.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eRectangle.Tpo $(DEPDIR)/libengine_a-eRectangle.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eRectangle.cpp' object='libengine_a-eRectangle.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eRectangle.o `test -f 'engine/eRectangle.cpp' || echo '$(srcdir)/'`engine/eRectangle.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eRectangle.o `test -f 'engine/eRectangle.cpp' || echo '$(srcdir)/'`engine/eRectangle.cpp
 
 libengine_a-eRectangle.obj: engine/eRectangle.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eRectangle.obj -MD -MP -MF $(DEPDIR)/libengine_a-eRectangle.Tpo -c -o libengine_a-eRectangle.obj `if test -f 'engine/eRectangle.cpp'; then $(CYGPATH_W) 'engine/eRectangle.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eRectangle.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eRectangle.Tpo $(DEPDIR)/libengine_a-eRectangle.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eRectangle.cpp' object='libengine_a-eRectangle.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eRectangle.obj -MD -MP -MF $(DEPDIR)/libengine_a-eRectangle.Tpo -c -o libengine_a-eRectangle.obj `if test -f 'engine/eRectangle.cpp'; then $(CYGPATH_W) 'engine/eRectangle.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eRectangle.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eRectangle.Tpo $(DEPDIR)/libengine_a-eRectangle.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eRectangle.cpp' object='libengine_a-eRectangle.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eRectangle.obj `if test -f 'engine/eRectangle.cpp'; then $(CYGPATH_W) 'engine/eRectangle.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eRectangle.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eRectangle.obj `if test -f 'engine/eRectangle.cpp'; then $(CYGPATH_W) 'engine/eRectangle.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eRectangle.cpp'; fi`
 
 libengine_a-eLagCompensation.o: engine/eLagCompensation.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eLagCompensation.o -MD -MP -MF $(DEPDIR)/libengine_a-eLagCompensation.Tpo -c -o libengine_a-eLagCompensation.o `test -f 'engine/eLagCompensation.cpp' || echo '$(srcdir)/'`engine/eLagCompensation.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eLagCompensation.Tpo $(DEPDIR)/libengine_a-eLagCompensation.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eLagCompensation.cpp' object='libengine_a-eLagCompensation.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eLagCompensation.o -MD -MP -MF $(DEPDIR)/libengine_a-eLagCompensation.Tpo -c -o libengine_a-eLagCompensation.o `test -f 'engine/eLagCompensation.cpp' || echo '$(srcdir)/'`engine/eLagCompensation.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eLagCompensation.Tpo $(DEPDIR)/libengine_a-eLagCompensation.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eLagCompensation.cpp' object='libengine_a-eLagCompensation.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eLagCompensation.o `test -f 'engine/eLagCompensation.cpp' || echo '$(srcdir)/'`engine/eLagCompensation.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eLagCompensation.o `test -f 'engine/eLagCompensation.cpp' || echo '$(srcdir)/'`engine/eLagCompensation.cpp
 
 libengine_a-eLagCompensation.obj: engine/eLagCompensation.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eLagCompensation.obj -MD -MP -MF $(DEPDIR)/libengine_a-eLagCompensation.Tpo -c -o libengine_a-eLagCompensation.obj `if test -f 'engine/eLagCompensation.cpp'; then $(CYGPATH_W) 'engine/eLagCompensation.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eLagCompensation.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eLagCompensation.Tpo $(DEPDIR)/libengine_a-eLagCompensation.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eLagCompensation.cpp' object='libengine_a-eLagCompensation.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eLagCompensation.obj -MD -MP -MF $(DEPDIR)/libengine_a-eLagCompensation.Tpo -c -o libengine_a-eLagCompensation.obj `if test -f 'engine/eLagCompensation.cpp'; then $(CYGPATH_W) 'engine/eLagCompensation.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eLagCompensation.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eLagCompensation.Tpo $(DEPDIR)/libengine_a-eLagCompensation.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eLagCompensation.cpp' object='libengine_a-eLagCompensation.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eLagCompensation.obj `if test -f 'engine/eLagCompensation.cpp'; then $(CYGPATH_W) 'engine/eLagCompensation.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eLagCompensation.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eLagCompensation.obj `if test -f 'engine/eLagCompensation.cpp'; then $(CYGPATH_W) 'engine/eLagCompensation.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eLagCompensation.cpp'; fi`
 
 libengine_a-eChat.o: engine/eChat.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eChat.o -MD -MP -MF $(DEPDIR)/libengine_a-eChat.Tpo -c -o libengine_a-eChat.o `test -f 'engine/eChat.cpp' || echo '$(srcdir)/'`engine/eChat.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eChat.Tpo $(DEPDIR)/libengine_a-eChat.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eChat.cpp' object='libengine_a-eChat.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eChat.o -MD -MP -MF $(DEPDIR)/libengine_a-eChat.Tpo -c -o libengine_a-eChat.o `test -f 'engine/eChat.cpp' || echo '$(srcdir)/'`engine/eChat.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eChat.Tpo $(DEPDIR)/libengine_a-eChat.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eChat.cpp' object='libengine_a-eChat.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eChat.o `test -f 'engine/eChat.cpp' || echo '$(srcdir)/'`engine/eChat.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eChat.o `test -f 'engine/eChat.cpp' || echo '$(srcdir)/'`engine/eChat.cpp
 
 libengine_a-eChat.obj: engine/eChat.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eChat.obj -MD -MP -MF $(DEPDIR)/libengine_a-eChat.Tpo -c -o libengine_a-eChat.obj `if test -f 'engine/eChat.cpp'; then $(CYGPATH_W) 'engine/eChat.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eChat.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libengine_a-eChat.Tpo $(DEPDIR)/libengine_a-eChat.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eChat.cpp' object='libengine_a-eChat.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -MT libengine_a-eChat.obj -MD -MP -MF $(DEPDIR)/libengine_a-eChat.Tpo -c -o libengine_a-eChat.obj `if test -f 'engine/eChat.cpp'; then $(CYGPATH_W) 'engine/eChat.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eChat.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libengine_a-eChat.Tpo $(DEPDIR)/libengine_a-eChat.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eChat.cpp' object='libengine_a-eChat.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eChat.obj `if test -f 'engine/eChat.cpp'; then $(CYGPATH_W) 'engine/eChat.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eChat.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libengine_a_CXXFLAGS) $(CXXFLAGS) -c -o libengine_a-eChat.obj `if test -f 'engine/eChat.cpp'; then $(CYGPATH_W) 'engine/eChat.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eChat.cpp'; fi`
 
 libenginecore_a-eGameObject.o: engine/eGameObject.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -MT libenginecore_a-eGameObject.o -MD -MP -MF $(DEPDIR)/libenginecore_a-eGameObject.Tpo -c -o libenginecore_a-eGameObject.o `test -f 'engine/eGameObject.cpp' || echo '$(srcdir)/'`engine/eGameObject.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libenginecore_a-eGameObject.Tpo $(DEPDIR)/libenginecore_a-eGameObject.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eGameObject.cpp' object='libenginecore_a-eGameObject.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -MT libenginecore_a-eGameObject.o -MD -MP -MF $(DEPDIR)/libenginecore_a-eGameObject.Tpo -c -o libenginecore_a-eGameObject.o `test -f 'engine/eGameObject.cpp' || echo '$(srcdir)/'`engine/eGameObject.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libenginecore_a-eGameObject.Tpo $(DEPDIR)/libenginecore_a-eGameObject.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eGameObject.cpp' object='libenginecore_a-eGameObject.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -c -o libenginecore_a-eGameObject.o `test -f 'engine/eGameObject.cpp' || echo '$(srcdir)/'`engine/eGameObject.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -c -o libenginecore_a-eGameObject.o `test -f 'engine/eGameObject.cpp' || echo '$(srcdir)/'`engine/eGameObject.cpp
 
 libenginecore_a-eGameObject.obj: engine/eGameObject.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -MT libenginecore_a-eGameObject.obj -MD -MP -MF $(DEPDIR)/libenginecore_a-eGameObject.Tpo -c -o libenginecore_a-eGameObject.obj `if test -f 'engine/eGameObject.cpp'; then $(CYGPATH_W) 'engine/eGameObject.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eGameObject.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libenginecore_a-eGameObject.Tpo $(DEPDIR)/libenginecore_a-eGameObject.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eGameObject.cpp' object='libenginecore_a-eGameObject.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -MT libenginecore_a-eGameObject.obj -MD -MP -MF $(DEPDIR)/libenginecore_a-eGameObject.Tpo -c -o libenginecore_a-eGameObject.obj `if test -f 'engine/eGameObject.cpp'; then $(CYGPATH_W) 'engine/eGameObject.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eGameObject.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libenginecore_a-eGameObject.Tpo $(DEPDIR)/libenginecore_a-eGameObject.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eGameObject.cpp' object='libenginecore_a-eGameObject.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -c -o libenginecore_a-eGameObject.obj `if test -f 'engine/eGameObject.cpp'; then $(CYGPATH_W) 'engine/eGameObject.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eGameObject.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -c -o libenginecore_a-eGameObject.obj `if test -f 'engine/eGameObject.cpp'; then $(CYGPATH_W) 'engine/eGameObject.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eGameObject.cpp'; fi`
 
 libenginecore_a-eGrid.o: engine/eGrid.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -MT libenginecore_a-eGrid.o -MD -MP -MF $(DEPDIR)/libenginecore_a-eGrid.Tpo -c -o libenginecore_a-eGrid.o `test -f 'engine/eGrid.cpp' || echo '$(srcdir)/'`engine/eGrid.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libenginecore_a-eGrid.Tpo $(DEPDIR)/libenginecore_a-eGrid.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eGrid.cpp' object='libenginecore_a-eGrid.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -MT libenginecore_a-eGrid.o -MD -MP -MF $(DEPDIR)/libenginecore_a-eGrid.Tpo -c -o libenginecore_a-eGrid.o `test -f 'engine/eGrid.cpp' || echo '$(srcdir)/'`engine/eGrid.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libenginecore_a-eGrid.Tpo $(DEPDIR)/libenginecore_a-eGrid.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eGrid.cpp' object='libenginecore_a-eGrid.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -c -o libenginecore_a-eGrid.o `test -f 'engine/eGrid.cpp' || echo '$(srcdir)/'`engine/eGrid.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -c -o libenginecore_a-eGrid.o `test -f 'engine/eGrid.cpp' || echo '$(srcdir)/'`engine/eGrid.cpp
 
 libenginecore_a-eGrid.obj: engine/eGrid.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -MT libenginecore_a-eGrid.obj -MD -MP -MF $(DEPDIR)/libenginecore_a-eGrid.Tpo -c -o libenginecore_a-eGrid.obj `if test -f 'engine/eGrid.cpp'; then $(CYGPATH_W) 'engine/eGrid.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eGrid.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libenginecore_a-eGrid.Tpo $(DEPDIR)/libenginecore_a-eGrid.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='engine/eGrid.cpp' object='libenginecore_a-eGrid.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -MT libenginecore_a-eGrid.obj -MD -MP -MF $(DEPDIR)/libenginecore_a-eGrid.Tpo -c -o libenginecore_a-eGrid.obj `if test -f 'engine/eGrid.cpp'; then $(CYGPATH_W) 'engine/eGrid.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eGrid.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libenginecore_a-eGrid.Tpo $(DEPDIR)/libenginecore_a-eGrid.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='engine/eGrid.cpp' object='libenginecore_a-eGrid.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -c -o libenginecore_a-eGrid.obj `if test -f 'engine/eGrid.cpp'; then $(CYGPATH_W) 'engine/eGrid.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eGrid.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libenginecore_a_CXXFLAGS) $(CXXFLAGS) -c -o libenginecore_a-eGrid.obj `if test -f 'engine/eGrid.cpp'; then $(CYGPATH_W) 'engine/eGrid.cpp'; else $(CYGPATH_W) '$(srcdir)/engine/eGrid.cpp'; fi`
 
 libnetwork_a-md5.o: network/md5.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-md5.o -MD -MP -MF $(DEPDIR)/libnetwork_a-md5.Tpo -c -o libnetwork_a-md5.o `test -f 'network/md5.cpp' || echo '$(srcdir)/'`network/md5.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-md5.Tpo $(DEPDIR)/libnetwork_a-md5.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/md5.cpp' object='libnetwork_a-md5.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-md5.o -MD -MP -MF $(DEPDIR)/libnetwork_a-md5.Tpo -c -o libnetwork_a-md5.o `test -f 'network/md5.cpp' || echo '$(srcdir)/'`network/md5.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-md5.Tpo $(DEPDIR)/libnetwork_a-md5.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/md5.cpp' object='libnetwork_a-md5.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-md5.o `test -f 'network/md5.cpp' || echo '$(srcdir)/'`network/md5.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-md5.o `test -f 'network/md5.cpp' || echo '$(srcdir)/'`network/md5.cpp
 
 libnetwork_a-md5.obj: network/md5.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-md5.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-md5.Tpo -c -o libnetwork_a-md5.obj `if test -f 'network/md5.cpp'; then $(CYGPATH_W) 'network/md5.cpp'; else $(CYGPATH_W) '$(srcdir)/network/md5.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-md5.Tpo $(DEPDIR)/libnetwork_a-md5.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/md5.cpp' object='libnetwork_a-md5.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-md5.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-md5.Tpo -c -o libnetwork_a-md5.obj `if test -f 'network/md5.cpp'; then $(CYGPATH_W) 'network/md5.cpp'; else $(CYGPATH_W) '$(srcdir)/network/md5.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-md5.Tpo $(DEPDIR)/libnetwork_a-md5.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/md5.cpp' object='libnetwork_a-md5.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-md5.obj `if test -f 'network/md5.cpp'; then $(CYGPATH_W) 'network/md5.cpp'; else $(CYGPATH_W) '$(srcdir)/network/md5.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-md5.obj `if test -f 'network/md5.cpp'; then $(CYGPATH_W) 'network/md5.cpp'; else $(CYGPATH_W) '$(srcdir)/network/md5.cpp'; fi`
 
 libnetwork_a-nAuthentication.o: network/nAuthentication.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nAuthentication.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nAuthentication.Tpo -c -o libnetwork_a-nAuthentication.o `test -f 'network/nAuthentication.cpp' || echo '$(srcdir)/'`network/nAuthentication.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nAuthentication.Tpo $(DEPDIR)/libnetwork_a-nAuthentication.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nAuthentication.cpp' object='libnetwork_a-nAuthentication.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nAuthentication.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nAuthentication.Tpo -c -o libnetwork_a-nAuthentication.o `test -f 'network/nAuthentication.cpp' || echo '$(srcdir)/'`network/nAuthentication.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nAuthentication.Tpo $(DEPDIR)/libnetwork_a-nAuthentication.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nAuthentication.cpp' object='libnetwork_a-nAuthentication.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nAuthentication.o `test -f 'network/nAuthentication.cpp' || echo '$(srcdir)/'`network/nAuthentication.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nAuthentication.o `test -f 'network/nAuthentication.cpp' || echo '$(srcdir)/'`network/nAuthentication.cpp
 
 libnetwork_a-nAuthentication.obj: network/nAuthentication.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nAuthentication.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nAuthentication.Tpo -c -o libnetwork_a-nAuthentication.obj `if test -f 'network/nAuthentication.cpp'; then $(CYGPATH_W) 'network/nAuthentication.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nAuthentication.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nAuthentication.Tpo $(DEPDIR)/libnetwork_a-nAuthentication.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nAuthentication.cpp' object='libnetwork_a-nAuthentication.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nAuthentication.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nAuthentication.Tpo -c -o libnetwork_a-nAuthentication.obj `if test -f 'network/nAuthentication.cpp'; then $(CYGPATH_W) 'network/nAuthentication.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nAuthentication.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nAuthentication.Tpo $(DEPDIR)/libnetwork_a-nAuthentication.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nAuthentication.cpp' object='libnetwork_a-nAuthentication.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nAuthentication.obj `if test -f 'network/nAuthentication.cpp'; then $(CYGPATH_W) 'network/nAuthentication.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nAuthentication.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nAuthentication.obj `if test -f 'network/nAuthentication.cpp'; then $(CYGPATH_W) 'network/nAuthentication.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nAuthentication.cpp'; fi`
 
 libnetwork_a-nConfig.o: network/nConfig.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nConfig.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nConfig.Tpo -c -o libnetwork_a-nConfig.o `test -f 'network/nConfig.cpp' || echo '$(srcdir)/'`network/nConfig.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nConfig.Tpo $(DEPDIR)/libnetwork_a-nConfig.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nConfig.cpp' object='libnetwork_a-nConfig.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nConfig.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nConfig.Tpo -c -o libnetwork_a-nConfig.o `test -f 'network/nConfig.cpp' || echo '$(srcdir)/'`network/nConfig.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nConfig.Tpo $(DEPDIR)/libnetwork_a-nConfig.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nConfig.cpp' object='libnetwork_a-nConfig.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nConfig.o `test -f 'network/nConfig.cpp' || echo '$(srcdir)/'`network/nConfig.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nConfig.o `test -f 'network/nConfig.cpp' || echo '$(srcdir)/'`network/nConfig.cpp
 
 libnetwork_a-nConfig.obj: network/nConfig.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nConfig.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nConfig.Tpo -c -o libnetwork_a-nConfig.obj `if test -f 'network/nConfig.cpp'; then $(CYGPATH_W) 'network/nConfig.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nConfig.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nConfig.Tpo $(DEPDIR)/libnetwork_a-nConfig.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nConfig.cpp' object='libnetwork_a-nConfig.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nConfig.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nConfig.Tpo -c -o libnetwork_a-nConfig.obj `if test -f 'network/nConfig.cpp'; then $(CYGPATH_W) 'network/nConfig.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nConfig.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nConfig.Tpo $(DEPDIR)/libnetwork_a-nConfig.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nConfig.cpp' object='libnetwork_a-nConfig.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nConfig.obj `if test -f 'network/nConfig.cpp'; then $(CYGPATH_W) 'network/nConfig.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nConfig.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nConfig.obj `if test -f 'network/nConfig.cpp'; then $(CYGPATH_W) 'network/nConfig.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nConfig.cpp'; fi`
 
 libnetwork_a-nKrawall.o: network/nKrawall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nKrawall.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nKrawall.Tpo -c -o libnetwork_a-nKrawall.o `test -f 'network/nKrawall.cpp' || echo '$(srcdir)/'`network/nKrawall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nKrawall.Tpo $(DEPDIR)/libnetwork_a-nKrawall.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nKrawall.cpp' object='libnetwork_a-nKrawall.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nKrawall.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nKrawall.Tpo -c -o libnetwork_a-nKrawall.o `test -f 'network/nKrawall.cpp' || echo '$(srcdir)/'`network/nKrawall.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nKrawall.Tpo $(DEPDIR)/libnetwork_a-nKrawall.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nKrawall.cpp' object='libnetwork_a-nKrawall.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nKrawall.o `test -f 'network/nKrawall.cpp' || echo '$(srcdir)/'`network/nKrawall.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nKrawall.o `test -f 'network/nKrawall.cpp' || echo '$(srcdir)/'`network/nKrawall.cpp
 
 libnetwork_a-nKrawall.obj: network/nKrawall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nKrawall.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nKrawall.Tpo -c -o libnetwork_a-nKrawall.obj `if test -f 'network/nKrawall.cpp'; then $(CYGPATH_W) 'network/nKrawall.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nKrawall.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nKrawall.Tpo $(DEPDIR)/libnetwork_a-nKrawall.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nKrawall.cpp' object='libnetwork_a-nKrawall.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nKrawall.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nKrawall.Tpo -c -o libnetwork_a-nKrawall.obj `if test -f 'network/nKrawall.cpp'; then $(CYGPATH_W) 'network/nKrawall.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nKrawall.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nKrawall.Tpo $(DEPDIR)/libnetwork_a-nKrawall.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nKrawall.cpp' object='libnetwork_a-nKrawall.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nKrawall.obj `if test -f 'network/nKrawall.cpp'; then $(CYGPATH_W) 'network/nKrawall.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nKrawall.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nKrawall.obj `if test -f 'network/nKrawall.cpp'; then $(CYGPATH_W) 'network/nKrawall.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nKrawall.cpp'; fi`
 
 libnetwork_a-nKrawallPrivate.o: network/nKrawallPrivate.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nKrawallPrivate.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nKrawallPrivate.Tpo -c -o libnetwork_a-nKrawallPrivate.o `test -f 'network/nKrawallPrivate.cpp' || echo '$(srcdir)/'`network/nKrawallPrivate.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nKrawallPrivate.Tpo $(DEPDIR)/libnetwork_a-nKrawallPrivate.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nKrawallPrivate.cpp' object='libnetwork_a-nKrawallPrivate.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nKrawallPrivate.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nKrawallPrivate.Tpo -c -o libnetwork_a-nKrawallPrivate.o `test -f 'network/nKrawallPrivate.cpp' || echo '$(srcdir)/'`network/nKrawallPrivate.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nKrawallPrivate.Tpo $(DEPDIR)/libnetwork_a-nKrawallPrivate.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nKrawallPrivate.cpp' object='libnetwork_a-nKrawallPrivate.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nKrawallPrivate.o `test -f 'network/nKrawallPrivate.cpp' || echo '$(srcdir)/'`network/nKrawallPrivate.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nKrawallPrivate.o `test -f 'network/nKrawallPrivate.cpp' || echo '$(srcdir)/'`network/nKrawallPrivate.cpp
 
 libnetwork_a-nKrawallPrivate.obj: network/nKrawallPrivate.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nKrawallPrivate.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nKrawallPrivate.Tpo -c -o libnetwork_a-nKrawallPrivate.obj `if test -f 'network/nKrawallPrivate.cpp'; then $(CYGPATH_W) 'network/nKrawallPrivate.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nKrawallPrivate.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nKrawallPrivate.Tpo $(DEPDIR)/libnetwork_a-nKrawallPrivate.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nKrawallPrivate.cpp' object='libnetwork_a-nKrawallPrivate.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nKrawallPrivate.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nKrawallPrivate.Tpo -c -o libnetwork_a-nKrawallPrivate.obj `if test -f 'network/nKrawallPrivate.cpp'; then $(CYGPATH_W) 'network/nKrawallPrivate.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nKrawallPrivate.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nKrawallPrivate.Tpo $(DEPDIR)/libnetwork_a-nKrawallPrivate.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nKrawallPrivate.cpp' object='libnetwork_a-nKrawallPrivate.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nKrawallPrivate.obj `if test -f 'network/nKrawallPrivate.cpp'; then $(CYGPATH_W) 'network/nKrawallPrivate.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nKrawallPrivate.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nKrawallPrivate.obj `if test -f 'network/nKrawallPrivate.cpp'; then $(CYGPATH_W) 'network/nKrawallPrivate.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nKrawallPrivate.cpp'; fi`
 
 libnetwork_a-nNetObject.o: network/nNetObject.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nNetObject.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nNetObject.Tpo -c -o libnetwork_a-nNetObject.o `test -f 'network/nNetObject.cpp' || echo '$(srcdir)/'`network/nNetObject.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nNetObject.Tpo $(DEPDIR)/libnetwork_a-nNetObject.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nNetObject.cpp' object='libnetwork_a-nNetObject.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nNetObject.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nNetObject.Tpo -c -o libnetwork_a-nNetObject.o `test -f 'network/nNetObject.cpp' || echo '$(srcdir)/'`network/nNetObject.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nNetObject.Tpo $(DEPDIR)/libnetwork_a-nNetObject.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nNetObject.cpp' object='libnetwork_a-nNetObject.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nNetObject.o `test -f 'network/nNetObject.cpp' || echo '$(srcdir)/'`network/nNetObject.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nNetObject.o `test -f 'network/nNetObject.cpp' || echo '$(srcdir)/'`network/nNetObject.cpp
 
 libnetwork_a-nNetObject.obj: network/nNetObject.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nNetObject.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nNetObject.Tpo -c -o libnetwork_a-nNetObject.obj `if test -f 'network/nNetObject.cpp'; then $(CYGPATH_W) 'network/nNetObject.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nNetObject.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nNetObject.Tpo $(DEPDIR)/libnetwork_a-nNetObject.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nNetObject.cpp' object='libnetwork_a-nNetObject.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nNetObject.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nNetObject.Tpo -c -o libnetwork_a-nNetObject.obj `if test -f 'network/nNetObject.cpp'; then $(CYGPATH_W) 'network/nNetObject.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nNetObject.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nNetObject.Tpo $(DEPDIR)/libnetwork_a-nNetObject.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nNetObject.cpp' object='libnetwork_a-nNetObject.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nNetObject.obj `if test -f 'network/nNetObject.cpp'; then $(CYGPATH_W) 'network/nNetObject.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nNetObject.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nNetObject.obj `if test -f 'network/nNetObject.cpp'; then $(CYGPATH_W) 'network/nNetObject.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nNetObject.cpp'; fi`
 
 libnetwork_a-nNetwork.o: network/nNetwork.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nNetwork.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nNetwork.Tpo -c -o libnetwork_a-nNetwork.o `test -f 'network/nNetwork.cpp' || echo '$(srcdir)/'`network/nNetwork.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nNetwork.Tpo $(DEPDIR)/libnetwork_a-nNetwork.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nNetwork.cpp' object='libnetwork_a-nNetwork.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nNetwork.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nNetwork.Tpo -c -o libnetwork_a-nNetwork.o `test -f 'network/nNetwork.cpp' || echo '$(srcdir)/'`network/nNetwork.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nNetwork.Tpo $(DEPDIR)/libnetwork_a-nNetwork.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nNetwork.cpp' object='libnetwork_a-nNetwork.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nNetwork.o `test -f 'network/nNetwork.cpp' || echo '$(srcdir)/'`network/nNetwork.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nNetwork.o `test -f 'network/nNetwork.cpp' || echo '$(srcdir)/'`network/nNetwork.cpp
 
 libnetwork_a-nNetwork.obj: network/nNetwork.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nNetwork.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nNetwork.Tpo -c -o libnetwork_a-nNetwork.obj `if test -f 'network/nNetwork.cpp'; then $(CYGPATH_W) 'network/nNetwork.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nNetwork.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nNetwork.Tpo $(DEPDIR)/libnetwork_a-nNetwork.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nNetwork.cpp' object='libnetwork_a-nNetwork.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nNetwork.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nNetwork.Tpo -c -o libnetwork_a-nNetwork.obj `if test -f 'network/nNetwork.cpp'; then $(CYGPATH_W) 'network/nNetwork.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nNetwork.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nNetwork.Tpo $(DEPDIR)/libnetwork_a-nNetwork.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nNetwork.cpp' object='libnetwork_a-nNetwork.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nNetwork.obj `if test -f 'network/nNetwork.cpp'; then $(CYGPATH_W) 'network/nNetwork.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nNetwork.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nNetwork.obj `if test -f 'network/nNetwork.cpp'; then $(CYGPATH_W) 'network/nNetwork.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nNetwork.cpp'; fi`
 
 libnetwork_a-nObserver.o: network/nObserver.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nObserver.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nObserver.Tpo -c -o libnetwork_a-nObserver.o `test -f 'network/nObserver.cpp' || echo '$(srcdir)/'`network/nObserver.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nObserver.Tpo $(DEPDIR)/libnetwork_a-nObserver.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nObserver.cpp' object='libnetwork_a-nObserver.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nObserver.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nObserver.Tpo -c -o libnetwork_a-nObserver.o `test -f 'network/nObserver.cpp' || echo '$(srcdir)/'`network/nObserver.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nObserver.Tpo $(DEPDIR)/libnetwork_a-nObserver.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nObserver.cpp' object='libnetwork_a-nObserver.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nObserver.o `test -f 'network/nObserver.cpp' || echo '$(srcdir)/'`network/nObserver.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nObserver.o `test -f 'network/nObserver.cpp' || echo '$(srcdir)/'`network/nObserver.cpp
 
 libnetwork_a-nObserver.obj: network/nObserver.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nObserver.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nObserver.Tpo -c -o libnetwork_a-nObserver.obj `if test -f 'network/nObserver.cpp'; then $(CYGPATH_W) 'network/nObserver.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nObserver.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nObserver.Tpo $(DEPDIR)/libnetwork_a-nObserver.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nObserver.cpp' object='libnetwork_a-nObserver.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nObserver.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nObserver.Tpo -c -o libnetwork_a-nObserver.obj `if test -f 'network/nObserver.cpp'; then $(CYGPATH_W) 'network/nObserver.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nObserver.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nObserver.Tpo $(DEPDIR)/libnetwork_a-nObserver.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nObserver.cpp' object='libnetwork_a-nObserver.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nObserver.obj `if test -f 'network/nObserver.cpp'; then $(CYGPATH_W) 'network/nObserver.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nObserver.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nObserver.obj `if test -f 'network/nObserver.cpp'; then $(CYGPATH_W) 'network/nObserver.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nObserver.cpp'; fi`
 
 libnetwork_a-nPriorizing.o: network/nPriorizing.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nPriorizing.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nPriorizing.Tpo -c -o libnetwork_a-nPriorizing.o `test -f 'network/nPriorizing.cpp' || echo '$(srcdir)/'`network/nPriorizing.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nPriorizing.Tpo $(DEPDIR)/libnetwork_a-nPriorizing.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nPriorizing.cpp' object='libnetwork_a-nPriorizing.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nPriorizing.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nPriorizing.Tpo -c -o libnetwork_a-nPriorizing.o `test -f 'network/nPriorizing.cpp' || echo '$(srcdir)/'`network/nPriorizing.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nPriorizing.Tpo $(DEPDIR)/libnetwork_a-nPriorizing.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nPriorizing.cpp' object='libnetwork_a-nPriorizing.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nPriorizing.o `test -f 'network/nPriorizing.cpp' || echo '$(srcdir)/'`network/nPriorizing.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nPriorizing.o `test -f 'network/nPriorizing.cpp' || echo '$(srcdir)/'`network/nPriorizing.cpp
 
 libnetwork_a-nPriorizing.obj: network/nPriorizing.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nPriorizing.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nPriorizing.Tpo -c -o libnetwork_a-nPriorizing.obj `if test -f 'network/nPriorizing.cpp'; then $(CYGPATH_W) 'network/nPriorizing.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nPriorizing.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nPriorizing.Tpo $(DEPDIR)/libnetwork_a-nPriorizing.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nPriorizing.cpp' object='libnetwork_a-nPriorizing.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nPriorizing.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nPriorizing.Tpo -c -o libnetwork_a-nPriorizing.obj `if test -f 'network/nPriorizing.cpp'; then $(CYGPATH_W) 'network/nPriorizing.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nPriorizing.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nPriorizing.Tpo $(DEPDIR)/libnetwork_a-nPriorizing.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nPriorizing.cpp' object='libnetwork_a-nPriorizing.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nPriorizing.obj `if test -f 'network/nPriorizing.cpp'; then $(CYGPATH_W) 'network/nPriorizing.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nPriorizing.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nPriorizing.obj `if test -f 'network/nPriorizing.cpp'; then $(CYGPATH_W) 'network/nPriorizing.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nPriorizing.cpp'; fi`
 
 libnetwork_a-nServerInfo.o: network/nServerInfo.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nServerInfo.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nServerInfo.Tpo -c -o libnetwork_a-nServerInfo.o `test -f 'network/nServerInfo.cpp' || echo '$(srcdir)/'`network/nServerInfo.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nServerInfo.Tpo $(DEPDIR)/libnetwork_a-nServerInfo.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nServerInfo.cpp' object='libnetwork_a-nServerInfo.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nServerInfo.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nServerInfo.Tpo -c -o libnetwork_a-nServerInfo.o `test -f 'network/nServerInfo.cpp' || echo '$(srcdir)/'`network/nServerInfo.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nServerInfo.Tpo $(DEPDIR)/libnetwork_a-nServerInfo.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nServerInfo.cpp' object='libnetwork_a-nServerInfo.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nServerInfo.o `test -f 'network/nServerInfo.cpp' || echo '$(srcdir)/'`network/nServerInfo.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nServerInfo.o `test -f 'network/nServerInfo.cpp' || echo '$(srcdir)/'`network/nServerInfo.cpp
 
 libnetwork_a-nServerInfo.obj: network/nServerInfo.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nServerInfo.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nServerInfo.Tpo -c -o libnetwork_a-nServerInfo.obj `if test -f 'network/nServerInfo.cpp'; then $(CYGPATH_W) 'network/nServerInfo.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nServerInfo.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nServerInfo.Tpo $(DEPDIR)/libnetwork_a-nServerInfo.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nServerInfo.cpp' object='libnetwork_a-nServerInfo.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nServerInfo.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nServerInfo.Tpo -c -o libnetwork_a-nServerInfo.obj `if test -f 'network/nServerInfo.cpp'; then $(CYGPATH_W) 'network/nServerInfo.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nServerInfo.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nServerInfo.Tpo $(DEPDIR)/libnetwork_a-nServerInfo.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nServerInfo.cpp' object='libnetwork_a-nServerInfo.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nServerInfo.obj `if test -f 'network/nServerInfo.cpp'; then $(CYGPATH_W) 'network/nServerInfo.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nServerInfo.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nServerInfo.obj `if test -f 'network/nServerInfo.cpp'; then $(CYGPATH_W) 'network/nServerInfo.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nServerInfo.cpp'; fi`
 
 libnetwork_a-nSocket.o: network/nSocket.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nSocket.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nSocket.Tpo -c -o libnetwork_a-nSocket.o `test -f 'network/nSocket.cpp' || echo '$(srcdir)/'`network/nSocket.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nSocket.Tpo $(DEPDIR)/libnetwork_a-nSocket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nSocket.cpp' object='libnetwork_a-nSocket.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nSocket.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nSocket.Tpo -c -o libnetwork_a-nSocket.o `test -f 'network/nSocket.cpp' || echo '$(srcdir)/'`network/nSocket.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nSocket.Tpo $(DEPDIR)/libnetwork_a-nSocket.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nSocket.cpp' object='libnetwork_a-nSocket.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nSocket.o `test -f 'network/nSocket.cpp' || echo '$(srcdir)/'`network/nSocket.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nSocket.o `test -f 'network/nSocket.cpp' || echo '$(srcdir)/'`network/nSocket.cpp
 
 libnetwork_a-nSocket.obj: network/nSocket.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nSocket.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nSocket.Tpo -c -o libnetwork_a-nSocket.obj `if test -f 'network/nSocket.cpp'; then $(CYGPATH_W) 'network/nSocket.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nSocket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nSocket.Tpo $(DEPDIR)/libnetwork_a-nSocket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nSocket.cpp' object='libnetwork_a-nSocket.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nSocket.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nSocket.Tpo -c -o libnetwork_a-nSocket.obj `if test -f 'network/nSocket.cpp'; then $(CYGPATH_W) 'network/nSocket.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nSocket.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nSocket.Tpo $(DEPDIR)/libnetwork_a-nSocket.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nSocket.cpp' object='libnetwork_a-nSocket.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nSocket.obj `if test -f 'network/nSocket.cpp'; then $(CYGPATH_W) 'network/nSocket.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nSocket.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nSocket.obj `if test -f 'network/nSocket.cpp'; then $(CYGPATH_W) 'network/nSocket.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nSocket.cpp'; fi`
 
 libnetwork_a-nSpamProtection.o: network/nSpamProtection.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nSpamProtection.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nSpamProtection.Tpo -c -o libnetwork_a-nSpamProtection.o `test -f 'network/nSpamProtection.cpp' || echo '$(srcdir)/'`network/nSpamProtection.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nSpamProtection.Tpo $(DEPDIR)/libnetwork_a-nSpamProtection.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nSpamProtection.cpp' object='libnetwork_a-nSpamProtection.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nSpamProtection.o -MD -MP -MF $(DEPDIR)/libnetwork_a-nSpamProtection.Tpo -c -o libnetwork_a-nSpamProtection.o `test -f 'network/nSpamProtection.cpp' || echo '$(srcdir)/'`network/nSpamProtection.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nSpamProtection.Tpo $(DEPDIR)/libnetwork_a-nSpamProtection.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nSpamProtection.cpp' object='libnetwork_a-nSpamProtection.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nSpamProtection.o `test -f 'network/nSpamProtection.cpp' || echo '$(srcdir)/'`network/nSpamProtection.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nSpamProtection.o `test -f 'network/nSpamProtection.cpp' || echo '$(srcdir)/'`network/nSpamProtection.cpp
 
 libnetwork_a-nSpamProtection.obj: network/nSpamProtection.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nSpamProtection.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nSpamProtection.Tpo -c -o libnetwork_a-nSpamProtection.obj `if test -f 'network/nSpamProtection.cpp'; then $(CYGPATH_W) 'network/nSpamProtection.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nSpamProtection.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libnetwork_a-nSpamProtection.Tpo $(DEPDIR)/libnetwork_a-nSpamProtection.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/nSpamProtection.cpp' object='libnetwork_a-nSpamProtection.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -MT libnetwork_a-nSpamProtection.obj -MD -MP -MF $(DEPDIR)/libnetwork_a-nSpamProtection.Tpo -c -o libnetwork_a-nSpamProtection.obj `if test -f 'network/nSpamProtection.cpp'; then $(CYGPATH_W) 'network/nSpamProtection.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nSpamProtection.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libnetwork_a-nSpamProtection.Tpo $(DEPDIR)/libnetwork_a-nSpamProtection.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/nSpamProtection.cpp' object='libnetwork_a-nSpamProtection.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nSpamProtection.obj `if test -f 'network/nSpamProtection.cpp'; then $(CYGPATH_W) 'network/nSpamProtection.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nSpamProtection.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libnetwork_a_CXXFLAGS) $(CXXFLAGS) -c -o libnetwork_a-nSpamProtection.obj `if test -f 'network/nSpamProtection.cpp'; then $(CYGPATH_W) 'network/nSpamProtection.cpp'; else $(CYGPATH_W) '$(srcdir)/network/nSpamProtection.cpp'; fi`
 
 librender_a-rConsole.o: render/rConsole.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rConsole.o -MD -MP -MF $(DEPDIR)/librender_a-rConsole.Tpo -c -o librender_a-rConsole.o `test -f 'render/rConsole.cpp' || echo '$(srcdir)/'`render/rConsole.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rConsole.Tpo $(DEPDIR)/librender_a-rConsole.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rConsole.cpp' object='librender_a-rConsole.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rConsole.o -MD -MP -MF $(DEPDIR)/librender_a-rConsole.Tpo -c -o librender_a-rConsole.o `test -f 'render/rConsole.cpp' || echo '$(srcdir)/'`render/rConsole.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rConsole.Tpo $(DEPDIR)/librender_a-rConsole.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rConsole.cpp' object='librender_a-rConsole.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rConsole.o `test -f 'render/rConsole.cpp' || echo '$(srcdir)/'`render/rConsole.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rConsole.o `test -f 'render/rConsole.cpp' || echo '$(srcdir)/'`render/rConsole.cpp
 
 librender_a-rConsole.obj: render/rConsole.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rConsole.obj -MD -MP -MF $(DEPDIR)/librender_a-rConsole.Tpo -c -o librender_a-rConsole.obj `if test -f 'render/rConsole.cpp'; then $(CYGPATH_W) 'render/rConsole.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rConsole.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rConsole.Tpo $(DEPDIR)/librender_a-rConsole.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rConsole.cpp' object='librender_a-rConsole.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rConsole.obj -MD -MP -MF $(DEPDIR)/librender_a-rConsole.Tpo -c -o librender_a-rConsole.obj `if test -f 'render/rConsole.cpp'; then $(CYGPATH_W) 'render/rConsole.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rConsole.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rConsole.Tpo $(DEPDIR)/librender_a-rConsole.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rConsole.cpp' object='librender_a-rConsole.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rConsole.obj `if test -f 'render/rConsole.cpp'; then $(CYGPATH_W) 'render/rConsole.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rConsole.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rConsole.obj `if test -f 'render/rConsole.cpp'; then $(CYGPATH_W) 'render/rConsole.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rConsole.cpp'; fi`
 
 librender_a-rConsoleGraph.o: render/rConsoleGraph.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rConsoleGraph.o -MD -MP -MF $(DEPDIR)/librender_a-rConsoleGraph.Tpo -c -o librender_a-rConsoleGraph.o `test -f 'render/rConsoleGraph.cpp' || echo '$(srcdir)/'`render/rConsoleGraph.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rConsoleGraph.Tpo $(DEPDIR)/librender_a-rConsoleGraph.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rConsoleGraph.cpp' object='librender_a-rConsoleGraph.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rConsoleGraph.o -MD -MP -MF $(DEPDIR)/librender_a-rConsoleGraph.Tpo -c -o librender_a-rConsoleGraph.o `test -f 'render/rConsoleGraph.cpp' || echo '$(srcdir)/'`render/rConsoleGraph.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rConsoleGraph.Tpo $(DEPDIR)/librender_a-rConsoleGraph.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rConsoleGraph.cpp' object='librender_a-rConsoleGraph.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rConsoleGraph.o `test -f 'render/rConsoleGraph.cpp' || echo '$(srcdir)/'`render/rConsoleGraph.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rConsoleGraph.o `test -f 'render/rConsoleGraph.cpp' || echo '$(srcdir)/'`render/rConsoleGraph.cpp
 
 librender_a-rConsoleGraph.obj: render/rConsoleGraph.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rConsoleGraph.obj -MD -MP -MF $(DEPDIR)/librender_a-rConsoleGraph.Tpo -c -o librender_a-rConsoleGraph.obj `if test -f 'render/rConsoleGraph.cpp'; then $(CYGPATH_W) 'render/rConsoleGraph.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rConsoleGraph.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rConsoleGraph.Tpo $(DEPDIR)/librender_a-rConsoleGraph.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rConsoleGraph.cpp' object='librender_a-rConsoleGraph.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rConsoleGraph.obj -MD -MP -MF $(DEPDIR)/librender_a-rConsoleGraph.Tpo -c -o librender_a-rConsoleGraph.obj `if test -f 'render/rConsoleGraph.cpp'; then $(CYGPATH_W) 'render/rConsoleGraph.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rConsoleGraph.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rConsoleGraph.Tpo $(DEPDIR)/librender_a-rConsoleGraph.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rConsoleGraph.cpp' object='librender_a-rConsoleGraph.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rConsoleGraph.obj `if test -f 'render/rConsoleGraph.cpp'; then $(CYGPATH_W) 'render/rConsoleGraph.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rConsoleGraph.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rConsoleGraph.obj `if test -f 'render/rConsoleGraph.cpp'; then $(CYGPATH_W) 'render/rConsoleGraph.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rConsoleGraph.cpp'; fi`
 
 librender_a-rFont.o: render/rFont.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rFont.o -MD -MP -MF $(DEPDIR)/librender_a-rFont.Tpo -c -o librender_a-rFont.o `test -f 'render/rFont.cpp' || echo '$(srcdir)/'`render/rFont.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rFont.Tpo $(DEPDIR)/librender_a-rFont.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rFont.cpp' object='librender_a-rFont.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rFont.o -MD -MP -MF $(DEPDIR)/librender_a-rFont.Tpo -c -o librender_a-rFont.o `test -f 'render/rFont.cpp' || echo '$(srcdir)/'`render/rFont.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rFont.Tpo $(DEPDIR)/librender_a-rFont.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rFont.cpp' object='librender_a-rFont.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rFont.o `test -f 'render/rFont.cpp' || echo '$(srcdir)/'`render/rFont.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rFont.o `test -f 'render/rFont.cpp' || echo '$(srcdir)/'`render/rFont.cpp
 
 librender_a-rFont.obj: render/rFont.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rFont.obj -MD -MP -MF $(DEPDIR)/librender_a-rFont.Tpo -c -o librender_a-rFont.obj `if test -f 'render/rFont.cpp'; then $(CYGPATH_W) 'render/rFont.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rFont.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rFont.Tpo $(DEPDIR)/librender_a-rFont.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rFont.cpp' object='librender_a-rFont.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rFont.obj -MD -MP -MF $(DEPDIR)/librender_a-rFont.Tpo -c -o librender_a-rFont.obj `if test -f 'render/rFont.cpp'; then $(CYGPATH_W) 'render/rFont.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rFont.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rFont.Tpo $(DEPDIR)/librender_a-rFont.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rFont.cpp' object='librender_a-rFont.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rFont.obj `if test -f 'render/rFont.cpp'; then $(CYGPATH_W) 'render/rFont.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rFont.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rFont.obj `if test -f 'render/rFont.cpp'; then $(CYGPATH_W) 'render/rFont.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rFont.cpp'; fi`
 
 librender_a-rGL.o: render/rGL.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rGL.o -MD -MP -MF $(DEPDIR)/librender_a-rGL.Tpo -c -o librender_a-rGL.o `test -f 'render/rGL.cpp' || echo '$(srcdir)/'`render/rGL.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rGL.Tpo $(DEPDIR)/librender_a-rGL.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rGL.cpp' object='librender_a-rGL.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rGL.o -MD -MP -MF $(DEPDIR)/librender_a-rGL.Tpo -c -o librender_a-rGL.o `test -f 'render/rGL.cpp' || echo '$(srcdir)/'`render/rGL.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rGL.Tpo $(DEPDIR)/librender_a-rGL.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rGL.cpp' object='librender_a-rGL.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rGL.o `test -f 'render/rGL.cpp' || echo '$(srcdir)/'`render/rGL.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rGL.o `test -f 'render/rGL.cpp' || echo '$(srcdir)/'`render/rGL.cpp
 
 librender_a-rGL.obj: render/rGL.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rGL.obj -MD -MP -MF $(DEPDIR)/librender_a-rGL.Tpo -c -o librender_a-rGL.obj `if test -f 'render/rGL.cpp'; then $(CYGPATH_W) 'render/rGL.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rGL.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rGL.Tpo $(DEPDIR)/librender_a-rGL.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rGL.cpp' object='librender_a-rGL.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rGL.obj -MD -MP -MF $(DEPDIR)/librender_a-rGL.Tpo -c -o librender_a-rGL.obj `if test -f 'render/rGL.cpp'; then $(CYGPATH_W) 'render/rGL.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rGL.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rGL.Tpo $(DEPDIR)/librender_a-rGL.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rGL.cpp' object='librender_a-rGL.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rGL.obj `if test -f 'render/rGL.cpp'; then $(CYGPATH_W) 'render/rGL.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rGL.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rGL.obj `if test -f 'render/rGL.cpp'; then $(CYGPATH_W) 'render/rGL.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rGL.cpp'; fi`
 
 librender_a-rGLRender.o: render/rGLRender.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rGLRender.o -MD -MP -MF $(DEPDIR)/librender_a-rGLRender.Tpo -c -o librender_a-rGLRender.o `test -f 'render/rGLRender.cpp' || echo '$(srcdir)/'`render/rGLRender.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rGLRender.Tpo $(DEPDIR)/librender_a-rGLRender.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rGLRender.cpp' object='librender_a-rGLRender.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rGLRender.o -MD -MP -MF $(DEPDIR)/librender_a-rGLRender.Tpo -c -o librender_a-rGLRender.o `test -f 'render/rGLRender.cpp' || echo '$(srcdir)/'`render/rGLRender.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rGLRender.Tpo $(DEPDIR)/librender_a-rGLRender.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rGLRender.cpp' object='librender_a-rGLRender.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rGLRender.o `test -f 'render/rGLRender.cpp' || echo '$(srcdir)/'`render/rGLRender.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rGLRender.o `test -f 'render/rGLRender.cpp' || echo '$(srcdir)/'`render/rGLRender.cpp
 
 librender_a-rGLRender.obj: render/rGLRender.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rGLRender.obj -MD -MP -MF $(DEPDIR)/librender_a-rGLRender.Tpo -c -o librender_a-rGLRender.obj `if test -f 'render/rGLRender.cpp'; then $(CYGPATH_W) 'render/rGLRender.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rGLRender.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rGLRender.Tpo $(DEPDIR)/librender_a-rGLRender.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rGLRender.cpp' object='librender_a-rGLRender.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rGLRender.obj -MD -MP -MF $(DEPDIR)/librender_a-rGLRender.Tpo -c -o librender_a-rGLRender.obj `if test -f 'render/rGLRender.cpp'; then $(CYGPATH_W) 'render/rGLRender.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rGLRender.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rGLRender.Tpo $(DEPDIR)/librender_a-rGLRender.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rGLRender.cpp' object='librender_a-rGLRender.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rGLRender.obj `if test -f 'render/rGLRender.cpp'; then $(CYGPATH_W) 'render/rGLRender.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rGLRender.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rGLRender.obj `if test -f 'render/rGLRender.cpp'; then $(CYGPATH_W) 'render/rGLRender.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rGLRender.cpp'; fi`
 
 librender_a-rModel.o: render/rModel.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rModel.o -MD -MP -MF $(DEPDIR)/librender_a-rModel.Tpo -c -o librender_a-rModel.o `test -f 'render/rModel.cpp' || echo '$(srcdir)/'`render/rModel.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rModel.Tpo $(DEPDIR)/librender_a-rModel.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rModel.cpp' object='librender_a-rModel.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rModel.o -MD -MP -MF $(DEPDIR)/librender_a-rModel.Tpo -c -o librender_a-rModel.o `test -f 'render/rModel.cpp' || echo '$(srcdir)/'`render/rModel.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rModel.Tpo $(DEPDIR)/librender_a-rModel.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rModel.cpp' object='librender_a-rModel.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rModel.o `test -f 'render/rModel.cpp' || echo '$(srcdir)/'`render/rModel.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rModel.o `test -f 'render/rModel.cpp' || echo '$(srcdir)/'`render/rModel.cpp
 
 librender_a-rModel.obj: render/rModel.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rModel.obj -MD -MP -MF $(DEPDIR)/librender_a-rModel.Tpo -c -o librender_a-rModel.obj `if test -f 'render/rModel.cpp'; then $(CYGPATH_W) 'render/rModel.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rModel.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rModel.Tpo $(DEPDIR)/librender_a-rModel.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rModel.cpp' object='librender_a-rModel.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rModel.obj -MD -MP -MF $(DEPDIR)/librender_a-rModel.Tpo -c -o librender_a-rModel.obj `if test -f 'render/rModel.cpp'; then $(CYGPATH_W) 'render/rModel.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rModel.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rModel.Tpo $(DEPDIR)/librender_a-rModel.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rModel.cpp' object='librender_a-rModel.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rModel.obj `if test -f 'render/rModel.cpp'; then $(CYGPATH_W) 'render/rModel.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rModel.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rModel.obj `if test -f 'render/rModel.cpp'; then $(CYGPATH_W) 'render/rModel.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rModel.cpp'; fi`
 
 librender_a-rRender.o: render/rRender.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rRender.o -MD -MP -MF $(DEPDIR)/librender_a-rRender.Tpo -c -o librender_a-rRender.o `test -f 'render/rRender.cpp' || echo '$(srcdir)/'`render/rRender.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rRender.Tpo $(DEPDIR)/librender_a-rRender.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rRender.cpp' object='librender_a-rRender.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rRender.o -MD -MP -MF $(DEPDIR)/librender_a-rRender.Tpo -c -o librender_a-rRender.o `test -f 'render/rRender.cpp' || echo '$(srcdir)/'`render/rRender.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rRender.Tpo $(DEPDIR)/librender_a-rRender.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rRender.cpp' object='librender_a-rRender.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rRender.o `test -f 'render/rRender.cpp' || echo '$(srcdir)/'`render/rRender.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rRender.o `test -f 'render/rRender.cpp' || echo '$(srcdir)/'`render/rRender.cpp
 
 librender_a-rRender.obj: render/rRender.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rRender.obj -MD -MP -MF $(DEPDIR)/librender_a-rRender.Tpo -c -o librender_a-rRender.obj `if test -f 'render/rRender.cpp'; then $(CYGPATH_W) 'render/rRender.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rRender.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rRender.Tpo $(DEPDIR)/librender_a-rRender.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rRender.cpp' object='librender_a-rRender.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rRender.obj -MD -MP -MF $(DEPDIR)/librender_a-rRender.Tpo -c -o librender_a-rRender.obj `if test -f 'render/rRender.cpp'; then $(CYGPATH_W) 'render/rRender.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rRender.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rRender.Tpo $(DEPDIR)/librender_a-rRender.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rRender.cpp' object='librender_a-rRender.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rRender.obj `if test -f 'render/rRender.cpp'; then $(CYGPATH_W) 'render/rRender.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rRender.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rRender.obj `if test -f 'render/rRender.cpp'; then $(CYGPATH_W) 'render/rRender.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rRender.cpp'; fi`
 
 librender_a-rDisplayList.o: render/rDisplayList.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rDisplayList.o -MD -MP -MF $(DEPDIR)/librender_a-rDisplayList.Tpo -c -o librender_a-rDisplayList.o `test -f 'render/rDisplayList.cpp' || echo '$(srcdir)/'`render/rDisplayList.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rDisplayList.Tpo $(DEPDIR)/librender_a-rDisplayList.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rDisplayList.cpp' object='librender_a-rDisplayList.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rDisplayList.o -MD -MP -MF $(DEPDIR)/librender_a-rDisplayList.Tpo -c -o librender_a-rDisplayList.o `test -f 'render/rDisplayList.cpp' || echo '$(srcdir)/'`render/rDisplayList.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rDisplayList.Tpo $(DEPDIR)/librender_a-rDisplayList.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rDisplayList.cpp' object='librender_a-rDisplayList.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rDisplayList.o `test -f 'render/rDisplayList.cpp' || echo '$(srcdir)/'`render/rDisplayList.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rDisplayList.o `test -f 'render/rDisplayList.cpp' || echo '$(srcdir)/'`render/rDisplayList.cpp
 
 librender_a-rDisplayList.obj: render/rDisplayList.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rDisplayList.obj -MD -MP -MF $(DEPDIR)/librender_a-rDisplayList.Tpo -c -o librender_a-rDisplayList.obj `if test -f 'render/rDisplayList.cpp'; then $(CYGPATH_W) 'render/rDisplayList.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rDisplayList.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rDisplayList.Tpo $(DEPDIR)/librender_a-rDisplayList.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rDisplayList.cpp' object='librender_a-rDisplayList.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rDisplayList.obj -MD -MP -MF $(DEPDIR)/librender_a-rDisplayList.Tpo -c -o librender_a-rDisplayList.obj `if test -f 'render/rDisplayList.cpp'; then $(CYGPATH_W) 'render/rDisplayList.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rDisplayList.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rDisplayList.Tpo $(DEPDIR)/librender_a-rDisplayList.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rDisplayList.cpp' object='librender_a-rDisplayList.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rDisplayList.obj `if test -f 'render/rDisplayList.cpp'; then $(CYGPATH_W) 'render/rDisplayList.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rDisplayList.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rDisplayList.obj `if test -f 'render/rDisplayList.cpp'; then $(CYGPATH_W) 'render/rDisplayList.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rDisplayList.cpp'; fi`
 
 librender_a-rScreen.o: render/rScreen.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rScreen.o -MD -MP -MF $(DEPDIR)/librender_a-rScreen.Tpo -c -o librender_a-rScreen.o `test -f 'render/rScreen.cpp' || echo '$(srcdir)/'`render/rScreen.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rScreen.Tpo $(DEPDIR)/librender_a-rScreen.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rScreen.cpp' object='librender_a-rScreen.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rScreen.o -MD -MP -MF $(DEPDIR)/librender_a-rScreen.Tpo -c -o librender_a-rScreen.o `test -f 'render/rScreen.cpp' || echo '$(srcdir)/'`render/rScreen.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rScreen.Tpo $(DEPDIR)/librender_a-rScreen.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rScreen.cpp' object='librender_a-rScreen.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rScreen.o `test -f 'render/rScreen.cpp' || echo '$(srcdir)/'`render/rScreen.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rScreen.o `test -f 'render/rScreen.cpp' || echo '$(srcdir)/'`render/rScreen.cpp
 
 librender_a-rScreen.obj: render/rScreen.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rScreen.obj -MD -MP -MF $(DEPDIR)/librender_a-rScreen.Tpo -c -o librender_a-rScreen.obj `if test -f 'render/rScreen.cpp'; then $(CYGPATH_W) 'render/rScreen.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rScreen.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rScreen.Tpo $(DEPDIR)/librender_a-rScreen.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rScreen.cpp' object='librender_a-rScreen.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rScreen.obj -MD -MP -MF $(DEPDIR)/librender_a-rScreen.Tpo -c -o librender_a-rScreen.obj `if test -f 'render/rScreen.cpp'; then $(CYGPATH_W) 'render/rScreen.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rScreen.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rScreen.Tpo $(DEPDIR)/librender_a-rScreen.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rScreen.cpp' object='librender_a-rScreen.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rScreen.obj `if test -f 'render/rScreen.cpp'; then $(CYGPATH_W) 'render/rScreen.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rScreen.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rScreen.obj `if test -f 'render/rScreen.cpp'; then $(CYGPATH_W) 'render/rScreen.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rScreen.cpp'; fi`
 
 librender_a-rSysdep.o: render/rSysdep.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rSysdep.o -MD -MP -MF $(DEPDIR)/librender_a-rSysdep.Tpo -c -o librender_a-rSysdep.o `test -f 'render/rSysdep.cpp' || echo '$(srcdir)/'`render/rSysdep.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rSysdep.Tpo $(DEPDIR)/librender_a-rSysdep.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rSysdep.cpp' object='librender_a-rSysdep.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rSysdep.o -MD -MP -MF $(DEPDIR)/librender_a-rSysdep.Tpo -c -o librender_a-rSysdep.o `test -f 'render/rSysdep.cpp' || echo '$(srcdir)/'`render/rSysdep.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rSysdep.Tpo $(DEPDIR)/librender_a-rSysdep.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rSysdep.cpp' object='librender_a-rSysdep.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rSysdep.o `test -f 'render/rSysdep.cpp' || echo '$(srcdir)/'`render/rSysdep.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rSysdep.o `test -f 'render/rSysdep.cpp' || echo '$(srcdir)/'`render/rSysdep.cpp
 
 librender_a-rSysdep.obj: render/rSysdep.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rSysdep.obj -MD -MP -MF $(DEPDIR)/librender_a-rSysdep.Tpo -c -o librender_a-rSysdep.obj `if test -f 'render/rSysdep.cpp'; then $(CYGPATH_W) 'render/rSysdep.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rSysdep.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rSysdep.Tpo $(DEPDIR)/librender_a-rSysdep.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rSysdep.cpp' object='librender_a-rSysdep.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rSysdep.obj -MD -MP -MF $(DEPDIR)/librender_a-rSysdep.Tpo -c -o librender_a-rSysdep.obj `if test -f 'render/rSysdep.cpp'; then $(CYGPATH_W) 'render/rSysdep.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rSysdep.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rSysdep.Tpo $(DEPDIR)/librender_a-rSysdep.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rSysdep.cpp' object='librender_a-rSysdep.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rSysdep.obj `if test -f 'render/rSysdep.cpp'; then $(CYGPATH_W) 'render/rSysdep.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rSysdep.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rSysdep.obj `if test -f 'render/rSysdep.cpp'; then $(CYGPATH_W) 'render/rSysdep.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rSysdep.cpp'; fi`
 
 librender_a-rTexture.o: render/rTexture.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rTexture.o -MD -MP -MF $(DEPDIR)/librender_a-rTexture.Tpo -c -o librender_a-rTexture.o `test -f 'render/rTexture.cpp' || echo '$(srcdir)/'`render/rTexture.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rTexture.Tpo $(DEPDIR)/librender_a-rTexture.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rTexture.cpp' object='librender_a-rTexture.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rTexture.o -MD -MP -MF $(DEPDIR)/librender_a-rTexture.Tpo -c -o librender_a-rTexture.o `test -f 'render/rTexture.cpp' || echo '$(srcdir)/'`render/rTexture.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rTexture.Tpo $(DEPDIR)/librender_a-rTexture.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rTexture.cpp' object='librender_a-rTexture.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rTexture.o `test -f 'render/rTexture.cpp' || echo '$(srcdir)/'`render/rTexture.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rTexture.o `test -f 'render/rTexture.cpp' || echo '$(srcdir)/'`render/rTexture.cpp
 
 librender_a-rTexture.obj: render/rTexture.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rTexture.obj -MD -MP -MF $(DEPDIR)/librender_a-rTexture.Tpo -c -o librender_a-rTexture.obj `if test -f 'render/rTexture.cpp'; then $(CYGPATH_W) 'render/rTexture.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rTexture.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rTexture.Tpo $(DEPDIR)/librender_a-rTexture.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rTexture.cpp' object='librender_a-rTexture.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rTexture.obj -MD -MP -MF $(DEPDIR)/librender_a-rTexture.Tpo -c -o librender_a-rTexture.obj `if test -f 'render/rTexture.cpp'; then $(CYGPATH_W) 'render/rTexture.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rTexture.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rTexture.Tpo $(DEPDIR)/librender_a-rTexture.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rTexture.cpp' object='librender_a-rTexture.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rTexture.obj `if test -f 'render/rTexture.cpp'; then $(CYGPATH_W) 'render/rTexture.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rTexture.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rTexture.obj `if test -f 'render/rTexture.cpp'; then $(CYGPATH_W) 'render/rTexture.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rTexture.cpp'; fi`
 
 librender_a-rViewport.o: render/rViewport.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rViewport.o -MD -MP -MF $(DEPDIR)/librender_a-rViewport.Tpo -c -o librender_a-rViewport.o `test -f 'render/rViewport.cpp' || echo '$(srcdir)/'`render/rViewport.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rViewport.Tpo $(DEPDIR)/librender_a-rViewport.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rViewport.cpp' object='librender_a-rViewport.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rViewport.o -MD -MP -MF $(DEPDIR)/librender_a-rViewport.Tpo -c -o librender_a-rViewport.o `test -f 'render/rViewport.cpp' || echo '$(srcdir)/'`render/rViewport.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rViewport.Tpo $(DEPDIR)/librender_a-rViewport.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rViewport.cpp' object='librender_a-rViewport.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rViewport.o `test -f 'render/rViewport.cpp' || echo '$(srcdir)/'`render/rViewport.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rViewport.o `test -f 'render/rViewport.cpp' || echo '$(srcdir)/'`render/rViewport.cpp
 
 librender_a-rViewport.obj: render/rViewport.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rViewport.obj -MD -MP -MF $(DEPDIR)/librender_a-rViewport.Tpo -c -o librender_a-rViewport.obj `if test -f 'render/rViewport.cpp'; then $(CYGPATH_W) 'render/rViewport.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rViewport.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/librender_a-rViewport.Tpo $(DEPDIR)/librender_a-rViewport.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='render/rViewport.cpp' object='librender_a-rViewport.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -MT librender_a-rViewport.obj -MD -MP -MF $(DEPDIR)/librender_a-rViewport.Tpo -c -o librender_a-rViewport.obj `if test -f 'render/rViewport.cpp'; then $(CYGPATH_W) 'render/rViewport.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rViewport.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/librender_a-rViewport.Tpo $(DEPDIR)/librender_a-rViewport.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='render/rViewport.cpp' object='librender_a-rViewport.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rViewport.obj `if test -f 'render/rViewport.cpp'; then $(CYGPATH_W) 'render/rViewport.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rViewport.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(librender_a_CXXFLAGS) $(CXXFLAGS) -c -o librender_a-rViewport.obj `if test -f 'render/rViewport.cpp'; then $(CYGPATH_W) 'render/rViewport.cpp'; else $(CYGPATH_W) '$(srcdir)/render/rViewport.cpp'; fi`
 
 libtools_a-tResourceManager.o: tools/tResourceManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tResourceManager.o -MD -MP -MF $(DEPDIR)/libtools_a-tResourceManager.Tpo -c -o libtools_a-tResourceManager.o `test -f 'tools/tResourceManager.cpp' || echo '$(srcdir)/'`tools/tResourceManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tResourceManager.Tpo $(DEPDIR)/libtools_a-tResourceManager.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tResourceManager.cpp' object='libtools_a-tResourceManager.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tResourceManager.o -MD -MP -MF $(DEPDIR)/libtools_a-tResourceManager.Tpo -c -o libtools_a-tResourceManager.o `test -f 'tools/tResourceManager.cpp' || echo '$(srcdir)/'`tools/tResourceManager.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tResourceManager.Tpo $(DEPDIR)/libtools_a-tResourceManager.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tResourceManager.cpp' object='libtools_a-tResourceManager.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tResourceManager.o `test -f 'tools/tResourceManager.cpp' || echo '$(srcdir)/'`tools/tResourceManager.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tResourceManager.o `test -f 'tools/tResourceManager.cpp' || echo '$(srcdir)/'`tools/tResourceManager.cpp
 
 libtools_a-tResourceManager.obj: tools/tResourceManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tResourceManager.obj -MD -MP -MF $(DEPDIR)/libtools_a-tResourceManager.Tpo -c -o libtools_a-tResourceManager.obj `if test -f 'tools/tResourceManager.cpp'; then $(CYGPATH_W) 'tools/tResourceManager.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tResourceManager.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tResourceManager.Tpo $(DEPDIR)/libtools_a-tResourceManager.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tResourceManager.cpp' object='libtools_a-tResourceManager.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tResourceManager.obj -MD -MP -MF $(DEPDIR)/libtools_a-tResourceManager.Tpo -c -o libtools_a-tResourceManager.obj `if test -f 'tools/tResourceManager.cpp'; then $(CYGPATH_W) 'tools/tResourceManager.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tResourceManager.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tResourceManager.Tpo $(DEPDIR)/libtools_a-tResourceManager.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tResourceManager.cpp' object='libtools_a-tResourceManager.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tResourceManager.obj `if test -f 'tools/tResourceManager.cpp'; then $(CYGPATH_W) 'tools/tResourceManager.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tResourceManager.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tResourceManager.obj `if test -f 'tools/tResourceManager.cpp'; then $(CYGPATH_W) 'tools/tResourceManager.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tResourceManager.cpp'; fi`
 
 libtools_a-tArray.o: tools/tArray.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tArray.o -MD -MP -MF $(DEPDIR)/libtools_a-tArray.Tpo -c -o libtools_a-tArray.o `test -f 'tools/tArray.cpp' || echo '$(srcdir)/'`tools/tArray.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tArray.Tpo $(DEPDIR)/libtools_a-tArray.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tArray.cpp' object='libtools_a-tArray.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tArray.o -MD -MP -MF $(DEPDIR)/libtools_a-tArray.Tpo -c -o libtools_a-tArray.o `test -f 'tools/tArray.cpp' || echo '$(srcdir)/'`tools/tArray.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tArray.Tpo $(DEPDIR)/libtools_a-tArray.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tArray.cpp' object='libtools_a-tArray.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tArray.o `test -f 'tools/tArray.cpp' || echo '$(srcdir)/'`tools/tArray.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tArray.o `test -f 'tools/tArray.cpp' || echo '$(srcdir)/'`tools/tArray.cpp
 
 libtools_a-tArray.obj: tools/tArray.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tArray.obj -MD -MP -MF $(DEPDIR)/libtools_a-tArray.Tpo -c -o libtools_a-tArray.obj `if test -f 'tools/tArray.cpp'; then $(CYGPATH_W) 'tools/tArray.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tArray.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tArray.Tpo $(DEPDIR)/libtools_a-tArray.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tArray.cpp' object='libtools_a-tArray.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tArray.obj -MD -MP -MF $(DEPDIR)/libtools_a-tArray.Tpo -c -o libtools_a-tArray.obj `if test -f 'tools/tArray.cpp'; then $(CYGPATH_W) 'tools/tArray.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tArray.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tArray.Tpo $(DEPDIR)/libtools_a-tArray.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tArray.cpp' object='libtools_a-tArray.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tArray.obj `if test -f 'tools/tArray.cpp'; then $(CYGPATH_W) 'tools/tArray.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tArray.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tArray.obj `if test -f 'tools/tArray.cpp'; then $(CYGPATH_W) 'tools/tArray.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tArray.cpp'; fi`
 
 libtools_a-tCallback.o: tools/tCallback.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCallback.o -MD -MP -MF $(DEPDIR)/libtools_a-tCallback.Tpo -c -o libtools_a-tCallback.o `test -f 'tools/tCallback.cpp' || echo '$(srcdir)/'`tools/tCallback.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tCallback.Tpo $(DEPDIR)/libtools_a-tCallback.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tCallback.cpp' object='libtools_a-tCallback.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCallback.o -MD -MP -MF $(DEPDIR)/libtools_a-tCallback.Tpo -c -o libtools_a-tCallback.o `test -f 'tools/tCallback.cpp' || echo '$(srcdir)/'`tools/tCallback.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tCallback.Tpo $(DEPDIR)/libtools_a-tCallback.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tCallback.cpp' object='libtools_a-tCallback.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCallback.o `test -f 'tools/tCallback.cpp' || echo '$(srcdir)/'`tools/tCallback.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCallback.o `test -f 'tools/tCallback.cpp' || echo '$(srcdir)/'`tools/tCallback.cpp
 
 libtools_a-tCallback.obj: tools/tCallback.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCallback.obj -MD -MP -MF $(DEPDIR)/libtools_a-tCallback.Tpo -c -o libtools_a-tCallback.obj `if test -f 'tools/tCallback.cpp'; then $(CYGPATH_W) 'tools/tCallback.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCallback.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tCallback.Tpo $(DEPDIR)/libtools_a-tCallback.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tCallback.cpp' object='libtools_a-tCallback.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCallback.obj -MD -MP -MF $(DEPDIR)/libtools_a-tCallback.Tpo -c -o libtools_a-tCallback.obj `if test -f 'tools/tCallback.cpp'; then $(CYGPATH_W) 'tools/tCallback.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCallback.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tCallback.Tpo $(DEPDIR)/libtools_a-tCallback.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tCallback.cpp' object='libtools_a-tCallback.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCallback.obj `if test -f 'tools/tCallback.cpp'; then $(CYGPATH_W) 'tools/tCallback.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCallback.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCallback.obj `if test -f 'tools/tCallback.cpp'; then $(CYGPATH_W) 'tools/tCallback.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCallback.cpp'; fi`
 
 libtools_a-tColor.o: tools/tColor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tColor.o -MD -MP -MF $(DEPDIR)/libtools_a-tColor.Tpo -c -o libtools_a-tColor.o `test -f 'tools/tColor.cpp' || echo '$(srcdir)/'`tools/tColor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tColor.Tpo $(DEPDIR)/libtools_a-tColor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tColor.cpp' object='libtools_a-tColor.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tColor.o -MD -MP -MF $(DEPDIR)/libtools_a-tColor.Tpo -c -o libtools_a-tColor.o `test -f 'tools/tColor.cpp' || echo '$(srcdir)/'`tools/tColor.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tColor.Tpo $(DEPDIR)/libtools_a-tColor.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tColor.cpp' object='libtools_a-tColor.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tColor.o `test -f 'tools/tColor.cpp' || echo '$(srcdir)/'`tools/tColor.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tColor.o `test -f 'tools/tColor.cpp' || echo '$(srcdir)/'`tools/tColor.cpp
 
 libtools_a-tColor.obj: tools/tColor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tColor.obj -MD -MP -MF $(DEPDIR)/libtools_a-tColor.Tpo -c -o libtools_a-tColor.obj `if test -f 'tools/tColor.cpp'; then $(CYGPATH_W) 'tools/tColor.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tColor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tColor.Tpo $(DEPDIR)/libtools_a-tColor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tColor.cpp' object='libtools_a-tColor.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tColor.obj -MD -MP -MF $(DEPDIR)/libtools_a-tColor.Tpo -c -o libtools_a-tColor.obj `if test -f 'tools/tColor.cpp'; then $(CYGPATH_W) 'tools/tColor.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tColor.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tColor.Tpo $(DEPDIR)/libtools_a-tColor.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tColor.cpp' object='libtools_a-tColor.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tColor.obj `if test -f 'tools/tColor.cpp'; then $(CYGPATH_W) 'tools/tColor.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tColor.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tColor.obj `if test -f 'tools/tColor.cpp'; then $(CYGPATH_W) 'tools/tColor.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tColor.cpp'; fi`
 
 libtools_a-tConfiguration.o: tools/tConfiguration.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tConfiguration.o -MD -MP -MF $(DEPDIR)/libtools_a-tConfiguration.Tpo -c -o libtools_a-tConfiguration.o `test -f 'tools/tConfiguration.cpp' || echo '$(srcdir)/'`tools/tConfiguration.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tConfiguration.Tpo $(DEPDIR)/libtools_a-tConfiguration.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tConfiguration.cpp' object='libtools_a-tConfiguration.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tConfiguration.o -MD -MP -MF $(DEPDIR)/libtools_a-tConfiguration.Tpo -c -o libtools_a-tConfiguration.o `test -f 'tools/tConfiguration.cpp' || echo '$(srcdir)/'`tools/tConfiguration.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tConfiguration.Tpo $(DEPDIR)/libtools_a-tConfiguration.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tConfiguration.cpp' object='libtools_a-tConfiguration.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tConfiguration.o `test -f 'tools/tConfiguration.cpp' || echo '$(srcdir)/'`tools/tConfiguration.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tConfiguration.o `test -f 'tools/tConfiguration.cpp' || echo '$(srcdir)/'`tools/tConfiguration.cpp
 
 libtools_a-tConfiguration.obj: tools/tConfiguration.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tConfiguration.obj -MD -MP -MF $(DEPDIR)/libtools_a-tConfiguration.Tpo -c -o libtools_a-tConfiguration.obj `if test -f 'tools/tConfiguration.cpp'; then $(CYGPATH_W) 'tools/tConfiguration.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tConfiguration.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tConfiguration.Tpo $(DEPDIR)/libtools_a-tConfiguration.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tConfiguration.cpp' object='libtools_a-tConfiguration.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tConfiguration.obj -MD -MP -MF $(DEPDIR)/libtools_a-tConfiguration.Tpo -c -o libtools_a-tConfiguration.obj `if test -f 'tools/tConfiguration.cpp'; then $(CYGPATH_W) 'tools/tConfiguration.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tConfiguration.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tConfiguration.Tpo $(DEPDIR)/libtools_a-tConfiguration.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tConfiguration.cpp' object='libtools_a-tConfiguration.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tConfiguration.obj `if test -f 'tools/tConfiguration.cpp'; then $(CYGPATH_W) 'tools/tConfiguration.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tConfiguration.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tConfiguration.obj `if test -f 'tools/tConfiguration.cpp'; then $(CYGPATH_W) 'tools/tConfiguration.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tConfiguration.cpp'; fi`
 
 libtools_a-tConsole.o: tools/tConsole.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tConsole.o -MD -MP -MF $(DEPDIR)/libtools_a-tConsole.Tpo -c -o libtools_a-tConsole.o `test -f 'tools/tConsole.cpp' || echo '$(srcdir)/'`tools/tConsole.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tConsole.Tpo $(DEPDIR)/libtools_a-tConsole.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tConsole.cpp' object='libtools_a-tConsole.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tConsole.o -MD -MP -MF $(DEPDIR)/libtools_a-tConsole.Tpo -c -o libtools_a-tConsole.o `test -f 'tools/tConsole.cpp' || echo '$(srcdir)/'`tools/tConsole.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tConsole.Tpo $(DEPDIR)/libtools_a-tConsole.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tConsole.cpp' object='libtools_a-tConsole.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tConsole.o `test -f 'tools/tConsole.cpp' || echo '$(srcdir)/'`tools/tConsole.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tConsole.o `test -f 'tools/tConsole.cpp' || echo '$(srcdir)/'`tools/tConsole.cpp
 
 libtools_a-tConsole.obj: tools/tConsole.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tConsole.obj -MD -MP -MF $(DEPDIR)/libtools_a-tConsole.Tpo -c -o libtools_a-tConsole.obj `if test -f 'tools/tConsole.cpp'; then $(CYGPATH_W) 'tools/tConsole.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tConsole.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tConsole.Tpo $(DEPDIR)/libtools_a-tConsole.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tConsole.cpp' object='libtools_a-tConsole.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tConsole.obj -MD -MP -MF $(DEPDIR)/libtools_a-tConsole.Tpo -c -o libtools_a-tConsole.obj `if test -f 'tools/tConsole.cpp'; then $(CYGPATH_W) 'tools/tConsole.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tConsole.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tConsole.Tpo $(DEPDIR)/libtools_a-tConsole.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tConsole.cpp' object='libtools_a-tConsole.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tConsole.obj `if test -f 'tools/tConsole.cpp'; then $(CYGPATH_W) 'tools/tConsole.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tConsole.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tConsole.obj `if test -f 'tools/tConsole.cpp'; then $(CYGPATH_W) 'tools/tConsole.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tConsole.cpp'; fi`
 
 libtools_a-tCrypt.o: tools/tCrypt.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCrypt.o -MD -MP -MF $(DEPDIR)/libtools_a-tCrypt.Tpo -c -o libtools_a-tCrypt.o `test -f 'tools/tCrypt.cpp' || echo '$(srcdir)/'`tools/tCrypt.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tCrypt.Tpo $(DEPDIR)/libtools_a-tCrypt.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tCrypt.cpp' object='libtools_a-tCrypt.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCrypt.o -MD -MP -MF $(DEPDIR)/libtools_a-tCrypt.Tpo -c -o libtools_a-tCrypt.o `test -f 'tools/tCrypt.cpp' || echo '$(srcdir)/'`tools/tCrypt.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tCrypt.Tpo $(DEPDIR)/libtools_a-tCrypt.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tCrypt.cpp' object='libtools_a-tCrypt.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCrypt.o `test -f 'tools/tCrypt.cpp' || echo '$(srcdir)/'`tools/tCrypt.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCrypt.o `test -f 'tools/tCrypt.cpp' || echo '$(srcdir)/'`tools/tCrypt.cpp
 
 libtools_a-tCrypt.obj: tools/tCrypt.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCrypt.obj -MD -MP -MF $(DEPDIR)/libtools_a-tCrypt.Tpo -c -o libtools_a-tCrypt.obj `if test -f 'tools/tCrypt.cpp'; then $(CYGPATH_W) 'tools/tCrypt.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCrypt.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tCrypt.Tpo $(DEPDIR)/libtools_a-tCrypt.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tCrypt.cpp' object='libtools_a-tCrypt.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCrypt.obj -MD -MP -MF $(DEPDIR)/libtools_a-tCrypt.Tpo -c -o libtools_a-tCrypt.obj `if test -f 'tools/tCrypt.cpp'; then $(CYGPATH_W) 'tools/tCrypt.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCrypt.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tCrypt.Tpo $(DEPDIR)/libtools_a-tCrypt.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tCrypt.cpp' object='libtools_a-tCrypt.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCrypt.obj `if test -f 'tools/tCrypt.cpp'; then $(CYGPATH_W) 'tools/tCrypt.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCrypt.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCrypt.obj `if test -f 'tools/tCrypt.cpp'; then $(CYGPATH_W) 'tools/tCrypt.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCrypt.cpp'; fi`
 
 libtools_a-tDirectories.o: tools/tDirectories.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tDirectories.o -MD -MP -MF $(DEPDIR)/libtools_a-tDirectories.Tpo -c -o libtools_a-tDirectories.o `test -f 'tools/tDirectories.cpp' || echo '$(srcdir)/'`tools/tDirectories.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tDirectories.Tpo $(DEPDIR)/libtools_a-tDirectories.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tDirectories.cpp' object='libtools_a-tDirectories.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tDirectories.o -MD -MP -MF $(DEPDIR)/libtools_a-tDirectories.Tpo -c -o libtools_a-tDirectories.o `test -f 'tools/tDirectories.cpp' || echo '$(srcdir)/'`tools/tDirectories.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tDirectories.Tpo $(DEPDIR)/libtools_a-tDirectories.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tDirectories.cpp' object='libtools_a-tDirectories.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tDirectories.o `test -f 'tools/tDirectories.cpp' || echo '$(srcdir)/'`tools/tDirectories.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tDirectories.o `test -f 'tools/tDirectories.cpp' || echo '$(srcdir)/'`tools/tDirectories.cpp
 
 libtools_a-tDirectories.obj: tools/tDirectories.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tDirectories.obj -MD -MP -MF $(DEPDIR)/libtools_a-tDirectories.Tpo -c -o libtools_a-tDirectories.obj `if test -f 'tools/tDirectories.cpp'; then $(CYGPATH_W) 'tools/tDirectories.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tDirectories.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tDirectories.Tpo $(DEPDIR)/libtools_a-tDirectories.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tDirectories.cpp' object='libtools_a-tDirectories.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tDirectories.obj -MD -MP -MF $(DEPDIR)/libtools_a-tDirectories.Tpo -c -o libtools_a-tDirectories.obj `if test -f 'tools/tDirectories.cpp'; then $(CYGPATH_W) 'tools/tDirectories.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tDirectories.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tDirectories.Tpo $(DEPDIR)/libtools_a-tDirectories.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tDirectories.cpp' object='libtools_a-tDirectories.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tDirectories.obj `if test -f 'tools/tDirectories.cpp'; then $(CYGPATH_W) 'tools/tDirectories.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tDirectories.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tDirectories.obj `if test -f 'tools/tDirectories.cpp'; then $(CYGPATH_W) 'tools/tDirectories.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tDirectories.cpp'; fi`
 
 libtools_a-tError.o: tools/tError.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tError.o -MD -MP -MF $(DEPDIR)/libtools_a-tError.Tpo -c -o libtools_a-tError.o `test -f 'tools/tError.cpp' || echo '$(srcdir)/'`tools/tError.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tError.Tpo $(DEPDIR)/libtools_a-tError.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tError.cpp' object='libtools_a-tError.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tError.o -MD -MP -MF $(DEPDIR)/libtools_a-tError.Tpo -c -o libtools_a-tError.o `test -f 'tools/tError.cpp' || echo '$(srcdir)/'`tools/tError.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tError.Tpo $(DEPDIR)/libtools_a-tError.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tError.cpp' object='libtools_a-tError.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tError.o `test -f 'tools/tError.cpp' || echo '$(srcdir)/'`tools/tError.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tError.o `test -f 'tools/tError.cpp' || echo '$(srcdir)/'`tools/tError.cpp
 
 libtools_a-tError.obj: tools/tError.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tError.obj -MD -MP -MF $(DEPDIR)/libtools_a-tError.Tpo -c -o libtools_a-tError.obj `if test -f 'tools/tError.cpp'; then $(CYGPATH_W) 'tools/tError.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tError.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tError.Tpo $(DEPDIR)/libtools_a-tError.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tError.cpp' object='libtools_a-tError.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tError.obj -MD -MP -MF $(DEPDIR)/libtools_a-tError.Tpo -c -o libtools_a-tError.obj `if test -f 'tools/tError.cpp'; then $(CYGPATH_W) 'tools/tError.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tError.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tError.Tpo $(DEPDIR)/libtools_a-tError.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tError.cpp' object='libtools_a-tError.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tError.obj `if test -f 'tools/tError.cpp'; then $(CYGPATH_W) 'tools/tError.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tError.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tError.obj `if test -f 'tools/tError.cpp'; then $(CYGPATH_W) 'tools/tError.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tError.cpp'; fi`
 
 libtools_a-tEventQueue.o: tools/tEventQueue.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tEventQueue.o -MD -MP -MF $(DEPDIR)/libtools_a-tEventQueue.Tpo -c -o libtools_a-tEventQueue.o `test -f 'tools/tEventQueue.cpp' || echo '$(srcdir)/'`tools/tEventQueue.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tEventQueue.Tpo $(DEPDIR)/libtools_a-tEventQueue.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tEventQueue.cpp' object='libtools_a-tEventQueue.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tEventQueue.o -MD -MP -MF $(DEPDIR)/libtools_a-tEventQueue.Tpo -c -o libtools_a-tEventQueue.o `test -f 'tools/tEventQueue.cpp' || echo '$(srcdir)/'`tools/tEventQueue.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tEventQueue.Tpo $(DEPDIR)/libtools_a-tEventQueue.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tEventQueue.cpp' object='libtools_a-tEventQueue.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tEventQueue.o `test -f 'tools/tEventQueue.cpp' || echo '$(srcdir)/'`tools/tEventQueue.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tEventQueue.o `test -f 'tools/tEventQueue.cpp' || echo '$(srcdir)/'`tools/tEventQueue.cpp
 
 libtools_a-tEventQueue.obj: tools/tEventQueue.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tEventQueue.obj -MD -MP -MF $(DEPDIR)/libtools_a-tEventQueue.Tpo -c -o libtools_a-tEventQueue.obj `if test -f 'tools/tEventQueue.cpp'; then $(CYGPATH_W) 'tools/tEventQueue.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tEventQueue.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tEventQueue.Tpo $(DEPDIR)/libtools_a-tEventQueue.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tEventQueue.cpp' object='libtools_a-tEventQueue.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tEventQueue.obj -MD -MP -MF $(DEPDIR)/libtools_a-tEventQueue.Tpo -c -o libtools_a-tEventQueue.obj `if test -f 'tools/tEventQueue.cpp'; then $(CYGPATH_W) 'tools/tEventQueue.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tEventQueue.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tEventQueue.Tpo $(DEPDIR)/libtools_a-tEventQueue.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tEventQueue.cpp' object='libtools_a-tEventQueue.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tEventQueue.obj `if test -f 'tools/tEventQueue.cpp'; then $(CYGPATH_W) 'tools/tEventQueue.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tEventQueue.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tEventQueue.obj `if test -f 'tools/tEventQueue.cpp'; then $(CYGPATH_W) 'tools/tEventQueue.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tEventQueue.cpp'; fi`
 
 libtools_a-tHeap.o: tools/tHeap.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tHeap.o -MD -MP -MF $(DEPDIR)/libtools_a-tHeap.Tpo -c -o libtools_a-tHeap.o `test -f 'tools/tHeap.cpp' || echo '$(srcdir)/'`tools/tHeap.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tHeap.Tpo $(DEPDIR)/libtools_a-tHeap.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tHeap.cpp' object='libtools_a-tHeap.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tHeap.o -MD -MP -MF $(DEPDIR)/libtools_a-tHeap.Tpo -c -o libtools_a-tHeap.o `test -f 'tools/tHeap.cpp' || echo '$(srcdir)/'`tools/tHeap.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tHeap.Tpo $(DEPDIR)/libtools_a-tHeap.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tHeap.cpp' object='libtools_a-tHeap.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tHeap.o `test -f 'tools/tHeap.cpp' || echo '$(srcdir)/'`tools/tHeap.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tHeap.o `test -f 'tools/tHeap.cpp' || echo '$(srcdir)/'`tools/tHeap.cpp
 
 libtools_a-tHeap.obj: tools/tHeap.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tHeap.obj -MD -MP -MF $(DEPDIR)/libtools_a-tHeap.Tpo -c -o libtools_a-tHeap.obj `if test -f 'tools/tHeap.cpp'; then $(CYGPATH_W) 'tools/tHeap.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tHeap.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tHeap.Tpo $(DEPDIR)/libtools_a-tHeap.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tHeap.cpp' object='libtools_a-tHeap.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tHeap.obj -MD -MP -MF $(DEPDIR)/libtools_a-tHeap.Tpo -c -o libtools_a-tHeap.obj `if test -f 'tools/tHeap.cpp'; then $(CYGPATH_W) 'tools/tHeap.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tHeap.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tHeap.Tpo $(DEPDIR)/libtools_a-tHeap.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tHeap.cpp' object='libtools_a-tHeap.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tHeap.obj `if test -f 'tools/tHeap.cpp'; then $(CYGPATH_W) 'tools/tHeap.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tHeap.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tHeap.obj `if test -f 'tools/tHeap.cpp'; then $(CYGPATH_W) 'tools/tHeap.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tHeap.cpp'; fi`
 
 libtools_a-tLinkedList.o: tools/tLinkedList.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tLinkedList.o -MD -MP -MF $(DEPDIR)/libtools_a-tLinkedList.Tpo -c -o libtools_a-tLinkedList.o `test -f 'tools/tLinkedList.cpp' || echo '$(srcdir)/'`tools/tLinkedList.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tLinkedList.Tpo $(DEPDIR)/libtools_a-tLinkedList.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tLinkedList.cpp' object='libtools_a-tLinkedList.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tLinkedList.o -MD -MP -MF $(DEPDIR)/libtools_a-tLinkedList.Tpo -c -o libtools_a-tLinkedList.o `test -f 'tools/tLinkedList.cpp' || echo '$(srcdir)/'`tools/tLinkedList.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tLinkedList.Tpo $(DEPDIR)/libtools_a-tLinkedList.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tLinkedList.cpp' object='libtools_a-tLinkedList.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tLinkedList.o `test -f 'tools/tLinkedList.cpp' || echo '$(srcdir)/'`tools/tLinkedList.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tLinkedList.o `test -f 'tools/tLinkedList.cpp' || echo '$(srcdir)/'`tools/tLinkedList.cpp
 
 libtools_a-tLinkedList.obj: tools/tLinkedList.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tLinkedList.obj -MD -MP -MF $(DEPDIR)/libtools_a-tLinkedList.Tpo -c -o libtools_a-tLinkedList.obj `if test -f 'tools/tLinkedList.cpp'; then $(CYGPATH_W) 'tools/tLinkedList.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tLinkedList.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tLinkedList.Tpo $(DEPDIR)/libtools_a-tLinkedList.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tLinkedList.cpp' object='libtools_a-tLinkedList.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tLinkedList.obj -MD -MP -MF $(DEPDIR)/libtools_a-tLinkedList.Tpo -c -o libtools_a-tLinkedList.obj `if test -f 'tools/tLinkedList.cpp'; then $(CYGPATH_W) 'tools/tLinkedList.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tLinkedList.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tLinkedList.Tpo $(DEPDIR)/libtools_a-tLinkedList.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tLinkedList.cpp' object='libtools_a-tLinkedList.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tLinkedList.obj `if test -f 'tools/tLinkedList.cpp'; then $(CYGPATH_W) 'tools/tLinkedList.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tLinkedList.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tLinkedList.obj `if test -f 'tools/tLinkedList.cpp'; then $(CYGPATH_W) 'tools/tLinkedList.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tLinkedList.cpp'; fi`
 
 libtools_a-tLocale.o: tools/tLocale.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tLocale.o -MD -MP -MF $(DEPDIR)/libtools_a-tLocale.Tpo -c -o libtools_a-tLocale.o `test -f 'tools/tLocale.cpp' || echo '$(srcdir)/'`tools/tLocale.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tLocale.Tpo $(DEPDIR)/libtools_a-tLocale.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tLocale.cpp' object='libtools_a-tLocale.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tLocale.o -MD -MP -MF $(DEPDIR)/libtools_a-tLocale.Tpo -c -o libtools_a-tLocale.o `test -f 'tools/tLocale.cpp' || echo '$(srcdir)/'`tools/tLocale.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tLocale.Tpo $(DEPDIR)/libtools_a-tLocale.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tLocale.cpp' object='libtools_a-tLocale.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tLocale.o `test -f 'tools/tLocale.cpp' || echo '$(srcdir)/'`tools/tLocale.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tLocale.o `test -f 'tools/tLocale.cpp' || echo '$(srcdir)/'`tools/tLocale.cpp
 
 libtools_a-tLocale.obj: tools/tLocale.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tLocale.obj -MD -MP -MF $(DEPDIR)/libtools_a-tLocale.Tpo -c -o libtools_a-tLocale.obj `if test -f 'tools/tLocale.cpp'; then $(CYGPATH_W) 'tools/tLocale.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tLocale.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tLocale.Tpo $(DEPDIR)/libtools_a-tLocale.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tLocale.cpp' object='libtools_a-tLocale.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tLocale.obj -MD -MP -MF $(DEPDIR)/libtools_a-tLocale.Tpo -c -o libtools_a-tLocale.obj `if test -f 'tools/tLocale.cpp'; then $(CYGPATH_W) 'tools/tLocale.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tLocale.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tLocale.Tpo $(DEPDIR)/libtools_a-tLocale.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tLocale.cpp' object='libtools_a-tLocale.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tLocale.obj `if test -f 'tools/tLocale.cpp'; then $(CYGPATH_W) 'tools/tLocale.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tLocale.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tLocale.obj `if test -f 'tools/tLocale.cpp'; then $(CYGPATH_W) 'tools/tLocale.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tLocale.cpp'; fi`
 
 libtools_a-tMemStack.o: tools/tMemStack.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tMemStack.o -MD -MP -MF $(DEPDIR)/libtools_a-tMemStack.Tpo -c -o libtools_a-tMemStack.o `test -f 'tools/tMemStack.cpp' || echo '$(srcdir)/'`tools/tMemStack.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tMemStack.Tpo $(DEPDIR)/libtools_a-tMemStack.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tMemStack.cpp' object='libtools_a-tMemStack.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tMemStack.o -MD -MP -MF $(DEPDIR)/libtools_a-tMemStack.Tpo -c -o libtools_a-tMemStack.o `test -f 'tools/tMemStack.cpp' || echo '$(srcdir)/'`tools/tMemStack.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tMemStack.Tpo $(DEPDIR)/libtools_a-tMemStack.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tMemStack.cpp' object='libtools_a-tMemStack.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tMemStack.o `test -f 'tools/tMemStack.cpp' || echo '$(srcdir)/'`tools/tMemStack.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tMemStack.o `test -f 'tools/tMemStack.cpp' || echo '$(srcdir)/'`tools/tMemStack.cpp
 
 libtools_a-tMemStack.obj: tools/tMemStack.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tMemStack.obj -MD -MP -MF $(DEPDIR)/libtools_a-tMemStack.Tpo -c -o libtools_a-tMemStack.obj `if test -f 'tools/tMemStack.cpp'; then $(CYGPATH_W) 'tools/tMemStack.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tMemStack.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tMemStack.Tpo $(DEPDIR)/libtools_a-tMemStack.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tMemStack.cpp' object='libtools_a-tMemStack.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tMemStack.obj -MD -MP -MF $(DEPDIR)/libtools_a-tMemStack.Tpo -c -o libtools_a-tMemStack.obj `if test -f 'tools/tMemStack.cpp'; then $(CYGPATH_W) 'tools/tMemStack.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tMemStack.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tMemStack.Tpo $(DEPDIR)/libtools_a-tMemStack.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tMemStack.cpp' object='libtools_a-tMemStack.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tMemStack.obj `if test -f 'tools/tMemStack.cpp'; then $(CYGPATH_W) 'tools/tMemStack.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tMemStack.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tMemStack.obj `if test -f 'tools/tMemStack.cpp'; then $(CYGPATH_W) 'tools/tMemStack.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tMemStack.cpp'; fi`
 
 libtools_a-tRing.o: tools/tRing.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRing.o -MD -MP -MF $(DEPDIR)/libtools_a-tRing.Tpo -c -o libtools_a-tRing.o `test -f 'tools/tRing.cpp' || echo '$(srcdir)/'`tools/tRing.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tRing.Tpo $(DEPDIR)/libtools_a-tRing.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tRing.cpp' object='libtools_a-tRing.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRing.o -MD -MP -MF $(DEPDIR)/libtools_a-tRing.Tpo -c -o libtools_a-tRing.o `test -f 'tools/tRing.cpp' || echo '$(srcdir)/'`tools/tRing.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tRing.Tpo $(DEPDIR)/libtools_a-tRing.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tRing.cpp' object='libtools_a-tRing.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRing.o `test -f 'tools/tRing.cpp' || echo '$(srcdir)/'`tools/tRing.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRing.o `test -f 'tools/tRing.cpp' || echo '$(srcdir)/'`tools/tRing.cpp
 
 libtools_a-tRing.obj: tools/tRing.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRing.obj -MD -MP -MF $(DEPDIR)/libtools_a-tRing.Tpo -c -o libtools_a-tRing.obj `if test -f 'tools/tRing.cpp'; then $(CYGPATH_W) 'tools/tRing.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRing.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tRing.Tpo $(DEPDIR)/libtools_a-tRing.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tRing.cpp' object='libtools_a-tRing.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRing.obj -MD -MP -MF $(DEPDIR)/libtools_a-tRing.Tpo -c -o libtools_a-tRing.obj `if test -f 'tools/tRing.cpp'; then $(CYGPATH_W) 'tools/tRing.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRing.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tRing.Tpo $(DEPDIR)/libtools_a-tRing.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tRing.cpp' object='libtools_a-tRing.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRing.obj `if test -f 'tools/tRing.cpp'; then $(CYGPATH_W) 'tools/tRing.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRing.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRing.obj `if test -f 'tools/tRing.cpp'; then $(CYGPATH_W) 'tools/tRing.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRing.cpp'; fi`
 
 libtools_a-tSafePTR.o: tools/tSafePTR.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tSafePTR.o -MD -MP -MF $(DEPDIR)/libtools_a-tSafePTR.Tpo -c -o libtools_a-tSafePTR.o `test -f 'tools/tSafePTR.cpp' || echo '$(srcdir)/'`tools/tSafePTR.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tSafePTR.Tpo $(DEPDIR)/libtools_a-tSafePTR.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tSafePTR.cpp' object='libtools_a-tSafePTR.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tSafePTR.o -MD -MP -MF $(DEPDIR)/libtools_a-tSafePTR.Tpo -c -o libtools_a-tSafePTR.o `test -f 'tools/tSafePTR.cpp' || echo '$(srcdir)/'`tools/tSafePTR.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tSafePTR.Tpo $(DEPDIR)/libtools_a-tSafePTR.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tSafePTR.cpp' object='libtools_a-tSafePTR.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tSafePTR.o `test -f 'tools/tSafePTR.cpp' || echo '$(srcdir)/'`tools/tSafePTR.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tSafePTR.o `test -f 'tools/tSafePTR.cpp' || echo '$(srcdir)/'`tools/tSafePTR.cpp
 
 libtools_a-tSafePTR.obj: tools/tSafePTR.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tSafePTR.obj -MD -MP -MF $(DEPDIR)/libtools_a-tSafePTR.Tpo -c -o libtools_a-tSafePTR.obj `if test -f 'tools/tSafePTR.cpp'; then $(CYGPATH_W) 'tools/tSafePTR.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tSafePTR.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tSafePTR.Tpo $(DEPDIR)/libtools_a-tSafePTR.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tSafePTR.cpp' object='libtools_a-tSafePTR.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tSafePTR.obj -MD -MP -MF $(DEPDIR)/libtools_a-tSafePTR.Tpo -c -o libtools_a-tSafePTR.obj `if test -f 'tools/tSafePTR.cpp'; then $(CYGPATH_W) 'tools/tSafePTR.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tSafePTR.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tSafePTR.Tpo $(DEPDIR)/libtools_a-tSafePTR.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tSafePTR.cpp' object='libtools_a-tSafePTR.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tSafePTR.obj `if test -f 'tools/tSafePTR.cpp'; then $(CYGPATH_W) 'tools/tSafePTR.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tSafePTR.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tSafePTR.obj `if test -f 'tools/tSafePTR.cpp'; then $(CYGPATH_W) 'tools/tSafePTR.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tSafePTR.cpp'; fi`
 
 libtools_a-tString.o: tools/tString.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tString.o -MD -MP -MF $(DEPDIR)/libtools_a-tString.Tpo -c -o libtools_a-tString.o `test -f 'tools/tString.cpp' || echo '$(srcdir)/'`tools/tString.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tString.Tpo $(DEPDIR)/libtools_a-tString.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tString.cpp' object='libtools_a-tString.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tString.o -MD -MP -MF $(DEPDIR)/libtools_a-tString.Tpo -c -o libtools_a-tString.o `test -f 'tools/tString.cpp' || echo '$(srcdir)/'`tools/tString.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tString.Tpo $(DEPDIR)/libtools_a-tString.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tString.cpp' object='libtools_a-tString.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tString.o `test -f 'tools/tString.cpp' || echo '$(srcdir)/'`tools/tString.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tString.o `test -f 'tools/tString.cpp' || echo '$(srcdir)/'`tools/tString.cpp
 
 libtools_a-tString.obj: tools/tString.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tString.obj -MD -MP -MF $(DEPDIR)/libtools_a-tString.Tpo -c -o libtools_a-tString.obj `if test -f 'tools/tString.cpp'; then $(CYGPATH_W) 'tools/tString.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tString.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tString.Tpo $(DEPDIR)/libtools_a-tString.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tString.cpp' object='libtools_a-tString.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tString.obj -MD -MP -MF $(DEPDIR)/libtools_a-tString.Tpo -c -o libtools_a-tString.obj `if test -f 'tools/tString.cpp'; then $(CYGPATH_W) 'tools/tString.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tString.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tString.Tpo $(DEPDIR)/libtools_a-tString.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tString.cpp' object='libtools_a-tString.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tString.obj `if test -f 'tools/tString.cpp'; then $(CYGPATH_W) 'tools/tString.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tString.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tString.obj `if test -f 'tools/tString.cpp'; then $(CYGPATH_W) 'tools/tString.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tString.cpp'; fi`
 
 libtools_a-tSysTime.o: tools/tSysTime.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tSysTime.o -MD -MP -MF $(DEPDIR)/libtools_a-tSysTime.Tpo -c -o libtools_a-tSysTime.o `test -f 'tools/tSysTime.cpp' || echo '$(srcdir)/'`tools/tSysTime.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tSysTime.Tpo $(DEPDIR)/libtools_a-tSysTime.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tSysTime.cpp' object='libtools_a-tSysTime.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tSysTime.o -MD -MP -MF $(DEPDIR)/libtools_a-tSysTime.Tpo -c -o libtools_a-tSysTime.o `test -f 'tools/tSysTime.cpp' || echo '$(srcdir)/'`tools/tSysTime.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tSysTime.Tpo $(DEPDIR)/libtools_a-tSysTime.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tSysTime.cpp' object='libtools_a-tSysTime.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tSysTime.o `test -f 'tools/tSysTime.cpp' || echo '$(srcdir)/'`tools/tSysTime.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tSysTime.o `test -f 'tools/tSysTime.cpp' || echo '$(srcdir)/'`tools/tSysTime.cpp
 
 libtools_a-tSysTime.obj: tools/tSysTime.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tSysTime.obj -MD -MP -MF $(DEPDIR)/libtools_a-tSysTime.Tpo -c -o libtools_a-tSysTime.obj `if test -f 'tools/tSysTime.cpp'; then $(CYGPATH_W) 'tools/tSysTime.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tSysTime.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tSysTime.Tpo $(DEPDIR)/libtools_a-tSysTime.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tSysTime.cpp' object='libtools_a-tSysTime.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tSysTime.obj -MD -MP -MF $(DEPDIR)/libtools_a-tSysTime.Tpo -c -o libtools_a-tSysTime.obj `if test -f 'tools/tSysTime.cpp'; then $(CYGPATH_W) 'tools/tSysTime.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tSysTime.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tSysTime.Tpo $(DEPDIR)/libtools_a-tSysTime.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tSysTime.cpp' object='libtools_a-tSysTime.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tSysTime.obj `if test -f 'tools/tSysTime.cpp'; then $(CYGPATH_W) 'tools/tSysTime.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tSysTime.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tSysTime.obj `if test -f 'tools/tSysTime.cpp'; then $(CYGPATH_W) 'tools/tSysTime.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tSysTime.cpp'; fi`
 
 libtools_a-tToDo.o: tools/tToDo.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tToDo.o -MD -MP -MF $(DEPDIR)/libtools_a-tToDo.Tpo -c -o libtools_a-tToDo.o `test -f 'tools/tToDo.cpp' || echo '$(srcdir)/'`tools/tToDo.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tToDo.Tpo $(DEPDIR)/libtools_a-tToDo.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tToDo.cpp' object='libtools_a-tToDo.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tToDo.o -MD -MP -MF $(DEPDIR)/libtools_a-tToDo.Tpo -c -o libtools_a-tToDo.o `test -f 'tools/tToDo.cpp' || echo '$(srcdir)/'`tools/tToDo.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tToDo.Tpo $(DEPDIR)/libtools_a-tToDo.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tToDo.cpp' object='libtools_a-tToDo.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tToDo.o `test -f 'tools/tToDo.cpp' || echo '$(srcdir)/'`tools/tToDo.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tToDo.o `test -f 'tools/tToDo.cpp' || echo '$(srcdir)/'`tools/tToDo.cpp
 
 libtools_a-tToDo.obj: tools/tToDo.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tToDo.obj -MD -MP -MF $(DEPDIR)/libtools_a-tToDo.Tpo -c -o libtools_a-tToDo.obj `if test -f 'tools/tToDo.cpp'; then $(CYGPATH_W) 'tools/tToDo.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tToDo.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tToDo.Tpo $(DEPDIR)/libtools_a-tToDo.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tToDo.cpp' object='libtools_a-tToDo.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tToDo.obj -MD -MP -MF $(DEPDIR)/libtools_a-tToDo.Tpo -c -o libtools_a-tToDo.obj `if test -f 'tools/tToDo.cpp'; then $(CYGPATH_W) 'tools/tToDo.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tToDo.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tToDo.Tpo $(DEPDIR)/libtools_a-tToDo.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tToDo.cpp' object='libtools_a-tToDo.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tToDo.obj `if test -f 'tools/tToDo.cpp'; then $(CYGPATH_W) 'tools/tToDo.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tToDo.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tToDo.obj `if test -f 'tools/tToDo.cpp'; then $(CYGPATH_W) 'tools/tToDo.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tToDo.cpp'; fi`
 
 libtools_a-tException.o: tools/tException.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tException.o -MD -MP -MF $(DEPDIR)/libtools_a-tException.Tpo -c -o libtools_a-tException.o `test -f 'tools/tException.cpp' || echo '$(srcdir)/'`tools/tException.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tException.Tpo $(DEPDIR)/libtools_a-tException.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tException.cpp' object='libtools_a-tException.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tException.o -MD -MP -MF $(DEPDIR)/libtools_a-tException.Tpo -c -o libtools_a-tException.o `test -f 'tools/tException.cpp' || echo '$(srcdir)/'`tools/tException.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tException.Tpo $(DEPDIR)/libtools_a-tException.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tException.cpp' object='libtools_a-tException.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tException.o `test -f 'tools/tException.cpp' || echo '$(srcdir)/'`tools/tException.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tException.o `test -f 'tools/tException.cpp' || echo '$(srcdir)/'`tools/tException.cpp
 
 libtools_a-tException.obj: tools/tException.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tException.obj -MD -MP -MF $(DEPDIR)/libtools_a-tException.Tpo -c -o libtools_a-tException.obj `if test -f 'tools/tException.cpp'; then $(CYGPATH_W) 'tools/tException.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tException.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tException.Tpo $(DEPDIR)/libtools_a-tException.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tException.cpp' object='libtools_a-tException.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tException.obj -MD -MP -MF $(DEPDIR)/libtools_a-tException.Tpo -c -o libtools_a-tException.obj `if test -f 'tools/tException.cpp'; then $(CYGPATH_W) 'tools/tException.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tException.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tException.Tpo $(DEPDIR)/libtools_a-tException.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tException.cpp' object='libtools_a-tException.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tException.obj `if test -f 'tools/tException.cpp'; then $(CYGPATH_W) 'tools/tException.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tException.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tException.obj `if test -f 'tools/tException.cpp'; then $(CYGPATH_W) 'tools/tException.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tException.cpp'; fi`
 
 libtools_a-tRecorder.o: tools/tRecorder.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRecorder.o -MD -MP -MF $(DEPDIR)/libtools_a-tRecorder.Tpo -c -o libtools_a-tRecorder.o `test -f 'tools/tRecorder.cpp' || echo '$(srcdir)/'`tools/tRecorder.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tRecorder.Tpo $(DEPDIR)/libtools_a-tRecorder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tRecorder.cpp' object='libtools_a-tRecorder.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRecorder.o -MD -MP -MF $(DEPDIR)/libtools_a-tRecorder.Tpo -c -o libtools_a-tRecorder.o `test -f 'tools/tRecorder.cpp' || echo '$(srcdir)/'`tools/tRecorder.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tRecorder.Tpo $(DEPDIR)/libtools_a-tRecorder.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tRecorder.cpp' object='libtools_a-tRecorder.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRecorder.o `test -f 'tools/tRecorder.cpp' || echo '$(srcdir)/'`tools/tRecorder.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRecorder.o `test -f 'tools/tRecorder.cpp' || echo '$(srcdir)/'`tools/tRecorder.cpp
 
 libtools_a-tRecorder.obj: tools/tRecorder.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRecorder.obj -MD -MP -MF $(DEPDIR)/libtools_a-tRecorder.Tpo -c -o libtools_a-tRecorder.obj `if test -f 'tools/tRecorder.cpp'; then $(CYGPATH_W) 'tools/tRecorder.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRecorder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tRecorder.Tpo $(DEPDIR)/libtools_a-tRecorder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tRecorder.cpp' object='libtools_a-tRecorder.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRecorder.obj -MD -MP -MF $(DEPDIR)/libtools_a-tRecorder.Tpo -c -o libtools_a-tRecorder.obj `if test -f 'tools/tRecorder.cpp'; then $(CYGPATH_W) 'tools/tRecorder.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRecorder.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tRecorder.Tpo $(DEPDIR)/libtools_a-tRecorder.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tRecorder.cpp' object='libtools_a-tRecorder.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRecorder.obj `if test -f 'tools/tRecorder.cpp'; then $(CYGPATH_W) 'tools/tRecorder.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRecorder.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRecorder.obj `if test -f 'tools/tRecorder.cpp'; then $(CYGPATH_W) 'tools/tRecorder.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRecorder.cpp'; fi`
 
 libtools_a-tRecorderInternal.o: tools/tRecorderInternal.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRecorderInternal.o -MD -MP -MF $(DEPDIR)/libtools_a-tRecorderInternal.Tpo -c -o libtools_a-tRecorderInternal.o `test -f 'tools/tRecorderInternal.cpp' || echo '$(srcdir)/'`tools/tRecorderInternal.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tRecorderInternal.Tpo $(DEPDIR)/libtools_a-tRecorderInternal.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tRecorderInternal.cpp' object='libtools_a-tRecorderInternal.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRecorderInternal.o -MD -MP -MF $(DEPDIR)/libtools_a-tRecorderInternal.Tpo -c -o libtools_a-tRecorderInternal.o `test -f 'tools/tRecorderInternal.cpp' || echo '$(srcdir)/'`tools/tRecorderInternal.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tRecorderInternal.Tpo $(DEPDIR)/libtools_a-tRecorderInternal.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tRecorderInternal.cpp' object='libtools_a-tRecorderInternal.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRecorderInternal.o `test -f 'tools/tRecorderInternal.cpp' || echo '$(srcdir)/'`tools/tRecorderInternal.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRecorderInternal.o `test -f 'tools/tRecorderInternal.cpp' || echo '$(srcdir)/'`tools/tRecorderInternal.cpp
 
 libtools_a-tRecorderInternal.obj: tools/tRecorderInternal.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRecorderInternal.obj -MD -MP -MF $(DEPDIR)/libtools_a-tRecorderInternal.Tpo -c -o libtools_a-tRecorderInternal.obj `if test -f 'tools/tRecorderInternal.cpp'; then $(CYGPATH_W) 'tools/tRecorderInternal.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRecorderInternal.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tRecorderInternal.Tpo $(DEPDIR)/libtools_a-tRecorderInternal.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tRecorderInternal.cpp' object='libtools_a-tRecorderInternal.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRecorderInternal.obj -MD -MP -MF $(DEPDIR)/libtools_a-tRecorderInternal.Tpo -c -o libtools_a-tRecorderInternal.obj `if test -f 'tools/tRecorderInternal.cpp'; then $(CYGPATH_W) 'tools/tRecorderInternal.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRecorderInternal.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tRecorderInternal.Tpo $(DEPDIR)/libtools_a-tRecorderInternal.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tRecorderInternal.cpp' object='libtools_a-tRecorderInternal.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRecorderInternal.obj `if test -f 'tools/tRecorderInternal.cpp'; then $(CYGPATH_W) 'tools/tRecorderInternal.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRecorderInternal.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRecorderInternal.obj `if test -f 'tools/tRecorderInternal.cpp'; then $(CYGPATH_W) 'tools/tRecorderInternal.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRecorderInternal.cpp'; fi`
 
 libtools_a-tCommandLine.o: tools/tCommandLine.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCommandLine.o -MD -MP -MF $(DEPDIR)/libtools_a-tCommandLine.Tpo -c -o libtools_a-tCommandLine.o `test -f 'tools/tCommandLine.cpp' || echo '$(srcdir)/'`tools/tCommandLine.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tCommandLine.Tpo $(DEPDIR)/libtools_a-tCommandLine.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tCommandLine.cpp' object='libtools_a-tCommandLine.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCommandLine.o -MD -MP -MF $(DEPDIR)/libtools_a-tCommandLine.Tpo -c -o libtools_a-tCommandLine.o `test -f 'tools/tCommandLine.cpp' || echo '$(srcdir)/'`tools/tCommandLine.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tCommandLine.Tpo $(DEPDIR)/libtools_a-tCommandLine.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tCommandLine.cpp' object='libtools_a-tCommandLine.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCommandLine.o `test -f 'tools/tCommandLine.cpp' || echo '$(srcdir)/'`tools/tCommandLine.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCommandLine.o `test -f 'tools/tCommandLine.cpp' || echo '$(srcdir)/'`tools/tCommandLine.cpp
 
 libtools_a-tCommandLine.obj: tools/tCommandLine.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCommandLine.obj -MD -MP -MF $(DEPDIR)/libtools_a-tCommandLine.Tpo -c -o libtools_a-tCommandLine.obj `if test -f 'tools/tCommandLine.cpp'; then $(CYGPATH_W) 'tools/tCommandLine.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCommandLine.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tCommandLine.Tpo $(DEPDIR)/libtools_a-tCommandLine.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tCommandLine.cpp' object='libtools_a-tCommandLine.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tCommandLine.obj -MD -MP -MF $(DEPDIR)/libtools_a-tCommandLine.Tpo -c -o libtools_a-tCommandLine.obj `if test -f 'tools/tCommandLine.cpp'; then $(CYGPATH_W) 'tools/tCommandLine.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCommandLine.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tCommandLine.Tpo $(DEPDIR)/libtools_a-tCommandLine.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tCommandLine.cpp' object='libtools_a-tCommandLine.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCommandLine.obj `if test -f 'tools/tCommandLine.cpp'; then $(CYGPATH_W) 'tools/tCommandLine.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCommandLine.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tCommandLine.obj `if test -f 'tools/tCommandLine.cpp'; then $(CYGPATH_W) 'tools/tCommandLine.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tCommandLine.cpp'; fi`
 
 libtools_a-tRandom.o: tools/tRandom.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRandom.o -MD -MP -MF $(DEPDIR)/libtools_a-tRandom.Tpo -c -o libtools_a-tRandom.o `test -f 'tools/tRandom.cpp' || echo '$(srcdir)/'`tools/tRandom.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tRandom.Tpo $(DEPDIR)/libtools_a-tRandom.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tRandom.cpp' object='libtools_a-tRandom.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRandom.o -MD -MP -MF $(DEPDIR)/libtools_a-tRandom.Tpo -c -o libtools_a-tRandom.o `test -f 'tools/tRandom.cpp' || echo '$(srcdir)/'`tools/tRandom.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tRandom.Tpo $(DEPDIR)/libtools_a-tRandom.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tRandom.cpp' object='libtools_a-tRandom.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRandom.o `test -f 'tools/tRandom.cpp' || echo '$(srcdir)/'`tools/tRandom.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRandom.o `test -f 'tools/tRandom.cpp' || echo '$(srcdir)/'`tools/tRandom.cpp
 
 libtools_a-tRandom.obj: tools/tRandom.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRandom.obj -MD -MP -MF $(DEPDIR)/libtools_a-tRandom.Tpo -c -o libtools_a-tRandom.obj `if test -f 'tools/tRandom.cpp'; then $(CYGPATH_W) 'tools/tRandom.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRandom.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tRandom.Tpo $(DEPDIR)/libtools_a-tRandom.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tRandom.cpp' object='libtools_a-tRandom.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tRandom.obj -MD -MP -MF $(DEPDIR)/libtools_a-tRandom.Tpo -c -o libtools_a-tRandom.obj `if test -f 'tools/tRandom.cpp'; then $(CYGPATH_W) 'tools/tRandom.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRandom.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tRandom.Tpo $(DEPDIR)/libtools_a-tRandom.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tRandom.cpp' object='libtools_a-tRandom.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRandom.obj `if test -f 'tools/tRandom.cpp'; then $(CYGPATH_W) 'tools/tRandom.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRandom.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tRandom.obj `if test -f 'tools/tRandom.cpp'; then $(CYGPATH_W) 'tools/tRandom.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tRandom.cpp'; fi`
 
 libtools_a-tMemManager.o: tools/tMemManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tMemManager.o -MD -MP -MF $(DEPDIR)/libtools_a-tMemManager.Tpo -c -o libtools_a-tMemManager.o `test -f 'tools/tMemManager.cpp' || echo '$(srcdir)/'`tools/tMemManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tMemManager.Tpo $(DEPDIR)/libtools_a-tMemManager.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tMemManager.cpp' object='libtools_a-tMemManager.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tMemManager.o -MD -MP -MF $(DEPDIR)/libtools_a-tMemManager.Tpo -c -o libtools_a-tMemManager.o `test -f 'tools/tMemManager.cpp' || echo '$(srcdir)/'`tools/tMemManager.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tMemManager.Tpo $(DEPDIR)/libtools_a-tMemManager.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tMemManager.cpp' object='libtools_a-tMemManager.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tMemManager.o `test -f 'tools/tMemManager.cpp' || echo '$(srcdir)/'`tools/tMemManager.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tMemManager.o `test -f 'tools/tMemManager.cpp' || echo '$(srcdir)/'`tools/tMemManager.cpp
 
 libtools_a-tMemManager.obj: tools/tMemManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tMemManager.obj -MD -MP -MF $(DEPDIR)/libtools_a-tMemManager.Tpo -c -o libtools_a-tMemManager.obj `if test -f 'tools/tMemManager.cpp'; then $(CYGPATH_W) 'tools/tMemManager.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tMemManager.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtools_a-tMemManager.Tpo $(DEPDIR)/libtools_a-tMemManager.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tools/tMemManager.cpp' object='libtools_a-tMemManager.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -MT libtools_a-tMemManager.obj -MD -MP -MF $(DEPDIR)/libtools_a-tMemManager.Tpo -c -o libtools_a-tMemManager.obj `if test -f 'tools/tMemManager.cpp'; then $(CYGPATH_W) 'tools/tMemManager.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tMemManager.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtools_a-tMemManager.Tpo $(DEPDIR)/libtools_a-tMemManager.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tools/tMemManager.cpp' object='libtools_a-tMemManager.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tMemManager.obj `if test -f 'tools/tMemManager.cpp'; then $(CYGPATH_W) 'tools/tMemManager.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tMemManager.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtools_a_CXXFLAGS) $(CXXFLAGS) -c -o libtools_a-tMemManager.obj `if test -f 'tools/tMemManager.cpp'; then $(CYGPATH_W) 'tools/tMemManager.cpp'; else $(CYGPATH_W) '$(srcdir)/tools/tMemManager.cpp'; fi`
 
 libtron_a-gAIBase.o: tron/gAIBase.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gAIBase.o -MD -MP -MF $(DEPDIR)/libtron_a-gAIBase.Tpo -c -o libtron_a-gAIBase.o `test -f 'tron/gAIBase.cpp' || echo '$(srcdir)/'`tron/gAIBase.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gAIBase.Tpo $(DEPDIR)/libtron_a-gAIBase.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gAIBase.cpp' object='libtron_a-gAIBase.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gAIBase.o -MD -MP -MF $(DEPDIR)/libtron_a-gAIBase.Tpo -c -o libtron_a-gAIBase.o `test -f 'tron/gAIBase.cpp' || echo '$(srcdir)/'`tron/gAIBase.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gAIBase.Tpo $(DEPDIR)/libtron_a-gAIBase.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gAIBase.cpp' object='libtron_a-gAIBase.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gAIBase.o `test -f 'tron/gAIBase.cpp' || echo '$(srcdir)/'`tron/gAIBase.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gAIBase.o `test -f 'tron/gAIBase.cpp' || echo '$(srcdir)/'`tron/gAIBase.cpp
 
 libtron_a-gAIBase.obj: tron/gAIBase.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gAIBase.obj -MD -MP -MF $(DEPDIR)/libtron_a-gAIBase.Tpo -c -o libtron_a-gAIBase.obj `if test -f 'tron/gAIBase.cpp'; then $(CYGPATH_W) 'tron/gAIBase.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gAIBase.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gAIBase.Tpo $(DEPDIR)/libtron_a-gAIBase.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gAIBase.cpp' object='libtron_a-gAIBase.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gAIBase.obj -MD -MP -MF $(DEPDIR)/libtron_a-gAIBase.Tpo -c -o libtron_a-gAIBase.obj `if test -f 'tron/gAIBase.cpp'; then $(CYGPATH_W) 'tron/gAIBase.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gAIBase.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gAIBase.Tpo $(DEPDIR)/libtron_a-gAIBase.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gAIBase.cpp' object='libtron_a-gAIBase.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gAIBase.obj `if test -f 'tron/gAIBase.cpp'; then $(CYGPATH_W) 'tron/gAIBase.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gAIBase.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gAIBase.obj `if test -f 'tron/gAIBase.cpp'; then $(CYGPATH_W) 'tron/gAIBase.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gAIBase.cpp'; fi`
 
 libtron_a-gAICharacter.o: tron/gAICharacter.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gAICharacter.o -MD -MP -MF $(DEPDIR)/libtron_a-gAICharacter.Tpo -c -o libtron_a-gAICharacter.o `test -f 'tron/gAICharacter.cpp' || echo '$(srcdir)/'`tron/gAICharacter.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gAICharacter.Tpo $(DEPDIR)/libtron_a-gAICharacter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gAICharacter.cpp' object='libtron_a-gAICharacter.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gAICharacter.o -MD -MP -MF $(DEPDIR)/libtron_a-gAICharacter.Tpo -c -o libtron_a-gAICharacter.o `test -f 'tron/gAICharacter.cpp' || echo '$(srcdir)/'`tron/gAICharacter.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gAICharacter.Tpo $(DEPDIR)/libtron_a-gAICharacter.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gAICharacter.cpp' object='libtron_a-gAICharacter.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gAICharacter.o `test -f 'tron/gAICharacter.cpp' || echo '$(srcdir)/'`tron/gAICharacter.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gAICharacter.o `test -f 'tron/gAICharacter.cpp' || echo '$(srcdir)/'`tron/gAICharacter.cpp
 
 libtron_a-gAICharacter.obj: tron/gAICharacter.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gAICharacter.obj -MD -MP -MF $(DEPDIR)/libtron_a-gAICharacter.Tpo -c -o libtron_a-gAICharacter.obj `if test -f 'tron/gAICharacter.cpp'; then $(CYGPATH_W) 'tron/gAICharacter.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gAICharacter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gAICharacter.Tpo $(DEPDIR)/libtron_a-gAICharacter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gAICharacter.cpp' object='libtron_a-gAICharacter.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gAICharacter.obj -MD -MP -MF $(DEPDIR)/libtron_a-gAICharacter.Tpo -c -o libtron_a-gAICharacter.obj `if test -f 'tron/gAICharacter.cpp'; then $(CYGPATH_W) 'tron/gAICharacter.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gAICharacter.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gAICharacter.Tpo $(DEPDIR)/libtron_a-gAICharacter.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gAICharacter.cpp' object='libtron_a-gAICharacter.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gAICharacter.obj `if test -f 'tron/gAICharacter.cpp'; then $(CYGPATH_W) 'tron/gAICharacter.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gAICharacter.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gAICharacter.obj `if test -f 'tron/gAICharacter.cpp'; then $(CYGPATH_W) 'tron/gAICharacter.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gAICharacter.cpp'; fi`
 
 libtron_a-gArena.o: tron/gArena.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gArena.o -MD -MP -MF $(DEPDIR)/libtron_a-gArena.Tpo -c -o libtron_a-gArena.o `test -f 'tron/gArena.cpp' || echo '$(srcdir)/'`tron/gArena.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gArena.Tpo $(DEPDIR)/libtron_a-gArena.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gArena.cpp' object='libtron_a-gArena.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gArena.o -MD -MP -MF $(DEPDIR)/libtron_a-gArena.Tpo -c -o libtron_a-gArena.o `test -f 'tron/gArena.cpp' || echo '$(srcdir)/'`tron/gArena.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gArena.Tpo $(DEPDIR)/libtron_a-gArena.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gArena.cpp' object='libtron_a-gArena.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gArena.o `test -f 'tron/gArena.cpp' || echo '$(srcdir)/'`tron/gArena.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gArena.o `test -f 'tron/gArena.cpp' || echo '$(srcdir)/'`tron/gArena.cpp
 
 libtron_a-gArena.obj: tron/gArena.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gArena.obj -MD -MP -MF $(DEPDIR)/libtron_a-gArena.Tpo -c -o libtron_a-gArena.obj `if test -f 'tron/gArena.cpp'; then $(CYGPATH_W) 'tron/gArena.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gArena.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gArena.Tpo $(DEPDIR)/libtron_a-gArena.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gArena.cpp' object='libtron_a-gArena.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gArena.obj -MD -MP -MF $(DEPDIR)/libtron_a-gArena.Tpo -c -o libtron_a-gArena.obj `if test -f 'tron/gArena.cpp'; then $(CYGPATH_W) 'tron/gArena.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gArena.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gArena.Tpo $(DEPDIR)/libtron_a-gArena.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gArena.cpp' object='libtron_a-gArena.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gArena.obj `if test -f 'tron/gArena.cpp'; then $(CYGPATH_W) 'tron/gArena.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gArena.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gArena.obj `if test -f 'tron/gArena.cpp'; then $(CYGPATH_W) 'tron/gArena.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gArena.cpp'; fi`
 
 libtron_a-gArmagetron.o: tron/gArmagetron.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gArmagetron.o -MD -MP -MF $(DEPDIR)/libtron_a-gArmagetron.Tpo -c -o libtron_a-gArmagetron.o `test -f 'tron/gArmagetron.cpp' || echo '$(srcdir)/'`tron/gArmagetron.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gArmagetron.Tpo $(DEPDIR)/libtron_a-gArmagetron.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gArmagetron.cpp' object='libtron_a-gArmagetron.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gArmagetron.o -MD -MP -MF $(DEPDIR)/libtron_a-gArmagetron.Tpo -c -o libtron_a-gArmagetron.o `test -f 'tron/gArmagetron.cpp' || echo '$(srcdir)/'`tron/gArmagetron.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gArmagetron.Tpo $(DEPDIR)/libtron_a-gArmagetron.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gArmagetron.cpp' object='libtron_a-gArmagetron.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gArmagetron.o `test -f 'tron/gArmagetron.cpp' || echo '$(srcdir)/'`tron/gArmagetron.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gArmagetron.o `test -f 'tron/gArmagetron.cpp' || echo '$(srcdir)/'`tron/gArmagetron.cpp
 
 libtron_a-gArmagetron.obj: tron/gArmagetron.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gArmagetron.obj -MD -MP -MF $(DEPDIR)/libtron_a-gArmagetron.Tpo -c -o libtron_a-gArmagetron.obj `if test -f 'tron/gArmagetron.cpp'; then $(CYGPATH_W) 'tron/gArmagetron.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gArmagetron.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gArmagetron.Tpo $(DEPDIR)/libtron_a-gArmagetron.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gArmagetron.cpp' object='libtron_a-gArmagetron.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gArmagetron.obj -MD -MP -MF $(DEPDIR)/libtron_a-gArmagetron.Tpo -c -o libtron_a-gArmagetron.obj `if test -f 'tron/gArmagetron.cpp'; then $(CYGPATH_W) 'tron/gArmagetron.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gArmagetron.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gArmagetron.Tpo $(DEPDIR)/libtron_a-gArmagetron.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gArmagetron.cpp' object='libtron_a-gArmagetron.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gArmagetron.obj `if test -f 'tron/gArmagetron.cpp'; then $(CYGPATH_W) 'tron/gArmagetron.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gArmagetron.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gArmagetron.obj `if test -f 'tron/gArmagetron.cpp'; then $(CYGPATH_W) 'tron/gArmagetron.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gArmagetron.cpp'; fi`
 
 libtron_a-gCamera.o: tron/gCamera.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCamera.o -MD -MP -MF $(DEPDIR)/libtron_a-gCamera.Tpo -c -o libtron_a-gCamera.o `test -f 'tron/gCamera.cpp' || echo '$(srcdir)/'`tron/gCamera.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gCamera.Tpo $(DEPDIR)/libtron_a-gCamera.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gCamera.cpp' object='libtron_a-gCamera.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCamera.o -MD -MP -MF $(DEPDIR)/libtron_a-gCamera.Tpo -c -o libtron_a-gCamera.o `test -f 'tron/gCamera.cpp' || echo '$(srcdir)/'`tron/gCamera.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gCamera.Tpo $(DEPDIR)/libtron_a-gCamera.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gCamera.cpp' object='libtron_a-gCamera.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCamera.o `test -f 'tron/gCamera.cpp' || echo '$(srcdir)/'`tron/gCamera.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCamera.o `test -f 'tron/gCamera.cpp' || echo '$(srcdir)/'`tron/gCamera.cpp
 
 libtron_a-gCamera.obj: tron/gCamera.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCamera.obj -MD -MP -MF $(DEPDIR)/libtron_a-gCamera.Tpo -c -o libtron_a-gCamera.obj `if test -f 'tron/gCamera.cpp'; then $(CYGPATH_W) 'tron/gCamera.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCamera.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gCamera.Tpo $(DEPDIR)/libtron_a-gCamera.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gCamera.cpp' object='libtron_a-gCamera.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCamera.obj -MD -MP -MF $(DEPDIR)/libtron_a-gCamera.Tpo -c -o libtron_a-gCamera.obj `if test -f 'tron/gCamera.cpp'; then $(CYGPATH_W) 'tron/gCamera.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCamera.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gCamera.Tpo $(DEPDIR)/libtron_a-gCamera.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gCamera.cpp' object='libtron_a-gCamera.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCamera.obj `if test -f 'tron/gCamera.cpp'; then $(CYGPATH_W) 'tron/gCamera.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCamera.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCamera.obj `if test -f 'tron/gCamera.cpp'; then $(CYGPATH_W) 'tron/gCamera.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCamera.cpp'; fi`
 
 libtron_a-gCycle.o: tron/gCycle.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCycle.o -MD -MP -MF $(DEPDIR)/libtron_a-gCycle.Tpo -c -o libtron_a-gCycle.o `test -f 'tron/gCycle.cpp' || echo '$(srcdir)/'`tron/gCycle.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gCycle.Tpo $(DEPDIR)/libtron_a-gCycle.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gCycle.cpp' object='libtron_a-gCycle.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCycle.o -MD -MP -MF $(DEPDIR)/libtron_a-gCycle.Tpo -c -o libtron_a-gCycle.o `test -f 'tron/gCycle.cpp' || echo '$(srcdir)/'`tron/gCycle.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gCycle.Tpo $(DEPDIR)/libtron_a-gCycle.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gCycle.cpp' object='libtron_a-gCycle.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCycle.o `test -f 'tron/gCycle.cpp' || echo '$(srcdir)/'`tron/gCycle.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCycle.o `test -f 'tron/gCycle.cpp' || echo '$(srcdir)/'`tron/gCycle.cpp
 
 libtron_a-gCycle.obj: tron/gCycle.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCycle.obj -MD -MP -MF $(DEPDIR)/libtron_a-gCycle.Tpo -c -o libtron_a-gCycle.obj `if test -f 'tron/gCycle.cpp'; then $(CYGPATH_W) 'tron/gCycle.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCycle.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gCycle.Tpo $(DEPDIR)/libtron_a-gCycle.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gCycle.cpp' object='libtron_a-gCycle.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCycle.obj -MD -MP -MF $(DEPDIR)/libtron_a-gCycle.Tpo -c -o libtron_a-gCycle.obj `if test -f 'tron/gCycle.cpp'; then $(CYGPATH_W) 'tron/gCycle.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCycle.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gCycle.Tpo $(DEPDIR)/libtron_a-gCycle.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gCycle.cpp' object='libtron_a-gCycle.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCycle.obj `if test -f 'tron/gCycle.cpp'; then $(CYGPATH_W) 'tron/gCycle.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCycle.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCycle.obj `if test -f 'tron/gCycle.cpp'; then $(CYGPATH_W) 'tron/gCycle.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCycle.cpp'; fi`
 
 libtron_a-gCycleMovement.o: tron/gCycleMovement.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCycleMovement.o -MD -MP -MF $(DEPDIR)/libtron_a-gCycleMovement.Tpo -c -o libtron_a-gCycleMovement.o `test -f 'tron/gCycleMovement.cpp' || echo '$(srcdir)/'`tron/gCycleMovement.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gCycleMovement.Tpo $(DEPDIR)/libtron_a-gCycleMovement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gCycleMovement.cpp' object='libtron_a-gCycleMovement.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCycleMovement.o -MD -MP -MF $(DEPDIR)/libtron_a-gCycleMovement.Tpo -c -o libtron_a-gCycleMovement.o `test -f 'tron/gCycleMovement.cpp' || echo '$(srcdir)/'`tron/gCycleMovement.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gCycleMovement.Tpo $(DEPDIR)/libtron_a-gCycleMovement.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gCycleMovement.cpp' object='libtron_a-gCycleMovement.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCycleMovement.o `test -f 'tron/gCycleMovement.cpp' || echo '$(srcdir)/'`tron/gCycleMovement.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCycleMovement.o `test -f 'tron/gCycleMovement.cpp' || echo '$(srcdir)/'`tron/gCycleMovement.cpp
 
 libtron_a-gCycleMovement.obj: tron/gCycleMovement.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCycleMovement.obj -MD -MP -MF $(DEPDIR)/libtron_a-gCycleMovement.Tpo -c -o libtron_a-gCycleMovement.obj `if test -f 'tron/gCycleMovement.cpp'; then $(CYGPATH_W) 'tron/gCycleMovement.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCycleMovement.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gCycleMovement.Tpo $(DEPDIR)/libtron_a-gCycleMovement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gCycleMovement.cpp' object='libtron_a-gCycleMovement.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gCycleMovement.obj -MD -MP -MF $(DEPDIR)/libtron_a-gCycleMovement.Tpo -c -o libtron_a-gCycleMovement.obj `if test -f 'tron/gCycleMovement.cpp'; then $(CYGPATH_W) 'tron/gCycleMovement.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCycleMovement.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gCycleMovement.Tpo $(DEPDIR)/libtron_a-gCycleMovement.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gCycleMovement.cpp' object='libtron_a-gCycleMovement.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCycleMovement.obj `if test -f 'tron/gCycleMovement.cpp'; then $(CYGPATH_W) 'tron/gCycleMovement.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCycleMovement.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gCycleMovement.obj `if test -f 'tron/gCycleMovement.cpp'; then $(CYGPATH_W) 'tron/gCycleMovement.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gCycleMovement.cpp'; fi`
 
 libtron_a-gExplosion.o: tron/gExplosion.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gExplosion.o -MD -MP -MF $(DEPDIR)/libtron_a-gExplosion.Tpo -c -o libtron_a-gExplosion.o `test -f 'tron/gExplosion.cpp' || echo '$(srcdir)/'`tron/gExplosion.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gExplosion.Tpo $(DEPDIR)/libtron_a-gExplosion.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gExplosion.cpp' object='libtron_a-gExplosion.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gExplosion.o -MD -MP -MF $(DEPDIR)/libtron_a-gExplosion.Tpo -c -o libtron_a-gExplosion.o `test -f 'tron/gExplosion.cpp' || echo '$(srcdir)/'`tron/gExplosion.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gExplosion.Tpo $(DEPDIR)/libtron_a-gExplosion.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gExplosion.cpp' object='libtron_a-gExplosion.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gExplosion.o `test -f 'tron/gExplosion.cpp' || echo '$(srcdir)/'`tron/gExplosion.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gExplosion.o `test -f 'tron/gExplosion.cpp' || echo '$(srcdir)/'`tron/gExplosion.cpp
 
 libtron_a-gExplosion.obj: tron/gExplosion.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gExplosion.obj -MD -MP -MF $(DEPDIR)/libtron_a-gExplosion.Tpo -c -o libtron_a-gExplosion.obj `if test -f 'tron/gExplosion.cpp'; then $(CYGPATH_W) 'tron/gExplosion.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gExplosion.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gExplosion.Tpo $(DEPDIR)/libtron_a-gExplosion.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gExplosion.cpp' object='libtron_a-gExplosion.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gExplosion.obj -MD -MP -MF $(DEPDIR)/libtron_a-gExplosion.Tpo -c -o libtron_a-gExplosion.obj `if test -f 'tron/gExplosion.cpp'; then $(CYGPATH_W) 'tron/gExplosion.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gExplosion.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gExplosion.Tpo $(DEPDIR)/libtron_a-gExplosion.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gExplosion.cpp' object='libtron_a-gExplosion.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gExplosion.obj `if test -f 'tron/gExplosion.cpp'; then $(CYGPATH_W) 'tron/gExplosion.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gExplosion.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gExplosion.obj `if test -f 'tron/gExplosion.cpp'; then $(CYGPATH_W) 'tron/gExplosion.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gExplosion.cpp'; fi`
 
 libtron_a-gGame.o: tron/gGame.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gGame.o -MD -MP -MF $(DEPDIR)/libtron_a-gGame.Tpo -c -o libtron_a-gGame.o `test -f 'tron/gGame.cpp' || echo '$(srcdir)/'`tron/gGame.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gGame.Tpo $(DEPDIR)/libtron_a-gGame.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gGame.cpp' object='libtron_a-gGame.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gGame.o -MD -MP -MF $(DEPDIR)/libtron_a-gGame.Tpo -c -o libtron_a-gGame.o `test -f 'tron/gGame.cpp' || echo '$(srcdir)/'`tron/gGame.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gGame.Tpo $(DEPDIR)/libtron_a-gGame.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gGame.cpp' object='libtron_a-gGame.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gGame.o `test -f 'tron/gGame.cpp' || echo '$(srcdir)/'`tron/gGame.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gGame.o `test -f 'tron/gGame.cpp' || echo '$(srcdir)/'`tron/gGame.cpp
 
 libtron_a-gGame.obj: tron/gGame.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gGame.obj -MD -MP -MF $(DEPDIR)/libtron_a-gGame.Tpo -c -o libtron_a-gGame.obj `if test -f 'tron/gGame.cpp'; then $(CYGPATH_W) 'tron/gGame.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gGame.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gGame.Tpo $(DEPDIR)/libtron_a-gGame.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gGame.cpp' object='libtron_a-gGame.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gGame.obj -MD -MP -MF $(DEPDIR)/libtron_a-gGame.Tpo -c -o libtron_a-gGame.obj `if test -f 'tron/gGame.cpp'; then $(CYGPATH_W) 'tron/gGame.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gGame.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gGame.Tpo $(DEPDIR)/libtron_a-gGame.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gGame.cpp' object='libtron_a-gGame.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gGame.obj `if test -f 'tron/gGame.cpp'; then $(CYGPATH_W) 'tron/gGame.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gGame.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gGame.obj `if test -f 'tron/gGame.cpp'; then $(CYGPATH_W) 'tron/gGame.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gGame.cpp'; fi`
 
 libtron_a-gHud.o: tron/gHud.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gHud.o -MD -MP -MF $(DEPDIR)/libtron_a-gHud.Tpo -c -o libtron_a-gHud.o `test -f 'tron/gHud.cpp' || echo '$(srcdir)/'`tron/gHud.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gHud.Tpo $(DEPDIR)/libtron_a-gHud.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gHud.cpp' object='libtron_a-gHud.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gHud.o -MD -MP -MF $(DEPDIR)/libtron_a-gHud.Tpo -c -o libtron_a-gHud.o `test -f 'tron/gHud.cpp' || echo '$(srcdir)/'`tron/gHud.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gHud.Tpo $(DEPDIR)/libtron_a-gHud.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gHud.cpp' object='libtron_a-gHud.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gHud.o `test -f 'tron/gHud.cpp' || echo '$(srcdir)/'`tron/gHud.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gHud.o `test -f 'tron/gHud.cpp' || echo '$(srcdir)/'`tron/gHud.cpp
 
 libtron_a-gHud.obj: tron/gHud.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gHud.obj -MD -MP -MF $(DEPDIR)/libtron_a-gHud.Tpo -c -o libtron_a-gHud.obj `if test -f 'tron/gHud.cpp'; then $(CYGPATH_W) 'tron/gHud.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gHud.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gHud.Tpo $(DEPDIR)/libtron_a-gHud.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gHud.cpp' object='libtron_a-gHud.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gHud.obj -MD -MP -MF $(DEPDIR)/libtron_a-gHud.Tpo -c -o libtron_a-gHud.obj `if test -f 'tron/gHud.cpp'; then $(CYGPATH_W) 'tron/gHud.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gHud.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gHud.Tpo $(DEPDIR)/libtron_a-gHud.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gHud.cpp' object='libtron_a-gHud.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gHud.obj `if test -f 'tron/gHud.cpp'; then $(CYGPATH_W) 'tron/gHud.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gHud.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gHud.obj `if test -f 'tron/gHud.cpp'; then $(CYGPATH_W) 'tron/gHud.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gHud.cpp'; fi`
 
 libtron_a-gLanguageMenu.o: tron/gLanguageMenu.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gLanguageMenu.o -MD -MP -MF $(DEPDIR)/libtron_a-gLanguageMenu.Tpo -c -o libtron_a-gLanguageMenu.o `test -f 'tron/gLanguageMenu.cpp' || echo '$(srcdir)/'`tron/gLanguageMenu.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gLanguageMenu.Tpo $(DEPDIR)/libtron_a-gLanguageMenu.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gLanguageMenu.cpp' object='libtron_a-gLanguageMenu.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gLanguageMenu.o -MD -MP -MF $(DEPDIR)/libtron_a-gLanguageMenu.Tpo -c -o libtron_a-gLanguageMenu.o `test -f 'tron/gLanguageMenu.cpp' || echo '$(srcdir)/'`tron/gLanguageMenu.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gLanguageMenu.Tpo $(DEPDIR)/libtron_a-gLanguageMenu.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gLanguageMenu.cpp' object='libtron_a-gLanguageMenu.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gLanguageMenu.o `test -f 'tron/gLanguageMenu.cpp' || echo '$(srcdir)/'`tron/gLanguageMenu.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gLanguageMenu.o `test -f 'tron/gLanguageMenu.cpp' || echo '$(srcdir)/'`tron/gLanguageMenu.cpp
 
 libtron_a-gLanguageMenu.obj: tron/gLanguageMenu.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gLanguageMenu.obj -MD -MP -MF $(DEPDIR)/libtron_a-gLanguageMenu.Tpo -c -o libtron_a-gLanguageMenu.obj `if test -f 'tron/gLanguageMenu.cpp'; then $(CYGPATH_W) 'tron/gLanguageMenu.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gLanguageMenu.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gLanguageMenu.Tpo $(DEPDIR)/libtron_a-gLanguageMenu.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gLanguageMenu.cpp' object='libtron_a-gLanguageMenu.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gLanguageMenu.obj -MD -MP -MF $(DEPDIR)/libtron_a-gLanguageMenu.Tpo -c -o libtron_a-gLanguageMenu.obj `if test -f 'tron/gLanguageMenu.cpp'; then $(CYGPATH_W) 'tron/gLanguageMenu.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gLanguageMenu.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gLanguageMenu.Tpo $(DEPDIR)/libtron_a-gLanguageMenu.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gLanguageMenu.cpp' object='libtron_a-gLanguageMenu.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gLanguageMenu.obj `if test -f 'tron/gLanguageMenu.cpp'; then $(CYGPATH_W) 'tron/gLanguageMenu.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gLanguageMenu.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gLanguageMenu.obj `if test -f 'tron/gLanguageMenu.cpp'; then $(CYGPATH_W) 'tron/gLanguageMenu.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gLanguageMenu.cpp'; fi`
 
 libtron_a-gLogo.o: tron/gLogo.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gLogo.o -MD -MP -MF $(DEPDIR)/libtron_a-gLogo.Tpo -c -o libtron_a-gLogo.o `test -f 'tron/gLogo.cpp' || echo '$(srcdir)/'`tron/gLogo.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gLogo.Tpo $(DEPDIR)/libtron_a-gLogo.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gLogo.cpp' object='libtron_a-gLogo.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gLogo.o -MD -MP -MF $(DEPDIR)/libtron_a-gLogo.Tpo -c -o libtron_a-gLogo.o `test -f 'tron/gLogo.cpp' || echo '$(srcdir)/'`tron/gLogo.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gLogo.Tpo $(DEPDIR)/libtron_a-gLogo.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gLogo.cpp' object='libtron_a-gLogo.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gLogo.o `test -f 'tron/gLogo.cpp' || echo '$(srcdir)/'`tron/gLogo.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gLogo.o `test -f 'tron/gLogo.cpp' || echo '$(srcdir)/'`tron/gLogo.cpp
 
 libtron_a-gLogo.obj: tron/gLogo.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gLogo.obj -MD -MP -MF $(DEPDIR)/libtron_a-gLogo.Tpo -c -o libtron_a-gLogo.obj `if test -f 'tron/gLogo.cpp'; then $(CYGPATH_W) 'tron/gLogo.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gLogo.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gLogo.Tpo $(DEPDIR)/libtron_a-gLogo.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gLogo.cpp' object='libtron_a-gLogo.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gLogo.obj -MD -MP -MF $(DEPDIR)/libtron_a-gLogo.Tpo -c -o libtron_a-gLogo.obj `if test -f 'tron/gLogo.cpp'; then $(CYGPATH_W) 'tron/gLogo.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gLogo.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gLogo.Tpo $(DEPDIR)/libtron_a-gLogo.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gLogo.cpp' object='libtron_a-gLogo.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gLogo.obj `if test -f 'tron/gLogo.cpp'; then $(CYGPATH_W) 'tron/gLogo.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gLogo.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gLogo.obj `if test -f 'tron/gLogo.cpp'; then $(CYGPATH_W) 'tron/gLogo.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gLogo.cpp'; fi`
 
 libtron_a-gMenus.o: tron/gMenus.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gMenus.o -MD -MP -MF $(DEPDIR)/libtron_a-gMenus.Tpo -c -o libtron_a-gMenus.o `test -f 'tron/gMenus.cpp' || echo '$(srcdir)/'`tron/gMenus.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gMenus.Tpo $(DEPDIR)/libtron_a-gMenus.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gMenus.cpp' object='libtron_a-gMenus.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gMenus.o -MD -MP -MF $(DEPDIR)/libtron_a-gMenus.Tpo -c -o libtron_a-gMenus.o `test -f 'tron/gMenus.cpp' || echo '$(srcdir)/'`tron/gMenus.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gMenus.Tpo $(DEPDIR)/libtron_a-gMenus.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gMenus.cpp' object='libtron_a-gMenus.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gMenus.o `test -f 'tron/gMenus.cpp' || echo '$(srcdir)/'`tron/gMenus.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gMenus.o `test -f 'tron/gMenus.cpp' || echo '$(srcdir)/'`tron/gMenus.cpp
 
 libtron_a-gMenus.obj: tron/gMenus.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gMenus.obj -MD -MP -MF $(DEPDIR)/libtron_a-gMenus.Tpo -c -o libtron_a-gMenus.obj `if test -f 'tron/gMenus.cpp'; then $(CYGPATH_W) 'tron/gMenus.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gMenus.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gMenus.Tpo $(DEPDIR)/libtron_a-gMenus.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gMenus.cpp' object='libtron_a-gMenus.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gMenus.obj -MD -MP -MF $(DEPDIR)/libtron_a-gMenus.Tpo -c -o libtron_a-gMenus.obj `if test -f 'tron/gMenus.cpp'; then $(CYGPATH_W) 'tron/gMenus.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gMenus.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gMenus.Tpo $(DEPDIR)/libtron_a-gMenus.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gMenus.cpp' object='libtron_a-gMenus.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gMenus.obj `if test -f 'tron/gMenus.cpp'; then $(CYGPATH_W) 'tron/gMenus.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gMenus.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gMenus.obj `if test -f 'tron/gMenus.cpp'; then $(CYGPATH_W) 'tron/gMenus.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gMenus.cpp'; fi`
 
 libtron_a-gParser.o: tron/gParser.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gParser.o -MD -MP -MF $(DEPDIR)/libtron_a-gParser.Tpo -c -o libtron_a-gParser.o `test -f 'tron/gParser.cpp' || echo '$(srcdir)/'`tron/gParser.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gParser.Tpo $(DEPDIR)/libtron_a-gParser.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gParser.cpp' object='libtron_a-gParser.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gParser.o -MD -MP -MF $(DEPDIR)/libtron_a-gParser.Tpo -c -o libtron_a-gParser.o `test -f 'tron/gParser.cpp' || echo '$(srcdir)/'`tron/gParser.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gParser.Tpo $(DEPDIR)/libtron_a-gParser.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gParser.cpp' object='libtron_a-gParser.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gParser.o `test -f 'tron/gParser.cpp' || echo '$(srcdir)/'`tron/gParser.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gParser.o `test -f 'tron/gParser.cpp' || echo '$(srcdir)/'`tron/gParser.cpp
 
 libtron_a-gParser.obj: tron/gParser.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gParser.obj -MD -MP -MF $(DEPDIR)/libtron_a-gParser.Tpo -c -o libtron_a-gParser.obj `if test -f 'tron/gParser.cpp'; then $(CYGPATH_W) 'tron/gParser.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gParser.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gParser.Tpo $(DEPDIR)/libtron_a-gParser.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gParser.cpp' object='libtron_a-gParser.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gParser.obj -MD -MP -MF $(DEPDIR)/libtron_a-gParser.Tpo -c -o libtron_a-gParser.obj `if test -f 'tron/gParser.cpp'; then $(CYGPATH_W) 'tron/gParser.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gParser.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gParser.Tpo $(DEPDIR)/libtron_a-gParser.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gParser.cpp' object='libtron_a-gParser.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gParser.obj `if test -f 'tron/gParser.cpp'; then $(CYGPATH_W) 'tron/gParser.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gParser.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gParser.obj `if test -f 'tron/gParser.cpp'; then $(CYGPATH_W) 'tron/gParser.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gParser.cpp'; fi`
 
 libtron_a-gParticles.o: tron/gParticles.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gParticles.o -MD -MP -MF $(DEPDIR)/libtron_a-gParticles.Tpo -c -o libtron_a-gParticles.o `test -f 'tron/gParticles.cpp' || echo '$(srcdir)/'`tron/gParticles.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gParticles.Tpo $(DEPDIR)/libtron_a-gParticles.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gParticles.cpp' object='libtron_a-gParticles.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gParticles.o -MD -MP -MF $(DEPDIR)/libtron_a-gParticles.Tpo -c -o libtron_a-gParticles.o `test -f 'tron/gParticles.cpp' || echo '$(srcdir)/'`tron/gParticles.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gParticles.Tpo $(DEPDIR)/libtron_a-gParticles.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gParticles.cpp' object='libtron_a-gParticles.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gParticles.o `test -f 'tron/gParticles.cpp' || echo '$(srcdir)/'`tron/gParticles.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gParticles.o `test -f 'tron/gParticles.cpp' || echo '$(srcdir)/'`tron/gParticles.cpp
 
 libtron_a-gParticles.obj: tron/gParticles.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gParticles.obj -MD -MP -MF $(DEPDIR)/libtron_a-gParticles.Tpo -c -o libtron_a-gParticles.obj `if test -f 'tron/gParticles.cpp'; then $(CYGPATH_W) 'tron/gParticles.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gParticles.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gParticles.Tpo $(DEPDIR)/libtron_a-gParticles.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gParticles.cpp' object='libtron_a-gParticles.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gParticles.obj -MD -MP -MF $(DEPDIR)/libtron_a-gParticles.Tpo -c -o libtron_a-gParticles.obj `if test -f 'tron/gParticles.cpp'; then $(CYGPATH_W) 'tron/gParticles.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gParticles.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gParticles.Tpo $(DEPDIR)/libtron_a-gParticles.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gParticles.cpp' object='libtron_a-gParticles.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gParticles.obj `if test -f 'tron/gParticles.cpp'; then $(CYGPATH_W) 'tron/gParticles.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gParticles.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gParticles.obj `if test -f 'tron/gParticles.cpp'; then $(CYGPATH_W) 'tron/gParticles.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gParticles.cpp'; fi`
 
 libtron_a-gSensor.o: tron/gSensor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSensor.o -MD -MP -MF $(DEPDIR)/libtron_a-gSensor.Tpo -c -o libtron_a-gSensor.o `test -f 'tron/gSensor.cpp' || echo '$(srcdir)/'`tron/gSensor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gSensor.Tpo $(DEPDIR)/libtron_a-gSensor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gSensor.cpp' object='libtron_a-gSensor.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSensor.o -MD -MP -MF $(DEPDIR)/libtron_a-gSensor.Tpo -c -o libtron_a-gSensor.o `test -f 'tron/gSensor.cpp' || echo '$(srcdir)/'`tron/gSensor.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gSensor.Tpo $(DEPDIR)/libtron_a-gSensor.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gSensor.cpp' object='libtron_a-gSensor.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSensor.o `test -f 'tron/gSensor.cpp' || echo '$(srcdir)/'`tron/gSensor.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSensor.o `test -f 'tron/gSensor.cpp' || echo '$(srcdir)/'`tron/gSensor.cpp
 
 libtron_a-gSensor.obj: tron/gSensor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSensor.obj -MD -MP -MF $(DEPDIR)/libtron_a-gSensor.Tpo -c -o libtron_a-gSensor.obj `if test -f 'tron/gSensor.cpp'; then $(CYGPATH_W) 'tron/gSensor.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSensor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gSensor.Tpo $(DEPDIR)/libtron_a-gSensor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gSensor.cpp' object='libtron_a-gSensor.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSensor.obj -MD -MP -MF $(DEPDIR)/libtron_a-gSensor.Tpo -c -o libtron_a-gSensor.obj `if test -f 'tron/gSensor.cpp'; then $(CYGPATH_W) 'tron/gSensor.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSensor.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gSensor.Tpo $(DEPDIR)/libtron_a-gSensor.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gSensor.cpp' object='libtron_a-gSensor.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSensor.obj `if test -f 'tron/gSensor.cpp'; then $(CYGPATH_W) 'tron/gSensor.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSensor.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSensor.obj `if test -f 'tron/gSensor.cpp'; then $(CYGPATH_W) 'tron/gSensor.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSensor.cpp'; fi`
 
 libtron_a-gServerBrowser.o: tron/gServerBrowser.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gServerBrowser.o -MD -MP -MF $(DEPDIR)/libtron_a-gServerBrowser.Tpo -c -o libtron_a-gServerBrowser.o `test -f 'tron/gServerBrowser.cpp' || echo '$(srcdir)/'`tron/gServerBrowser.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gServerBrowser.Tpo $(DEPDIR)/libtron_a-gServerBrowser.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gServerBrowser.cpp' object='libtron_a-gServerBrowser.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gServerBrowser.o -MD -MP -MF $(DEPDIR)/libtron_a-gServerBrowser.Tpo -c -o libtron_a-gServerBrowser.o `test -f 'tron/gServerBrowser.cpp' || echo '$(srcdir)/'`tron/gServerBrowser.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gServerBrowser.Tpo $(DEPDIR)/libtron_a-gServerBrowser.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gServerBrowser.cpp' object='libtron_a-gServerBrowser.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gServerBrowser.o `test -f 'tron/gServerBrowser.cpp' || echo '$(srcdir)/'`tron/gServerBrowser.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gServerBrowser.o `test -f 'tron/gServerBrowser.cpp' || echo '$(srcdir)/'`tron/gServerBrowser.cpp
 
 libtron_a-gServerBrowser.obj: tron/gServerBrowser.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gServerBrowser.obj -MD -MP -MF $(DEPDIR)/libtron_a-gServerBrowser.Tpo -c -o libtron_a-gServerBrowser.obj `if test -f 'tron/gServerBrowser.cpp'; then $(CYGPATH_W) 'tron/gServerBrowser.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gServerBrowser.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gServerBrowser.Tpo $(DEPDIR)/libtron_a-gServerBrowser.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gServerBrowser.cpp' object='libtron_a-gServerBrowser.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gServerBrowser.obj -MD -MP -MF $(DEPDIR)/libtron_a-gServerBrowser.Tpo -c -o libtron_a-gServerBrowser.obj `if test -f 'tron/gServerBrowser.cpp'; then $(CYGPATH_W) 'tron/gServerBrowser.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gServerBrowser.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gServerBrowser.Tpo $(DEPDIR)/libtron_a-gServerBrowser.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gServerBrowser.cpp' object='libtron_a-gServerBrowser.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gServerBrowser.obj `if test -f 'tron/gServerBrowser.cpp'; then $(CYGPATH_W) 'tron/gServerBrowser.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gServerBrowser.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gServerBrowser.obj `if test -f 'tron/gServerBrowser.cpp'; then $(CYGPATH_W) 'tron/gServerBrowser.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gServerBrowser.cpp'; fi`
 
 libtron_a-gSparks.o: tron/gSparks.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSparks.o -MD -MP -MF $(DEPDIR)/libtron_a-gSparks.Tpo -c -o libtron_a-gSparks.o `test -f 'tron/gSparks.cpp' || echo '$(srcdir)/'`tron/gSparks.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gSparks.Tpo $(DEPDIR)/libtron_a-gSparks.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gSparks.cpp' object='libtron_a-gSparks.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSparks.o -MD -MP -MF $(DEPDIR)/libtron_a-gSparks.Tpo -c -o libtron_a-gSparks.o `test -f 'tron/gSparks.cpp' || echo '$(srcdir)/'`tron/gSparks.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gSparks.Tpo $(DEPDIR)/libtron_a-gSparks.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gSparks.cpp' object='libtron_a-gSparks.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSparks.o `test -f 'tron/gSparks.cpp' || echo '$(srcdir)/'`tron/gSparks.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSparks.o `test -f 'tron/gSparks.cpp' || echo '$(srcdir)/'`tron/gSparks.cpp
 
 libtron_a-gSparks.obj: tron/gSparks.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSparks.obj -MD -MP -MF $(DEPDIR)/libtron_a-gSparks.Tpo -c -o libtron_a-gSparks.obj `if test -f 'tron/gSparks.cpp'; then $(CYGPATH_W) 'tron/gSparks.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSparks.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gSparks.Tpo $(DEPDIR)/libtron_a-gSparks.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gSparks.cpp' object='libtron_a-gSparks.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSparks.obj -MD -MP -MF $(DEPDIR)/libtron_a-gSparks.Tpo -c -o libtron_a-gSparks.obj `if test -f 'tron/gSparks.cpp'; then $(CYGPATH_W) 'tron/gSparks.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSparks.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gSparks.Tpo $(DEPDIR)/libtron_a-gSparks.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gSparks.cpp' object='libtron_a-gSparks.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSparks.obj `if test -f 'tron/gSparks.cpp'; then $(CYGPATH_W) 'tron/gSparks.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSparks.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSparks.obj `if test -f 'tron/gSparks.cpp'; then $(CYGPATH_W) 'tron/gSparks.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSparks.cpp'; fi`
 
 libtron_a-gSpawn.o: tron/gSpawn.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSpawn.o -MD -MP -MF $(DEPDIR)/libtron_a-gSpawn.Tpo -c -o libtron_a-gSpawn.o `test -f 'tron/gSpawn.cpp' || echo '$(srcdir)/'`tron/gSpawn.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gSpawn.Tpo $(DEPDIR)/libtron_a-gSpawn.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gSpawn.cpp' object='libtron_a-gSpawn.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSpawn.o -MD -MP -MF $(DEPDIR)/libtron_a-gSpawn.Tpo -c -o libtron_a-gSpawn.o `test -f 'tron/gSpawn.cpp' || echo '$(srcdir)/'`tron/gSpawn.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gSpawn.Tpo $(DEPDIR)/libtron_a-gSpawn.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gSpawn.cpp' object='libtron_a-gSpawn.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSpawn.o `test -f 'tron/gSpawn.cpp' || echo '$(srcdir)/'`tron/gSpawn.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSpawn.o `test -f 'tron/gSpawn.cpp' || echo '$(srcdir)/'`tron/gSpawn.cpp
 
 libtron_a-gSpawn.obj: tron/gSpawn.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSpawn.obj -MD -MP -MF $(DEPDIR)/libtron_a-gSpawn.Tpo -c -o libtron_a-gSpawn.obj `if test -f 'tron/gSpawn.cpp'; then $(CYGPATH_W) 'tron/gSpawn.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSpawn.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gSpawn.Tpo $(DEPDIR)/libtron_a-gSpawn.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gSpawn.cpp' object='libtron_a-gSpawn.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gSpawn.obj -MD -MP -MF $(DEPDIR)/libtron_a-gSpawn.Tpo -c -o libtron_a-gSpawn.obj `if test -f 'tron/gSpawn.cpp'; then $(CYGPATH_W) 'tron/gSpawn.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSpawn.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gSpawn.Tpo $(DEPDIR)/libtron_a-gSpawn.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gSpawn.cpp' object='libtron_a-gSpawn.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSpawn.obj `if test -f 'tron/gSpawn.cpp'; then $(CYGPATH_W) 'tron/gSpawn.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSpawn.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gSpawn.obj `if test -f 'tron/gSpawn.cpp'; then $(CYGPATH_W) 'tron/gSpawn.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gSpawn.cpp'; fi`
 
 libtron_a-gStuff.o: tron/gStuff.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gStuff.o -MD -MP -MF $(DEPDIR)/libtron_a-gStuff.Tpo -c -o libtron_a-gStuff.o `test -f 'tron/gStuff.cpp' || echo '$(srcdir)/'`tron/gStuff.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gStuff.Tpo $(DEPDIR)/libtron_a-gStuff.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gStuff.cpp' object='libtron_a-gStuff.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gStuff.o -MD -MP -MF $(DEPDIR)/libtron_a-gStuff.Tpo -c -o libtron_a-gStuff.o `test -f 'tron/gStuff.cpp' || echo '$(srcdir)/'`tron/gStuff.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gStuff.Tpo $(DEPDIR)/libtron_a-gStuff.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gStuff.cpp' object='libtron_a-gStuff.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gStuff.o `test -f 'tron/gStuff.cpp' || echo '$(srcdir)/'`tron/gStuff.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gStuff.o `test -f 'tron/gStuff.cpp' || echo '$(srcdir)/'`tron/gStuff.cpp
 
 libtron_a-gStuff.obj: tron/gStuff.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gStuff.obj -MD -MP -MF $(DEPDIR)/libtron_a-gStuff.Tpo -c -o libtron_a-gStuff.obj `if test -f 'tron/gStuff.cpp'; then $(CYGPATH_W) 'tron/gStuff.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gStuff.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gStuff.Tpo $(DEPDIR)/libtron_a-gStuff.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gStuff.cpp' object='libtron_a-gStuff.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gStuff.obj -MD -MP -MF $(DEPDIR)/libtron_a-gStuff.Tpo -c -o libtron_a-gStuff.obj `if test -f 'tron/gStuff.cpp'; then $(CYGPATH_W) 'tron/gStuff.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gStuff.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gStuff.Tpo $(DEPDIR)/libtron_a-gStuff.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gStuff.cpp' object='libtron_a-gStuff.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gStuff.obj `if test -f 'tron/gStuff.cpp'; then $(CYGPATH_W) 'tron/gStuff.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gStuff.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gStuff.obj `if test -f 'tron/gStuff.cpp'; then $(CYGPATH_W) 'tron/gStuff.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gStuff.cpp'; fi`
 
 libtron_a-gTeam.o: tron/gTeam.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gTeam.o -MD -MP -MF $(DEPDIR)/libtron_a-gTeam.Tpo -c -o libtron_a-gTeam.o `test -f 'tron/gTeam.cpp' || echo '$(srcdir)/'`tron/gTeam.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gTeam.Tpo $(DEPDIR)/libtron_a-gTeam.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gTeam.cpp' object='libtron_a-gTeam.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gTeam.o -MD -MP -MF $(DEPDIR)/libtron_a-gTeam.Tpo -c -o libtron_a-gTeam.o `test -f 'tron/gTeam.cpp' || echo '$(srcdir)/'`tron/gTeam.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gTeam.Tpo $(DEPDIR)/libtron_a-gTeam.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gTeam.cpp' object='libtron_a-gTeam.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gTeam.o `test -f 'tron/gTeam.cpp' || echo '$(srcdir)/'`tron/gTeam.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gTeam.o `test -f 'tron/gTeam.cpp' || echo '$(srcdir)/'`tron/gTeam.cpp
 
 libtron_a-gTeam.obj: tron/gTeam.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gTeam.obj -MD -MP -MF $(DEPDIR)/libtron_a-gTeam.Tpo -c -o libtron_a-gTeam.obj `if test -f 'tron/gTeam.cpp'; then $(CYGPATH_W) 'tron/gTeam.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gTeam.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gTeam.Tpo $(DEPDIR)/libtron_a-gTeam.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gTeam.cpp' object='libtron_a-gTeam.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gTeam.obj -MD -MP -MF $(DEPDIR)/libtron_a-gTeam.Tpo -c -o libtron_a-gTeam.obj `if test -f 'tron/gTeam.cpp'; then $(CYGPATH_W) 'tron/gTeam.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gTeam.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gTeam.Tpo $(DEPDIR)/libtron_a-gTeam.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gTeam.cpp' object='libtron_a-gTeam.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gTeam.obj `if test -f 'tron/gTeam.cpp'; then $(CYGPATH_W) 'tron/gTeam.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gTeam.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gTeam.obj `if test -f 'tron/gTeam.cpp'; then $(CYGPATH_W) 'tron/gTeam.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gTeam.cpp'; fi`
 
 libtron_a-gWall.o: tron/gWall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gWall.o -MD -MP -MF $(DEPDIR)/libtron_a-gWall.Tpo -c -o libtron_a-gWall.o `test -f 'tron/gWall.cpp' || echo '$(srcdir)/'`tron/gWall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gWall.Tpo $(DEPDIR)/libtron_a-gWall.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gWall.cpp' object='libtron_a-gWall.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gWall.o -MD -MP -MF $(DEPDIR)/libtron_a-gWall.Tpo -c -o libtron_a-gWall.o `test -f 'tron/gWall.cpp' || echo '$(srcdir)/'`tron/gWall.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gWall.Tpo $(DEPDIR)/libtron_a-gWall.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gWall.cpp' object='libtron_a-gWall.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gWall.o `test -f 'tron/gWall.cpp' || echo '$(srcdir)/'`tron/gWall.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gWall.o `test -f 'tron/gWall.cpp' || echo '$(srcdir)/'`tron/gWall.cpp
 
 libtron_a-gWall.obj: tron/gWall.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gWall.obj -MD -MP -MF $(DEPDIR)/libtron_a-gWall.Tpo -c -o libtron_a-gWall.obj `if test -f 'tron/gWall.cpp'; then $(CYGPATH_W) 'tron/gWall.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gWall.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gWall.Tpo $(DEPDIR)/libtron_a-gWall.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gWall.cpp' object='libtron_a-gWall.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gWall.obj -MD -MP -MF $(DEPDIR)/libtron_a-gWall.Tpo -c -o libtron_a-gWall.obj `if test -f 'tron/gWall.cpp'; then $(CYGPATH_W) 'tron/gWall.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gWall.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gWall.Tpo $(DEPDIR)/libtron_a-gWall.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gWall.cpp' object='libtron_a-gWall.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gWall.obj `if test -f 'tron/gWall.cpp'; then $(CYGPATH_W) 'tron/gWall.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gWall.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gWall.obj `if test -f 'tron/gWall.cpp'; then $(CYGPATH_W) 'tron/gWall.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gWall.cpp'; fi`
 
 libtron_a-gWinZone.o: tron/gWinZone.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gWinZone.o -MD -MP -MF $(DEPDIR)/libtron_a-gWinZone.Tpo -c -o libtron_a-gWinZone.o `test -f 'tron/gWinZone.cpp' || echo '$(srcdir)/'`tron/gWinZone.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gWinZone.Tpo $(DEPDIR)/libtron_a-gWinZone.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gWinZone.cpp' object='libtron_a-gWinZone.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gWinZone.o -MD -MP -MF $(DEPDIR)/libtron_a-gWinZone.Tpo -c -o libtron_a-gWinZone.o `test -f 'tron/gWinZone.cpp' || echo '$(srcdir)/'`tron/gWinZone.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gWinZone.Tpo $(DEPDIR)/libtron_a-gWinZone.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gWinZone.cpp' object='libtron_a-gWinZone.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gWinZone.o `test -f 'tron/gWinZone.cpp' || echo '$(srcdir)/'`tron/gWinZone.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gWinZone.o `test -f 'tron/gWinZone.cpp' || echo '$(srcdir)/'`tron/gWinZone.cpp
 
 libtron_a-gWinZone.obj: tron/gWinZone.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gWinZone.obj -MD -MP -MF $(DEPDIR)/libtron_a-gWinZone.Tpo -c -o libtron_a-gWinZone.obj `if test -f 'tron/gWinZone.cpp'; then $(CYGPATH_W) 'tron/gWinZone.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gWinZone.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gWinZone.Tpo $(DEPDIR)/libtron_a-gWinZone.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gWinZone.cpp' object='libtron_a-gWinZone.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gWinZone.obj -MD -MP -MF $(DEPDIR)/libtron_a-gWinZone.Tpo -c -o libtron_a-gWinZone.obj `if test -f 'tron/gWinZone.cpp'; then $(CYGPATH_W) 'tron/gWinZone.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gWinZone.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gWinZone.Tpo $(DEPDIR)/libtron_a-gWinZone.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gWinZone.cpp' object='libtron_a-gWinZone.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gWinZone.obj `if test -f 'tron/gWinZone.cpp'; then $(CYGPATH_W) 'tron/gWinZone.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gWinZone.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gWinZone.obj `if test -f 'tron/gWinZone.cpp'; then $(CYGPATH_W) 'tron/gWinZone.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gWinZone.cpp'; fi`
 
 libtron_a-gFriends.o: tron/gFriends.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gFriends.o -MD -MP -MF $(DEPDIR)/libtron_a-gFriends.Tpo -c -o libtron_a-gFriends.o `test -f 'tron/gFriends.cpp' || echo '$(srcdir)/'`tron/gFriends.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gFriends.Tpo $(DEPDIR)/libtron_a-gFriends.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gFriends.cpp' object='libtron_a-gFriends.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gFriends.o -MD -MP -MF $(DEPDIR)/libtron_a-gFriends.Tpo -c -o libtron_a-gFriends.o `test -f 'tron/gFriends.cpp' || echo '$(srcdir)/'`tron/gFriends.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gFriends.Tpo $(DEPDIR)/libtron_a-gFriends.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gFriends.cpp' object='libtron_a-gFriends.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gFriends.o `test -f 'tron/gFriends.cpp' || echo '$(srcdir)/'`tron/gFriends.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gFriends.o `test -f 'tron/gFriends.cpp' || echo '$(srcdir)/'`tron/gFriends.cpp
 
 libtron_a-gFriends.obj: tron/gFriends.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gFriends.obj -MD -MP -MF $(DEPDIR)/libtron_a-gFriends.Tpo -c -o libtron_a-gFriends.obj `if test -f 'tron/gFriends.cpp'; then $(CYGPATH_W) 'tron/gFriends.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gFriends.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gFriends.Tpo $(DEPDIR)/libtron_a-gFriends.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gFriends.cpp' object='libtron_a-gFriends.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gFriends.obj -MD -MP -MF $(DEPDIR)/libtron_a-gFriends.Tpo -c -o libtron_a-gFriends.obj `if test -f 'tron/gFriends.cpp'; then $(CYGPATH_W) 'tron/gFriends.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gFriends.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gFriends.Tpo $(DEPDIR)/libtron_a-gFriends.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gFriends.cpp' object='libtron_a-gFriends.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gFriends.obj `if test -f 'tron/gFriends.cpp'; then $(CYGPATH_W) 'tron/gFriends.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gFriends.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gFriends.obj `if test -f 'tron/gFriends.cpp'; then $(CYGPATH_W) 'tron/gFriends.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gFriends.cpp'; fi`
 
 libtron_a-gServerFavorites.o: tron/gServerFavorites.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gServerFavorites.o -MD -MP -MF $(DEPDIR)/libtron_a-gServerFavorites.Tpo -c -o libtron_a-gServerFavorites.o `test -f 'tron/gServerFavorites.cpp' || echo '$(srcdir)/'`tron/gServerFavorites.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gServerFavorites.Tpo $(DEPDIR)/libtron_a-gServerFavorites.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gServerFavorites.cpp' object='libtron_a-gServerFavorites.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gServerFavorites.o -MD -MP -MF $(DEPDIR)/libtron_a-gServerFavorites.Tpo -c -o libtron_a-gServerFavorites.o `test -f 'tron/gServerFavorites.cpp' || echo '$(srcdir)/'`tron/gServerFavorites.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gServerFavorites.Tpo $(DEPDIR)/libtron_a-gServerFavorites.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gServerFavorites.cpp' object='libtron_a-gServerFavorites.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gServerFavorites.o `test -f 'tron/gServerFavorites.cpp' || echo '$(srcdir)/'`tron/gServerFavorites.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gServerFavorites.o `test -f 'tron/gServerFavorites.cpp' || echo '$(srcdir)/'`tron/gServerFavorites.cpp
 
 libtron_a-gServerFavorites.obj: tron/gServerFavorites.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gServerFavorites.obj -MD -MP -MF $(DEPDIR)/libtron_a-gServerFavorites.Tpo -c -o libtron_a-gServerFavorites.obj `if test -f 'tron/gServerFavorites.cpp'; then $(CYGPATH_W) 'tron/gServerFavorites.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gServerFavorites.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libtron_a-gServerFavorites.Tpo $(DEPDIR)/libtron_a-gServerFavorites.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gServerFavorites.cpp' object='libtron_a-gServerFavorites.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -MT libtron_a-gServerFavorites.obj -MD -MP -MF $(DEPDIR)/libtron_a-gServerFavorites.Tpo -c -o libtron_a-gServerFavorites.obj `if test -f 'tron/gServerFavorites.cpp'; then $(CYGPATH_W) 'tron/gServerFavorites.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gServerFavorites.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libtron_a-gServerFavorites.Tpo $(DEPDIR)/libtron_a-gServerFavorites.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gServerFavorites.cpp' object='libtron_a-gServerFavorites.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gServerFavorites.obj `if test -f 'tron/gServerFavorites.cpp'; then $(CYGPATH_W) 'tron/gServerFavorites.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gServerFavorites.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtron_a_CXXFLAGS) $(CXXFLAGS) -c -o libtron_a-gServerFavorites.obj `if test -f 'tron/gServerFavorites.cpp'; then $(CYGPATH_W) 'tron/gServerFavorites.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gServerFavorites.cpp'; fi`
 
 libui_a-uInput.o: ui/uInput.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uInput.o -MD -MP -MF $(DEPDIR)/libui_a-uInput.Tpo -c -o libui_a-uInput.o `test -f 'ui/uInput.cpp' || echo '$(srcdir)/'`ui/uInput.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libui_a-uInput.Tpo $(DEPDIR)/libui_a-uInput.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='ui/uInput.cpp' object='libui_a-uInput.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uInput.o -MD -MP -MF $(DEPDIR)/libui_a-uInput.Tpo -c -o libui_a-uInput.o `test -f 'ui/uInput.cpp' || echo '$(srcdir)/'`ui/uInput.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libui_a-uInput.Tpo $(DEPDIR)/libui_a-uInput.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ui/uInput.cpp' object='libui_a-uInput.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uInput.o `test -f 'ui/uInput.cpp' || echo '$(srcdir)/'`ui/uInput.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uInput.o `test -f 'ui/uInput.cpp' || echo '$(srcdir)/'`ui/uInput.cpp
 
 libui_a-uInput.obj: ui/uInput.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uInput.obj -MD -MP -MF $(DEPDIR)/libui_a-uInput.Tpo -c -o libui_a-uInput.obj `if test -f 'ui/uInput.cpp'; then $(CYGPATH_W) 'ui/uInput.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uInput.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libui_a-uInput.Tpo $(DEPDIR)/libui_a-uInput.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='ui/uInput.cpp' object='libui_a-uInput.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uInput.obj -MD -MP -MF $(DEPDIR)/libui_a-uInput.Tpo -c -o libui_a-uInput.obj `if test -f 'ui/uInput.cpp'; then $(CYGPATH_W) 'ui/uInput.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uInput.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libui_a-uInput.Tpo $(DEPDIR)/libui_a-uInput.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ui/uInput.cpp' object='libui_a-uInput.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uInput.obj `if test -f 'ui/uInput.cpp'; then $(CYGPATH_W) 'ui/uInput.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uInput.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uInput.obj `if test -f 'ui/uInput.cpp'; then $(CYGPATH_W) 'ui/uInput.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uInput.cpp'; fi`
 
 libui_a-uInputQueue.o: ui/uInputQueue.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uInputQueue.o -MD -MP -MF $(DEPDIR)/libui_a-uInputQueue.Tpo -c -o libui_a-uInputQueue.o `test -f 'ui/uInputQueue.cpp' || echo '$(srcdir)/'`ui/uInputQueue.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libui_a-uInputQueue.Tpo $(DEPDIR)/libui_a-uInputQueue.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='ui/uInputQueue.cpp' object='libui_a-uInputQueue.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uInputQueue.o -MD -MP -MF $(DEPDIR)/libui_a-uInputQueue.Tpo -c -o libui_a-uInputQueue.o `test -f 'ui/uInputQueue.cpp' || echo '$(srcdir)/'`ui/uInputQueue.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libui_a-uInputQueue.Tpo $(DEPDIR)/libui_a-uInputQueue.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ui/uInputQueue.cpp' object='libui_a-uInputQueue.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uInputQueue.o `test -f 'ui/uInputQueue.cpp' || echo '$(srcdir)/'`ui/uInputQueue.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uInputQueue.o `test -f 'ui/uInputQueue.cpp' || echo '$(srcdir)/'`ui/uInputQueue.cpp
 
 libui_a-uInputQueue.obj: ui/uInputQueue.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uInputQueue.obj -MD -MP -MF $(DEPDIR)/libui_a-uInputQueue.Tpo -c -o libui_a-uInputQueue.obj `if test -f 'ui/uInputQueue.cpp'; then $(CYGPATH_W) 'ui/uInputQueue.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uInputQueue.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libui_a-uInputQueue.Tpo $(DEPDIR)/libui_a-uInputQueue.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='ui/uInputQueue.cpp' object='libui_a-uInputQueue.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uInputQueue.obj -MD -MP -MF $(DEPDIR)/libui_a-uInputQueue.Tpo -c -o libui_a-uInputQueue.obj `if test -f 'ui/uInputQueue.cpp'; then $(CYGPATH_W) 'ui/uInputQueue.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uInputQueue.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libui_a-uInputQueue.Tpo $(DEPDIR)/libui_a-uInputQueue.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ui/uInputQueue.cpp' object='libui_a-uInputQueue.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uInputQueue.obj `if test -f 'ui/uInputQueue.cpp'; then $(CYGPATH_W) 'ui/uInputQueue.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uInputQueue.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uInputQueue.obj `if test -f 'ui/uInputQueue.cpp'; then $(CYGPATH_W) 'ui/uInputQueue.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uInputQueue.cpp'; fi`
 
 libui_a-uMenu.o: ui/uMenu.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uMenu.o -MD -MP -MF $(DEPDIR)/libui_a-uMenu.Tpo -c -o libui_a-uMenu.o `test -f 'ui/uMenu.cpp' || echo '$(srcdir)/'`ui/uMenu.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libui_a-uMenu.Tpo $(DEPDIR)/libui_a-uMenu.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='ui/uMenu.cpp' object='libui_a-uMenu.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uMenu.o -MD -MP -MF $(DEPDIR)/libui_a-uMenu.Tpo -c -o libui_a-uMenu.o `test -f 'ui/uMenu.cpp' || echo '$(srcdir)/'`ui/uMenu.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libui_a-uMenu.Tpo $(DEPDIR)/libui_a-uMenu.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ui/uMenu.cpp' object='libui_a-uMenu.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uMenu.o `test -f 'ui/uMenu.cpp' || echo '$(srcdir)/'`ui/uMenu.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uMenu.o `test -f 'ui/uMenu.cpp' || echo '$(srcdir)/'`ui/uMenu.cpp
 
 libui_a-uMenu.obj: ui/uMenu.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uMenu.obj -MD -MP -MF $(DEPDIR)/libui_a-uMenu.Tpo -c -o libui_a-uMenu.obj `if test -f 'ui/uMenu.cpp'; then $(CYGPATH_W) 'ui/uMenu.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uMenu.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libui_a-uMenu.Tpo $(DEPDIR)/libui_a-uMenu.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='ui/uMenu.cpp' object='libui_a-uMenu.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -MT libui_a-uMenu.obj -MD -MP -MF $(DEPDIR)/libui_a-uMenu.Tpo -c -o libui_a-uMenu.obj `if test -f 'ui/uMenu.cpp'; then $(CYGPATH_W) 'ui/uMenu.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uMenu.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libui_a-uMenu.Tpo $(DEPDIR)/libui_a-uMenu.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ui/uMenu.cpp' object='libui_a-uMenu.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uMenu.obj `if test -f 'ui/uMenu.cpp'; then $(CYGPATH_W) 'ui/uMenu.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uMenu.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libui_a_CXXFLAGS) $(CXXFLAGS) -c -o libui_a-uMenu.obj `if test -f 'ui/uMenu.cpp'; then $(CYGPATH_W) 'ui/uMenu.cpp'; else $(CYGPATH_W) '$(srcdir)/ui/uMenu.cpp'; fi`
 
 armagetronad_main-gFloor.o: tron/gFloor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_CXXFLAGS) $(CXXFLAGS) -MT armagetronad_main-gFloor.o -MD -MP -MF $(DEPDIR)/armagetronad_main-gFloor.Tpo -c -o armagetronad_main-gFloor.o `test -f 'tron/gFloor.cpp' || echo '$(srcdir)/'`tron/gFloor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/armagetronad_main-gFloor.Tpo $(DEPDIR)/armagetronad_main-gFloor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gFloor.cpp' object='armagetronad_main-gFloor.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_CXXFLAGS) $(CXXFLAGS) -MT armagetronad_main-gFloor.o -MD -MP -MF $(DEPDIR)/armagetronad_main-gFloor.Tpo -c -o armagetronad_main-gFloor.o `test -f 'tron/gFloor.cpp' || echo '$(srcdir)/'`tron/gFloor.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/armagetronad_main-gFloor.Tpo $(DEPDIR)/armagetronad_main-gFloor.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gFloor.cpp' object='armagetronad_main-gFloor.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_CXXFLAGS) $(CXXFLAGS) -c -o armagetronad_main-gFloor.o `test -f 'tron/gFloor.cpp' || echo '$(srcdir)/'`tron/gFloor.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_CXXFLAGS) $(CXXFLAGS) -c -o armagetronad_main-gFloor.o `test -f 'tron/gFloor.cpp' || echo '$(srcdir)/'`tron/gFloor.cpp
 
 armagetronad_main-gFloor.obj: tron/gFloor.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_CXXFLAGS) $(CXXFLAGS) -MT armagetronad_main-gFloor.obj -MD -MP -MF $(DEPDIR)/armagetronad_main-gFloor.Tpo -c -o armagetronad_main-gFloor.obj `if test -f 'tron/gFloor.cpp'; then $(CYGPATH_W) 'tron/gFloor.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gFloor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/armagetronad_main-gFloor.Tpo $(DEPDIR)/armagetronad_main-gFloor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='tron/gFloor.cpp' object='armagetronad_main-gFloor.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_CXXFLAGS) $(CXXFLAGS) -MT armagetronad_main-gFloor.obj -MD -MP -MF $(DEPDIR)/armagetronad_main-gFloor.Tpo -c -o armagetronad_main-gFloor.obj `if test -f 'tron/gFloor.cpp'; then $(CYGPATH_W) 'tron/gFloor.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gFloor.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/armagetronad_main-gFloor.Tpo $(DEPDIR)/armagetronad_main-gFloor.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='tron/gFloor.cpp' object='armagetronad_main-gFloor.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_CXXFLAGS) $(CXXFLAGS) -c -o armagetronad_main-gFloor.obj `if test -f 'tron/gFloor.cpp'; then $(CYGPATH_W) 'tron/gFloor.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gFloor.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_CXXFLAGS) $(CXXFLAGS) -c -o armagetronad_main-gFloor.obj `if test -f 'tron/gFloor.cpp'; then $(CYGPATH_W) 'tron/gFloor.cpp'; else $(CYGPATH_W) '$(srcdir)/tron/gFloor.cpp'; fi`
 
 armagetronad_main_master-master.o: network/master.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_master_CXXFLAGS) $(CXXFLAGS) -MT armagetronad_main_master-master.o -MD -MP -MF $(DEPDIR)/armagetronad_main_master-master.Tpo -c -o armagetronad_main_master-master.o `test -f 'network/master.cpp' || echo '$(srcdir)/'`network/master.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/armagetronad_main_master-master.Tpo $(DEPDIR)/armagetronad_main_master-master.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/master.cpp' object='armagetronad_main_master-master.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_master_CXXFLAGS) $(CXXFLAGS) -MT armagetronad_main_master-master.o -MD -MP -MF $(DEPDIR)/armagetronad_main_master-master.Tpo -c -o armagetronad_main_master-master.o `test -f 'network/master.cpp' || echo '$(srcdir)/'`network/master.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/armagetronad_main_master-master.Tpo $(DEPDIR)/armagetronad_main_master-master.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/master.cpp' object='armagetronad_main_master-master.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_master_CXXFLAGS) $(CXXFLAGS) -c -o armagetronad_main_master-master.o `test -f 'network/master.cpp' || echo '$(srcdir)/'`network/master.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_master_CXXFLAGS) $(CXXFLAGS) -c -o armagetronad_main_master-master.o `test -f 'network/master.cpp' || echo '$(srcdir)/'`network/master.cpp
 
 armagetronad_main_master-master.obj: network/master.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_master_CXXFLAGS) $(CXXFLAGS) -MT armagetronad_main_master-master.obj -MD -MP -MF $(DEPDIR)/armagetronad_main_master-master.Tpo -c -o armagetronad_main_master-master.obj `if test -f 'network/master.cpp'; then $(CYGPATH_W) 'network/master.cpp'; else $(CYGPATH_W) '$(srcdir)/network/master.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/armagetronad_main_master-master.Tpo $(DEPDIR)/armagetronad_main_master-master.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='network/master.cpp' object='armagetronad_main_master-master.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_master_CXXFLAGS) $(CXXFLAGS) -MT armagetronad_main_master-master.obj -MD -MP -MF $(DEPDIR)/armagetronad_main_master-master.Tpo -c -o armagetronad_main_master-master.obj `if test -f 'network/master.cpp'; then $(CYGPATH_W) 'network/master.cpp'; else $(CYGPATH_W) '$(srcdir)/network/master.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/armagetronad_main_master-master.Tpo $(DEPDIR)/armagetronad_main_master-master.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='network/master.cpp' object='armagetronad_main_master-master.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_master_CXXFLAGS) $(CXXFLAGS) -c -o armagetronad_main_master-master.obj `if test -f 'network/master.cpp'; then $(CYGPATH_W) 'network/master.cpp'; else $(CYGPATH_W) '$(srcdir)/network/master.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(armagetronad_main_master_CXXFLAGS) $(CXXFLAGS) -c -o armagetronad_main_master-master.obj `if test -f 'network/master.cpp'; then $(CYGPATH_W) 'network/master.cpp'; else $(CYGPATH_W) '$(srcdir)/network/master.cpp'; fi`
 
 # This directory's subdirectories are mostly independent; you can cd
-# into them and run 'make' without going through this Makefile.
-# To change the values of 'make' variables: instead of editing Makefiles,
-# (1) if the variable is set in 'config.status', edit 'config.status'
-#     (which will cause the Makefiles to be regenerated when you run 'make');
-# (2) otherwise, pass the desired values on the 'make' command line.
-$(am__recursive_targets):
-	@fail=; \
-	if $(am__make_keepgoing); then \
-	  failcom='fail=yes'; \
-	else \
-	  failcom='exit 1'; \
-	fi; \
+# into them and run `make' without going through this Makefile.
+# To change the values of `make' variables: instead of editing Makefiles,
+# (1) if the variable is set in `config.status', edit `config.status'
+#     (which will cause the Makefiles to be regenerated when you run `make');
+# (2) otherwise, pass the desired values on the `make' command line.
+$(RECURSIVE_TARGETS):
+	@fail= failcom='exit 1'; \
+	for f in x $$MAKEFLAGS; do \
+	  case $$f in \
+	    *=* | --[!k]*);; \
+	    *k*) failcom='fail=yes';; \
+	  esac; \
+	done; \
 	dot_seen=no; \
 	target=`echo $@ | sed s/-recursive//`; \
-	case "$@" in \
-	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
-	  *) list='$(SUBDIRS)' ;; \
-	esac; \
-	for subdir in $$list; do \
+	list='$(SUBDIRS)'; for subdir in $$list; do \
 	  echo "Making $$target in $$subdir"; \
 	  if test "$$subdir" = "."; then \
 	    dot_seen=yes; \
@@ -2416,12 +2291,57 @@ $(am__recursive_targets):
 	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 	fi; test -z "$$fail"
 
-ID: $(am__tagged_files)
-	$(am__define_uniq_tagged_files); mkid -fID $$unique
-tags: tags-recursive
-TAGS: tags
+$(RECURSIVE_CLEAN_TARGETS):
+	@fail= failcom='exit 1'; \
+	for f in x $$MAKEFLAGS; do \
+	  case $$f in \
+	    *=* | --[!k]*);; \
+	    *k*) failcom='fail=yes';; \
+	  esac; \
+	done; \
+	dot_seen=no; \
+	case "$@" in \
+	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+	  *) list='$(SUBDIRS)' ;; \
+	esac; \
+	rev=''; for subdir in $$list; do \
+	  if test "$$subdir" = "."; then :; else \
+	    rev="$$subdir $$rev"; \
+	  fi; \
+	done; \
+	rev="$$rev ."; \
+	target=`echo $@ | sed s/-recursive//`; \
+	for subdir in $$rev; do \
+	  echo "Making $$target in $$subdir"; \
+	  if test "$$subdir" = "."; then \
+	    local_target="$$target-am"; \
+	  else \
+	    local_target="$$target"; \
+	  fi; \
+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+	  || eval $$failcom; \
+	done && test -z "$$fail"
+tags-recursive:
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+	done
+ctags-recursive:
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
+	done
 
-tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+	mkid -fID $$unique
+tags: TAGS
+
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
 	set x; \
 	here=`pwd`; \
 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
@@ -2437,7 +2357,12 @@ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
 	  fi; \
 	done; \
-	$(am__define_uniq_tagged_files); \
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 	shift; \
 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 	  test -n "$$unique" || unique=$$empty_fix; \
@@ -2449,11 +2374,15 @@ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 	      $$unique; \
 	  fi; \
 	fi
-ctags: ctags-recursive
-
-CTAGS: ctags
-ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
-	$(am__define_uniq_tagged_files); \
+ctags: CTAGS
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 	test -z "$(CTAGS_ARGS)$$unique" \
 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 	     $$unique
@@ -2462,21 +2391,6 @@ GTAGS:
 	here=`$(am__cd) $(top_builddir) && pwd` \
 	  && $(am__cd) $(top_srcdir) \
 	  && gtags -i $(GTAGS_ARGS) "$$here"
-cscopelist: cscopelist-recursive
-
-cscopelist-am: $(am__tagged_files)
-	list='$(am__tagged_files)'; \
-	case "$(srcdir)" in \
-	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
-	  *) sdir=$(subdir)/$(srcdir) ;; \
-	esac; \
-	for i in $$list; do \
-	  if test -f "$$i"; then \
-	    echo "$(subdir)/$$i"; \
-	  else \
-	    echo "$$sdir/$$i"; \
-	  fi; \
-	done >> $(top_builddir)/cscope.files
 
 distclean-tags:
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -2513,10 +2427,13 @@ distdir: $(DISTFILES)
 	done
 	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 	  if test "$$subdir" = .; then :; else \
-	    $(am__make_dryrun) \
-	      || test -d "$(distdir)/$$subdir" \
-	      || $(MKDIR_P) "$(distdir)/$$subdir" \
-	      || exit 1; \
+	    test -d "$(distdir)/$$subdir" \
+	    || $(MKDIR_P) "$(distdir)/$$subdir" \
+	    || exit 1; \
+	  fi; \
+	done
+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+	  if test "$$subdir" = .; then :; else \
 	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 	    $(am__relativize); \
 	    new_distdir=$$reldir; \
@@ -2557,15 +2474,10 @@ install-am: all-am
 
 installcheck: installcheck-recursive
 install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 mostlyclean-generic:
 
 clean-generic:
@@ -2647,14 +2559,15 @@ ps-am:
 
 uninstall-am: uninstall-gamesPROGRAMS
 
-.MAKE: $(am__recursive_targets) install-am install-strip
+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
+	install-am install-strip tags-recursive
 
-.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
-	check-am clean clean-gamesPROGRAMS clean-generic \
-	clean-noinstLIBRARIES cscopelist-am ctags ctags-am dist-hook \
-	distclean distclean-compile distclean-generic distclean-tags \
-	distdir dvi dvi-am html html-am info info-am install \
-	install-am install-data install-data-am install-dvi \
+.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
+	all all-am check check-am clean clean-gamesPROGRAMS \
+	clean-generic clean-noinstLIBRARIES ctags ctags-recursive \
+	dist-hook distclean distclean-compile distclean-generic \
+	distclean-tags distdir dvi dvi-am html html-am info info-am \
+	install install-am install-data install-data-am install-dvi \
 	install-dvi-am install-exec install-exec-am \
 	install-gamesPROGRAMS install-html install-html-am \
 	install-info install-info-am install-man install-pdf \
@@ -2662,7 +2575,8 @@ uninstall-am: uninstall-gamesPROGRAMS
 	installcheck installcheck-am installdirs installdirs-am \
 	maintainer-clean maintainer-clean-generic mostlyclean \
 	mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
-	tags tags-am uninstall uninstall-am uninstall-gamesPROGRAMS
+	tags tags-recursive uninstall uninstall-am \
+	uninstall-gamesPROGRAMS
 
 
 # include autogenerated makefile that generates 
diff --git a/src/config_ide.h b/src/config_ide.h
index 0479480..73690f2 100644
--- a/src/config_ide.h
+++ b/src/config_ide.h
@@ -99,4 +99,4 @@
 #define HAVE_WMEMSET 1
 
 // define version
-#define VERSION "0.2.8.3.3"
+#define VERSION "0.2.8.3.4"
diff --git a/src/doc/Makefile.in b/src/doc/Makefile.in
index a2e5d4e..34cc5ff 100644
--- a/src/doc/Makefile.in
+++ b/src/doc/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
-
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -17,51 +18,6 @@
 # include $(top_srcdir)/Makefile.paths
 
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -81,8 +37,8 @@ POST_UNINSTALL = :
 build_triplet = @build@
 host_triplet = @host@
 target_triplet = @target@
-DIST_COMMON = $(srcdir)/HtmlMakefile $(srcdir)/Makefile.in \
-	$(srcdir)/Makefile.am $(srcdir)/Doxyfile.in \
+DIST_COMMON = $(srcdir)/Doxyfile.in $(srcdir)/HtmlMakefile \
+	$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
 	$(srcdir)/html.m4.in
 subdir = src/doc
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
@@ -94,33 +50,15 @@ mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = $(top_builddir)/config.h
 CONFIG_CLEAN_FILES = Doxyfile html.m4
 CONFIG_CLEAN_VPATH_FILES =
-AM_V_P = $(am__v_P_ at AM_V@)
-am__v_P_ = $(am__v_P_ at AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
 SOURCES =
 DIST_SOURCES =
-RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
-	ctags-recursive dvi-recursive html-recursive info-recursive \
-	install-data-recursive install-dvi-recursive \
-	install-exec-recursive install-html-recursive \
-	install-info-recursive install-pdf-recursive \
-	install-ps-recursive install-recursive installcheck-recursive \
-	installdirs-recursive pdf-recursive ps-recursive \
-	tags-recursive uninstall-recursive
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
+	html-recursive info-recursive install-data-recursive \
+	install-dvi-recursive install-exec-recursive \
+	install-html-recursive install-info-recursive \
+	install-pdf-recursive install-ps-recursive install-recursive \
+	installcheck-recursive installdirs-recursive pdf-recursive \
+	ps-recursive uninstall-recursive
 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 am__vpath_adj = case $$p in \
     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
@@ -142,39 +80,13 @@ am__nobase_list = $(am__nobase_strip_setup); \
 am__base_list = \
   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
-am__uninstall_files_from_dir = { \
-  test -z "$$files" \
-    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
-    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
-         $(am__cd) "$$dir" && rm -f $$files; }; \
-  }
 am__installdirs = "$(DESTDIR)$(htmldir)"
 DATA = $(html_DATA)
 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
   distclean-recursive maintainer-clean-recursive
-am__recursive_targets = \
-  $(RECURSIVE_TARGETS) \
-  $(RECURSIVE_CLEAN_TARGETS) \
-  $(am__extra_recursive_targets)
-AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
+AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
+	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 	distdir
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
-# Read a list of newline-separated strings from the standard input,
-# and print each of them once, without duplicates.  Input order is
-# *not* preserved.
-am__uniquify_input = $(AWK) '\
-  BEGIN { nonempty = 0; } \
-  { items[$$0] = 1; nonempty = 1; } \
-  END { if (nonempty) { for (i in items) print i; }; } \
-'
-# Make sure the list of sources is unique.  This is necessary because,
-# e.g., the same source file might be shared among _SOURCES variables
-# for different programs/libraries.
-am__define_uniq_tagged_files = \
-  list='$(am__tagged_files)'; \
-  unique=`for i in $$list; do \
-    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-  done | $(am__uniquify_input)`
 ETAGS = etags
 CTAGS = ctags
 DIST_SUBDIRS = $(SUBDIRS)
@@ -206,7 +118,6 @@ am__relativize = \
   reldir="$$dir2"
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APBUILD_CC = @APBUILD_CC@
 APBUILD_CXX1 = @APBUILD_CXX1@
 APBUILD_CXX2 = @APBUILD_CXX2@
@@ -420,7 +331,6 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 	esac;
-$(srcdir)/HtmlMakefile:
 
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -436,11 +346,8 @@ html.m4: $(top_builddir)/config.status $(srcdir)/html.m4.in
 	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
 install-htmlDATA: $(html_DATA)
 	@$(NORMAL_INSTALL)
+	test -z "$(htmldir)" || $(MKDIR_P) "$(DESTDIR)$(htmldir)"
 	@list='$(html_DATA)'; test -n "$(htmldir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
-	fi; \
 	for p in $$list; do \
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 	  echo "$$d$$p"; \
@@ -454,28 +361,27 @@ uninstall-htmlDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(html_DATA)'; test -n "$(htmldir)" || list=; \
 	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-	dir='$(DESTDIR)$(htmldir)'; $(am__uninstall_files_from_dir)
+	test -n "$$files" || exit 0; \
+	echo " ( cd '$(DESTDIR)$(htmldir)' && rm -f" $$files ")"; \
+	cd "$(DESTDIR)$(htmldir)" && rm -f $$files
 
 # This directory's subdirectories are mostly independent; you can cd
-# into them and run 'make' without going through this Makefile.
-# To change the values of 'make' variables: instead of editing Makefiles,
-# (1) if the variable is set in 'config.status', edit 'config.status'
-#     (which will cause the Makefiles to be regenerated when you run 'make');
-# (2) otherwise, pass the desired values on the 'make' command line.
-$(am__recursive_targets):
-	@fail=; \
-	if $(am__make_keepgoing); then \
-	  failcom='fail=yes'; \
-	else \
-	  failcom='exit 1'; \
-	fi; \
+# into them and run `make' without going through this Makefile.
+# To change the values of `make' variables: instead of editing Makefiles,
+# (1) if the variable is set in `config.status', edit `config.status'
+#     (which will cause the Makefiles to be regenerated when you run `make');
+# (2) otherwise, pass the desired values on the `make' command line.
+$(RECURSIVE_TARGETS):
+	@fail= failcom='exit 1'; \
+	for f in x $$MAKEFLAGS; do \
+	  case $$f in \
+	    *=* | --[!k]*);; \
+	    *k*) failcom='fail=yes';; \
+	  esac; \
+	done; \
 	dot_seen=no; \
 	target=`echo $@ | sed s/-recursive//`; \
-	case "$@" in \
-	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
-	  *) list='$(SUBDIRS)' ;; \
-	esac; \
-	for subdir in $$list; do \
+	list='$(SUBDIRS)'; for subdir in $$list; do \
 	  echo "Making $$target in $$subdir"; \
 	  if test "$$subdir" = "."; then \
 	    dot_seen=yes; \
@@ -490,12 +396,57 @@ $(am__recursive_targets):
 	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 	fi; test -z "$$fail"
 
-ID: $(am__tagged_files)
-	$(am__define_uniq_tagged_files); mkid -fID $$unique
-tags: tags-recursive
-TAGS: tags
+$(RECURSIVE_CLEAN_TARGETS):
+	@fail= failcom='exit 1'; \
+	for f in x $$MAKEFLAGS; do \
+	  case $$f in \
+	    *=* | --[!k]*);; \
+	    *k*) failcom='fail=yes';; \
+	  esac; \
+	done; \
+	dot_seen=no; \
+	case "$@" in \
+	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+	  *) list='$(SUBDIRS)' ;; \
+	esac; \
+	rev=''; for subdir in $$list; do \
+	  if test "$$subdir" = "."; then :; else \
+	    rev="$$subdir $$rev"; \
+	  fi; \
+	done; \
+	rev="$$rev ."; \
+	target=`echo $@ | sed s/-recursive//`; \
+	for subdir in $$rev; do \
+	  echo "Making $$target in $$subdir"; \
+	  if test "$$subdir" = "."; then \
+	    local_target="$$target-am"; \
+	  else \
+	    local_target="$$target"; \
+	  fi; \
+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+	  || eval $$failcom; \
+	done && test -z "$$fail"
+tags-recursive:
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+	done
+ctags-recursive:
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
+	done
 
-tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+	mkid -fID $$unique
+tags: TAGS
+
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
 	set x; \
 	here=`pwd`; \
 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
@@ -511,7 +462,12 @@ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
 	  fi; \
 	done; \
-	$(am__define_uniq_tagged_files); \
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 	shift; \
 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 	  test -n "$$unique" || unique=$$empty_fix; \
@@ -523,11 +479,15 @@ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 	      $$unique; \
 	  fi; \
 	fi
-ctags: ctags-recursive
-
-CTAGS: ctags
-ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
-	$(am__define_uniq_tagged_files); \
+ctags: CTAGS
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 	test -z "$(CTAGS_ARGS)$$unique" \
 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 	     $$unique
@@ -536,21 +496,6 @@ GTAGS:
 	here=`$(am__cd) $(top_builddir) && pwd` \
 	  && $(am__cd) $(top_srcdir) \
 	  && gtags -i $(GTAGS_ARGS) "$$here"
-cscopelist: cscopelist-recursive
-
-cscopelist-am: $(am__tagged_files)
-	list='$(am__tagged_files)'; \
-	case "$(srcdir)" in \
-	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
-	  *) sdir=$(subdir)/$(srcdir) ;; \
-	esac; \
-	for i in $$list; do \
-	  if test -f "$$i"; then \
-	    echo "$(subdir)/$$i"; \
-	  else \
-	    echo "$$sdir/$$i"; \
-	  fi; \
-	done >> $(top_builddir)/cscope.files
 
 distclean-tags:
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -587,10 +532,13 @@ distdir: $(DISTFILES)
 	done
 	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 	  if test "$$subdir" = .; then :; else \
-	    $(am__make_dryrun) \
-	      || test -d "$(distdir)/$$subdir" \
-	      || $(MKDIR_P) "$(distdir)/$$subdir" \
-	      || exit 1; \
+	    test -d "$(distdir)/$$subdir" \
+	    || $(MKDIR_P) "$(distdir)/$$subdir" \
+	    || exit 1; \
+	  fi; \
+	done
+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+	  if test "$$subdir" = .; then :; else \
 	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 	    $(am__relativize); \
 	    new_distdir=$$reldir; \
@@ -632,15 +580,10 @@ install-am: all-am
 
 installcheck: installcheck-recursive
 install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 mostlyclean-generic:
 
 clean-generic:
@@ -719,21 +662,22 @@ ps-am:
 
 uninstall-am: uninstall-htmlDATA
 
-.MAKE: $(am__recursive_targets) install-am install-strip
-
-.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \
-	check check-am clean clean-generic clean-local cscopelist-am \
-	ctags ctags-am dist-hook distclean distclean-generic \
-	distclean-local distclean-tags distdir dvi dvi-am html html-am \
-	info info-am install install-am install-data install-data-am \
-	install-dvi install-dvi-am install-exec install-exec-am \
-	install-html install-html-am install-htmlDATA install-info \
-	install-info-am install-man install-pdf install-pdf-am \
-	install-ps install-ps-am install-strip installcheck \
-	installcheck-am installdirs installdirs-am maintainer-clean \
-	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
-	pdf-am ps ps-am tags tags-am uninstall uninstall-am \
-	uninstall-htmlDATA
+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
+	install-am install-strip tags-recursive
+
+.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
+	all all-am all-local check check-am clean clean-generic \
+	clean-local ctags ctags-recursive dist-hook distclean \
+	distclean-generic distclean-local distclean-tags distdir dvi \
+	dvi-am html html-am info info-am install install-am \
+	install-data install-data-am install-dvi install-dvi-am \
+	install-exec install-exec-am install-html install-html-am \
+	install-htmlDATA install-info install-info-am install-man \
+	install-pdf install-pdf-am install-ps install-ps-am \
+	install-strip installcheck installcheck-am installdirs \
+	installdirs-am maintainer-clean maintainer-clean-generic \
+	mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \
+	tags-recursive uninstall uninstall-am uninstall-htmlDATA
 
 
 $(htmlm4): $(top_builddir)/config.status Makefile $(top_srcdir)/src/doc/html.m4.in
diff --git a/src/doc/bugs.html b/src/doc/bugs.html
index 16e81c8..8f44d0c 100644
--- a/src/doc/bugs.html
+++ b/src/doc/bugs.html
@@ -62,7 +62,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:53+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -310,7 +310,7 @@ invisible.</li>
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/doc/changelog.html b/src/doc/changelog.html
index caf015d..9b2c37b 100644
--- a/src/doc/changelog.html
+++ b/src/doc/changelog.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:53+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -447,7 +447,7 @@ the game if not in a network game (Seven3)</td></tr>
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/doc/commands.html b/src/doc/commands.html
index e57525b..ec4af9e 100644
--- a/src/doc/commands.html
+++ b/src/doc/commands.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:53+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -899,7 +899,7 @@ ZONE_SEG_LENGTH              The rendered fraction of every segment. Default is
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/doc/compile.html b/src/doc/compile.html
index e91f662..be4d570 100644
--- a/src/doc/compile.html
+++ b/src/doc/compile.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:53+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -200,7 +200,7 @@ additional links to the executables for the user's convenience.
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/doc/config.html b/src/doc/config.html
index 9aa8316..1aac394 100644
--- a/src/doc/config.html
+++ b/src/doc/config.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:53+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -660,7 +660,7 @@ path as well.
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/doc/faq.html b/src/doc/faq.html
index 06ab4e6..a646cc0 100644
--- a/src/doc/faq.html
+++ b/src/doc/faq.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:53+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -397,7 +397,7 @@ look for help <a href="http://forums.armagetronad.net/viewtopic.php?t=1360" targ
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/doc/index.html b/src/doc/index.html
index 123f814..9ae9db7 100644
--- a/src/doc/index.html
+++ b/src/doc/index.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:53+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -344,7 +344,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/doc/install_linux.html b/src/doc/install_linux.html
index f9d2e87..e644257 100644
--- a/src/doc/install_linux.html
+++ b/src/doc/install_linux.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:54+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -188,7 +188,7 @@ If <strong>gmake</strong> is not found on your system, try
 <strong>make</strong>; however, only GNU make is supported.
 To build the dedicated server, add the option <strong>--disable-glout</strong> to the configure script.
 To change the installation path, use the option <strong>--prefix=new_path</strong>.
-Type <pre>uninstall-armagetronad(-dedicated)-0.2.8.3.3</pre> to uninstall.
+Type <pre>uninstall-armagetronad(-dedicated)-0.2.8.3.4</pre> to uninstall.
 </p>
 
 <p align=justify>
@@ -236,7 +236,7 @@ or, if you add <strong>/home/username/usr/bin</strong> to your executable search
 
 <a name=multiple><h3 align=left>Multiple versions</h3></a>
 If you give the additional option <strong>--enable-multiver</strong> to <strong>configure</strong>, all installation
-directories and executables will get the suffix <strong>0.2.8.3.3</strong>. Symbolic links will be created to
+directories and executables will get the suffix <strong>0.2.8.3.4</strong>. Symbolic links will be created to
 your convenience. This allows to install multiple versions in parallel, where <strong>armagetronad(-dedicated)</strong> will
 always start the last installed version. 
 
@@ -281,7 +281,7 @@ as a normal user to play.
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/doc/install_macosx.html b/src/doc/install_macosx.html
index 1c44f50..a4ee60b 100644
--- a/src/doc/install_macosx.html
+++ b/src/doc/install_macosx.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:54+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
diff --git a/src/doc/install_windows.html b/src/doc/install_windows.html
index d82117f..c77634d 100644
--- a/src/doc/install_windows.html
+++ b/src/doc/install_windows.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:54+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -294,7 +294,7 @@ You need to be in 16 bit colour depth mode to run Armagetron Advanced on some ca
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/doc/net/Makefile.in b/src/doc/net/Makefile.in
index 5cc08c4..c1132a8 100644
--- a/src/doc/net/Makefile.in
+++ b/src/doc/net/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
-
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -17,51 +18,6 @@
 # include $(top_srcdir)/Makefile.paths
 
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -81,8 +37,8 @@ POST_UNINSTALL = :
 build_triplet = @build@
 host_triplet = @host@
 target_triplet = @target@
-DIST_COMMON = $(srcdir)/../HtmlMakefile $(srcdir)/Makefile.in \
-	$(srcdir)/Makefile.am
+DIST_COMMON = $(srcdir)/../HtmlMakefile $(srcdir)/Makefile.am \
+	$(srcdir)/Makefile.in
 subdir = src/doc/net
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
@@ -93,25 +49,8 @@ mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = $(top_builddir)/config.h
 CONFIG_CLEAN_FILES =
 CONFIG_CLEAN_VPATH_FILES =
-AM_V_P = $(am__v_P_ at AM_V@)
-am__v_P_ = $(am__v_P_ at AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
 SOURCES =
 DIST_SOURCES =
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 am__vpath_adj = case $$p in \
     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
@@ -133,19 +72,11 @@ am__nobase_list = $(am__nobase_strip_setup); \
 am__base_list = \
   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
-am__uninstall_files_from_dir = { \
-  test -z "$$files" \
-    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
-    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
-         $(am__cd) "$$dir" && rm -f $$files; }; \
-  }
 am__installdirs = "$(DESTDIR)$(htmldir)"
 DATA = $(html_DATA)
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APBUILD_CC = @APBUILD_CC@
 APBUILD_CXX1 = @APBUILD_CXX1@
 APBUILD_CXX2 = @APBUILD_CXX2@
@@ -356,7 +287,6 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 	esac;
-$(srcdir)/../HtmlMakefile:
 
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -368,11 +298,8 @@ $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 $(am__aclocal_m4_deps):
 install-htmlDATA: $(html_DATA)
 	@$(NORMAL_INSTALL)
+	test -z "$(htmldir)" || $(MKDIR_P) "$(DESTDIR)$(htmldir)"
 	@list='$(html_DATA)'; test -n "$(htmldir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
-	fi; \
 	for p in $$list; do \
 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 	  echo "$$d$$p"; \
@@ -386,12 +313,14 @@ uninstall-htmlDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(html_DATA)'; test -n "$(htmldir)" || list=; \
 	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-	dir='$(DESTDIR)$(htmldir)'; $(am__uninstall_files_from_dir)
-tags TAGS:
-
-ctags CTAGS:
+	test -n "$$files" || exit 0; \
+	echo " ( cd '$(DESTDIR)$(htmldir)' && rm -f" $$files ")"; \
+	cd "$(DESTDIR)$(htmldir)" && rm -f $$files
+tags: TAGS
+TAGS:
 
-cscope cscopelist:
+ctags: CTAGS
+CTAGS:
 
 
 distdir: $(DISTFILES)
@@ -444,15 +373,10 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 mostlyclean-generic:
 
 clean-generic:
@@ -533,16 +457,15 @@ uninstall-am: uninstall-htmlDATA
 .MAKE: install-am install-strip
 
 .PHONY: all all-am check check-am clean clean-generic clean-local \
-	cscopelist-am ctags-am dist-hook distclean distclean-generic \
-	distdir dvi dvi-am html html-am info info-am install \
-	install-am install-data install-data-am install-dvi \
-	install-dvi-am install-exec install-exec-am install-html \
-	install-html-am install-htmlDATA install-info install-info-am \
-	install-man install-pdf install-pdf-am install-ps \
-	install-ps-am install-strip installcheck installcheck-am \
-	installdirs maintainer-clean maintainer-clean-generic \
-	mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags-am \
-	uninstall uninstall-am uninstall-htmlDATA
+	dist-hook distclean distclean-generic distdir dvi dvi-am html \
+	html-am info info-am install install-am install-data \
+	install-data-am install-dvi install-dvi-am install-exec \
+	install-exec-am install-html install-html-am install-htmlDATA \
+	install-info install-info-am install-man install-pdf \
+	install-pdf-am install-ps install-ps-am install-strip \
+	installcheck installcheck-am installdirs maintainer-clean \
+	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
+	pdf-am ps ps-am uninstall uninstall-am uninstall-htmlDATA
 
 
 $(htmlm4): $(top_builddir)/config.status Makefile $(top_srcdir)/src/doc/html.m4.in
diff --git a/src/doc/net/index.html b/src/doc/net/index.html
index dc1caec..c423b6e 100644
--- a/src/doc/net/index.html
+++ b/src/doc/net/index.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:47+01:00">
+   <meta name="date" content="2016-11-27T11:14:12+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron: network code documentation</title>
@@ -178,7 +178,7 @@ are displayed on the screen or written to standard output.
 Manuel Moos(<b> </b> <script language="JavaScript"> var b = "sf.net "; var c = "z-man"; var a="users"; document.write(c); document.write("@") ; document.write(a) ; document.write(".") ; document.write(b); </script> ).
 
 <p align=center>
-Last modification: Thu Feb 26 20:37:47 CET 2015
+Last modification: Sun Nov 27 11:14:12 CET 2016
 
 </p>
 
diff --git a/src/doc/net/lower.html b/src/doc/net/lower.html
index 0932aba..f157b89 100644
--- a/src/doc/net/lower.html
+++ b/src/doc/net/lower.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:47+01:00">
+   <meta name="date" content="2016-11-27T11:14:12+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron: network code documentation</title>
@@ -208,7 +208,7 @@ computer (ignoring the port number). If they are, 0 is returned, -1 if not.</p><
 Manuel Moos(<b> </b> <script language="JavaScript"> var b = "sf.net "; var c = "z-man"; var a="users"; document.write(c); document.write("@") ; document.write(a) ; document.write(".") ; document.write(b); </script> ).
 
 <p align=center>
-Last modification: Thu Feb 26 20:37:47 CET 2015
+Last modification: Sun Nov 27 11:14:12 CET 2016
 
 </p>
 
diff --git a/src/doc/net/middle.html b/src/doc/net/middle.html
index 7e1bb29..66c0154 100644
--- a/src/doc/net/middle.html
+++ b/src/doc/net/middle.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:47+01:00">
+   <meta name="date" content="2016-11-27T11:14:12+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron: network code documentation</title>
@@ -329,7 +329,7 @@ be enough.
 Manuel Moos(<b> </b> <script language="JavaScript"> var b = "sf.net "; var c = "z-man"; var a="users"; document.write(c); document.write("@") ; document.write(a) ; document.write(".") ; document.write(b); </script> ).
 
 <p align=center>
-Last modification: Thu Feb 26 20:37:47 CET 2015
+Last modification: Sun Nov 27 11:14:12 CET 2016
 
 </p>
 
diff --git a/src/doc/net/upper.html b/src/doc/net/upper.html
index 282bcc1..3a771bd 100644
--- a/src/doc/net/upper.html
+++ b/src/doc/net/upper.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:47+01:00">
+   <meta name="date" content="2016-11-27T11:14:12+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron: network code documentation</title>
@@ -523,7 +523,7 @@ every time you delete the pointer or let it point elsewhere.
 Manuel Moos(<b> </b> <script language="JavaScript"> var b = "sf.net "; var c = "z-man"; var a="users"; document.write(c); document.write("@") ; document.write(a) ; document.write(".") ; document.write(b); </script> ).
 
 <p align=center>
-Last modification: Thu Feb 26 20:37:47 CET 2015
+Last modification: Sun Nov 27 11:14:12 CET 2016
 
 </p>
 
diff --git a/src/doc/network.html b/src/doc/network.html
index 2f3147f..6ded347 100644
--- a/src/doc/network.html
+++ b/src/doc/network.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:54+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -579,7 +579,7 @@ read the <a href=net/index.html>network subsystem documentation</a>.
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/doc/readme_macosx.html b/src/doc/readme_macosx.html
index 4689126..f0542bd 100644
--- a/src/doc/readme_macosx.html
+++ b/src/doc/readme_macosx.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:55+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
diff --git a/src/doc/todo.html b/src/doc/todo.html
index f737a32..192c4e8 100644
--- a/src/doc/todo.html
+++ b/src/doc/todo.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:48+01:00">
+   <meta name="date" content="2016-11-27T11:14:55+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -146,7 +146,7 @@ Accepted feature requests sceduled for following releases are on the
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/doc/versions.html b/src/doc/versions.html
index 9a5cfaa..89a1de4 100644
--- a/src/doc/versions.html
+++ b/src/doc/versions.html
@@ -61,7 +61,7 @@
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="date" content="2015-02-26T20:37:49+01:00">
+   <meta name="date" content="2016-11-27T11:14:55+01:00">
 
    <meta name="author" content="Manuel Moos">
    <title>Armagetron Advanced: Documentation</title>
@@ -172,7 +172,7 @@ Note: Some protocol versions were only available in CVS, so not every protocol v
 </p>
 
 <p align=center>
-Last modification: Jan 29 2015
+Last modification: Sep 11 2011
 </p>
 <p align=center><!--#spaceportsbanner--></p>
 
diff --git a/src/engine/eCamera.cpp b/src/engine/eCamera.cpp
index 4b4b3d5..9fc39f3 100644
--- a/src/engine/eCamera.cpp
+++ b/src/engine/eCamera.cpp
@@ -2098,8 +2098,7 @@ void eCamera::s_Timestep(eGrid *grid, REAL time){
 #ifndef DEDICATED
 
 void eCamera::SoundMix(Uint8 *dest,unsigned int len){
-    if (!this)
-        return;
+    tASSERT_THIS();
 
     if (id>=0){
         eGameObject *c=Center();
@@ -2114,6 +2113,9 @@ void eCamera::SoundMix(Uint8 *dest,unsigned int len){
 
 
 void eCamera::SoundMixGameObject(Uint8 *dest,unsigned int len,eGameObject *go){
+    if(!go)
+        return;
+    
     eCoord vec((go->pos-pos).Turn(dir.Conj()));
     REAL dist_squared=vec.NormSquared()+(z-go->z)*(z-go->z);
 
diff --git a/src/engine/eNetGameObject.cpp b/src/engine/eNetGameObject.cpp
index 1db026b..9b0cd80 100644
--- a/src/engine/eNetGameObject.cpp
+++ b/src/engine/eNetGameObject.cpp
@@ -85,7 +85,7 @@ void eNetGameObject::InitAfterCreation(){
 eNetGameObject::eNetGameObject(eGrid *grid, const eCoord &pos,const eCoord &dir,
                                ePlayerNetID* p,bool autodelete)
         :eGameObject(grid, pos,dir,NULL,autodelete),
-nNetObject(p->Owner()),player(p){
+         nNetObject(Owner(p)),player(p){
     lastClientsideAction=0;
     if (sn_GetNetState()!=nCLIENT)
         RequestSync();
@@ -205,7 +205,7 @@ void eNetGameObject::ReceiveControlNet(nMessage &m){
 
 void eNetGameObject::SetPlayer(ePlayerNetID* a_player)
 {
-    tASSERT( !a_player || Owner() == player->Owner() );
+    tASSERT( !a_player || Owner() == Owner(player) );
     player  = a_player;
     if ( laggometerSmooth == 0 && sn_GetNetState() != nCLIENT )
         laggometerSmooth = laggometer = se_GetPing( player );
@@ -237,7 +237,7 @@ void eNetGameObject::ReceiveControl(REAL time,uActionPlayer *Act,REAL x){
 
 void eNetGameObject::WriteCreate(nMessage &m){
     nNetObject::WriteCreate(m);
-    m.Write(player->ID());
+    m.Write(ID(player));
     m.Write(autodelete);
 }
 
diff --git a/src/engine/ePlayer.cpp b/src/engine/ePlayer.cpp
index 32102d9..3cf9ac8 100644
--- a/src/engine/ePlayer.cpp
+++ b/src/engine/ePlayer.cpp
@@ -56,6 +56,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #include "nConfig.h"
 #include "nNetwork.h"
 #include <time.h>
+#include <climits>
 
 int se_lastSaidMaxEntries = 8;
 
@@ -1689,9 +1690,9 @@ static tColoredString se_BuildChatString( eTeam const *team, ePlayerNetID const
         // foo (Red Team) --> Blue Team: some message here
         eTeam *senderTeam = sender->CurrentTeam();
         console << tColoredString::ColorString(1,1,.5) << " (";
-        console << *senderTeam;
+        console << senderTeam;
         console << tColoredString::ColorString(1,1,.5) << ") --> ";
-        console << *team;
+        console << team;
     }
 
     console << tColoredString::ColorString(1,1,.5) << ": ";
@@ -1923,7 +1924,7 @@ void se_SendTeamMessage( eTeam const * team, ePlayerNetID const * sender ,ePlaye
         else {
             eTeam *senderTeam = sender->CurrentTeam();
             say << tColoredString::ColorString(1,1,.5) << " (";
-            say << *team;
+            say << team;
             say << tColoredString::ColorString(1,1,.5) << " ) --> ";
             say << senderTeam;
         }
@@ -2994,7 +2995,7 @@ static void se_ListPlayers( ePlayerNetID * receiver, std::istream &s, tString co
             tos << tCurrentAccessLevel::GetName( p2->GetAccessLevel() );
             if ( hidden )
                 tos << tColoredString::ColorString( -1 ,-1 ,-1 );
-                tos << " )";
+            tos << " )";
         }
         else
         {
@@ -3941,7 +3942,7 @@ static void sg_ClampPingCharity()
     sg_ClampPingCharity( ::pingCharity );
 }
 
-static int IMPOSSIBLY_LOW_SCORE=(-1 << 31);
+static int IMPOSSIBLY_LOW_SCORE=INT_MIN;
 
 static nSpamProtectionSettings se_chatSpamSettings( 1.0f, "SPAM_PROTECTION_CHAT", tOutput("$spam_protection") );
 
@@ -5548,10 +5549,12 @@ void se_SaveToLadderLog( tOutput const & out )
     {
         std::ofstream o;
         if ( tDirectories::Var().Open(o, "ladderlog.txt", std::ios::app) )
+        {
             if(se_ladderlogDecorateTS) {
                 o << st_GetCurrentTime("%Y/%m/%d-%H:%M:%S ");
             }
-            o << out << std::endl;;
+            o << out << std::endl;
+        }
     }
 }
 
diff --git a/src/engine/eSound.cpp b/src/engine/eSound.cpp
index 9cf94cd..fd6dc7a 100644
--- a/src/engine/eSound.cpp
+++ b/src/engine/eSound.cpp
@@ -91,7 +91,11 @@ void fill_audio(void *udata, Uint8 *stream, int len)
     int i;
     if (eGrid::CurrentGrid())
         for(i=eGrid::CurrentGrid()->Cameras().Len()-1;i>=0;i--)
-            eGrid::CurrentGrid()->Cameras()(i)->SoundMix(stream,len);
+        {
+            eCamera *pCam = eGrid::CurrentGrid()->Cameras()(i);
+            if(pCam)
+                pCam->SoundMix(stream,len);
+        }
 
     for(i=se_globalPlayers.Len()-1;i>=0;i--)
         se_globalPlayers(i)->Mix(stream,len,0,1,1);
diff --git a/src/engine/eTeam.cpp b/src/engine/eTeam.cpp
index 4dc0932..9a4c5bd 100644
--- a/src/engine/eTeam.cpp
+++ b/src/engine/eTeam.cpp
@@ -31,20 +31,21 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #include "nConfig.h"
 
 #include <set>
+#include <climits>
 
-tString & operator << ( tString &s, const eTeam & team)
+tString & operator << ( tString &s, const eTeam * team)
 {
-    if ( !(&team) )
+    if ( !team )
         return s << tOutput("$player_spectator_message");
     else
-        return s << team.GetColoredName();
+        return s << team->GetColoredName();
 }
-std::ostream & operator << ( std::ostream &s, const eTeam & team)
+std::ostream & operator << ( std::ostream &s, const eTeam * team)
 {
-    if ( !(&team) )
+    if ( !team )
         return s << tOutput("$player_spectator_message");
     else
-        return s << team.GetColoredName();
+        return s << team->GetColoredName();
 }
 
 #define TEAMCOLORS 8
@@ -75,7 +76,7 @@ static tString se_team_name[TEAMCOLORS]=
 // static tList<eTeam> se_ColoredTeams;
 static eTeam * se_ColoredTeams[TEAMCOLORS]={0,0,0,0,0,0,0,0};
 
-static int IMPOSSIBLY_LOW_SCORE=(-1 << 31);
+static int IMPOSSIBLY_LOW_SCORE=INT_MIN;
 
 // class that creates config items for one team
 // TEAM_(NAME|RED|GREEN|BLUE)_X
diff --git a/src/engine/eTeam.h b/src/engine/eTeam.h
index 20c3a35..302f5bd 100644
--- a/src/engine/eTeam.h
+++ b/src/engine/eTeam.h
@@ -32,8 +32,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #include "nNetObject.h"
 #include "tList.h"
 
-tString & operator << ( tString&, const eTeam&);
-std::ostream & operator << ( std::ostream&, const eTeam&);
+tString & operator << ( tString&, const eTeam*);
+std::ostream & operator << ( std::ostream&, const eTeam*);
 
 template<class T> class nConfItem;
 
diff --git a/src/first/Makefile.in b/src/first/Makefile.in
index 828c53e..3479e9d 100644
--- a/src/first/Makefile.in
+++ b/src/first/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
-
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -16,51 +17,6 @@
 
 # include $(top_srcdir)/Makefile.paths
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -81,7 +37,7 @@ build_triplet = @build@
 host_triplet = @host@
 target_triplet = @target@
 subdir = src/first
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
 	$(top_srcdir)/accustomdir.m4 $(top_srcdir)/configure.ac
@@ -91,30 +47,11 @@ mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = $(top_builddir)/config.h
 CONFIG_CLEAN_FILES =
 CONFIG_CLEAN_VPATH_FILES =
-AM_V_P = $(am__v_P_ at AM_V@)
-am__v_P_ = $(am__v_P_ at AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
 SOURCES =
 DIST_SOURCES =
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APBUILD_CC = @APBUILD_CC@
 APBUILD_CXX1 = @APBUILD_CXX1@
 APBUILD_CXX2 = @APBUILD_CXX2@
@@ -312,11 +249,11 @@ $(top_srcdir)/configure:  $(am__configure_deps)
 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 $(am__aclocal_m4_deps):
-tags TAGS:
-
-ctags CTAGS:
+tags: TAGS
+TAGS:
 
-cscope cscopelist:
+ctags: CTAGS
+CTAGS:
 
 
 distdir: $(DISTFILES)
@@ -363,15 +300,10 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 mostlyclean-generic:
 
 clean-generic:
@@ -451,16 +383,15 @@ uninstall-am: uninstall-local
 
 .MAKE: install-am install-strip
 
-.PHONY: all all-am check check-am clean clean-generic cscopelist-am \
-	ctags-am distclean distclean-generic distdir dvi dvi-am html \
-	html-am info info-am install install-am install-data \
-	install-data-am install-dvi install-dvi-am install-exec \
-	install-exec-am install-exec-local install-html \
-	install-html-am install-info install-info-am install-man \
-	install-pdf install-pdf-am install-ps install-ps-am \
-	install-strip installcheck installcheck-am installdirs \
-	maintainer-clean maintainer-clean-generic mostlyclean \
-	mostlyclean-generic pdf pdf-am ps ps-am tags-am uninstall \
+.PHONY: all all-am check check-am clean clean-generic distclean \
+	distclean-generic distdir dvi dvi-am html html-am info info-am \
+	install install-am install-data install-data-am install-dvi \
+	install-dvi-am install-exec install-exec-am install-exec-local \
+	install-html install-html-am install-info install-info-am \
+	install-man install-pdf install-pdf-am install-ps \
+	install-ps-am install-strip installcheck installcheck-am \
+	installdirs maintainer-clean maintainer-clean-generic \
+	mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \
 	uninstall-am uninstall-local
 
 
diff --git a/src/macosx/config_common.h.in b/src/macosx/config_common.h.in
index a57ea5f..9ad721b 100644
--- a/src/macosx/config_common.h.in
+++ b/src/macosx/config_common.h.in
@@ -163,7 +163,7 @@
 #define STDC_HEADERS 1
 
 /* Version number of package */
-#define VERSION "0.2.8.3.3"
+#define VERSION "0.2.8.3.4"
 
 /* Windows 9x/NT/2k/XP */
 /* #undef WIN32 */
diff --git a/src/network/nNetObject.cpp b/src/network/nNetObject.cpp
index 2fb0962..b265f9e 100644
--- a/src/network/nNetObject.cpp
+++ b/src/network/nNetObject.cpp
@@ -555,14 +555,11 @@ nDescriptor& nNetObject::CreatorDescriptor() const{
 */
 
 void nNetObject::AddRef(){
-    tASSERT ( this );
+    tASSERT_THIS();
 
-    if ( this )
-    {
-        tASSERT( refCtr_ >= 0 );
-        refCtr_++;
-        tASSERT( refCtr_ >= 0 );
-    }
+    tASSERT( refCtr_ >= 0 );
+    refCtr_++;
+    tASSERT( refCtr_ >= 0 );
 }
 
 void nNetObject::ReleaseOwnership(){
@@ -582,9 +579,9 @@ void nNetObject::TakeOwnership(){
 }
 
 void nNetObject::Release(){
-    tASSERT( this );
+    tASSERT_THIS();
 
-    if (this){
+    {
         if (refCtr_>0)
             refCtr_--;
         else
@@ -1530,7 +1527,7 @@ void nNetObject::SyncAll(){
             // con << sn_SyncRequestedObject.Len() << "/" << sn_netObjects.Len() << "\n";
 
             int currentSync = sn_SyncRequestedObject.Len()-1;
-            while(sn_Connections[user].socket>0 &&
+            while(sn_Connections[user].socket &&
                     sn_Connections[user].bandwidthControl_.CanSend() &&
                     sn_Connections[user].ackPending<sn_maxNoAck &&
                     currentSync >= 0){
diff --git a/src/network/nNetObject.h b/src/network/nNetObject.h
index b67ec2b..0940260 100644
--- a/src/network/nNetObject.h
+++ b/src/network/nNetObject.h
@@ -128,15 +128,33 @@ public:
 
     virtual void Dump( tConsole& con ); // dumps object stats
 
+    static unsigned short ID(nNetObject const *pThis)
+    {
+        if (pThis)
+            return pThis->id;
+        else
+            return 0;
+    }
+
     unsigned short ID() const{
-        if (this)
+        tASSERT_THIS();
+        if (st_CheckThis(this))
             return id;
         else
             return 0;
     }
 
+    static unsigned short Owner(nNetObject const *pThis)
+    {
+        if (pThis)
+            return pThis->owner;
+        else
+            return ::sn_myNetID;
+    }
+
     unsigned short Owner() const{
-        if (this)
+        tASSERT_THIS();
+        if (st_CheckThis(this))
             return owner;
         else
             return ::sn_myNetID;
diff --git a/src/network/nSocket.cpp b/src/network/nSocket.cpp
index 7895b51..29228fb 100644
--- a/src/network/nSocket.cpp
+++ b/src/network/nSocket.cpp
@@ -834,6 +834,7 @@ int ANET_GetSocketAddr (int sock, struct sockaddr *addr)
 
 //=============================================================================
 
+/*
 int ANET_AddrCompare (struct sockaddr *addr1, struct sockaddr *addr2)
 {
     if (addr1->sa_family != addr2->sa_family)
@@ -847,6 +848,7 @@ int ANET_AddrCompare (struct sockaddr *addr1, struct sockaddr *addr2)
 
     return 0;
 }
+*/
 
 }   // namespace
 
diff --git a/src/thirdparty/Makefile.in b/src/thirdparty/Makefile.in
index 6da5006..e8543e6 100644
--- a/src/thirdparty/Makefile.in
+++ b/src/thirdparty/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
-
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -14,51 +15,6 @@
 
 @SET_MAKE@
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -79,7 +35,7 @@ build_triplet = @build@
 host_triplet = @host@
 target_triplet = @target@
 subdir = src/thirdparty
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
 	$(top_srcdir)/accustomdir.m4 $(top_srcdir)/configure.ac
@@ -89,58 +45,20 @@ mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = $(top_builddir)/config.h
 CONFIG_CLEAN_FILES =
 CONFIG_CLEAN_VPATH_FILES =
-AM_V_P = $(am__v_P_ at AM_V@)
-am__v_P_ = $(am__v_P_ at AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
 SOURCES =
 DIST_SOURCES =
-RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
-	ctags-recursive dvi-recursive html-recursive info-recursive \
-	install-data-recursive install-dvi-recursive \
-	install-exec-recursive install-html-recursive \
-	install-info-recursive install-pdf-recursive \
-	install-ps-recursive install-recursive installcheck-recursive \
-	installdirs-recursive pdf-recursive ps-recursive \
-	tags-recursive uninstall-recursive
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
+RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
+	html-recursive info-recursive install-data-recursive \
+	install-dvi-recursive install-exec-recursive \
+	install-html-recursive install-info-recursive \
+	install-pdf-recursive install-ps-recursive install-recursive \
+	installcheck-recursive installdirs-recursive pdf-recursive \
+	ps-recursive uninstall-recursive
 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
   distclean-recursive maintainer-clean-recursive
-am__recursive_targets = \
-  $(RECURSIVE_TARGETS) \
-  $(RECURSIVE_CLEAN_TARGETS) \
-  $(am__extra_recursive_targets)
-AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
+AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
+	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 	distdir
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
-# Read a list of newline-separated strings from the standard input,
-# and print each of them once, without duplicates.  Input order is
-# *not* preserved.
-am__uniquify_input = $(AWK) '\
-  BEGIN { nonempty = 0; } \
-  { items[$$0] = 1; nonempty = 1; } \
-  END { if (nonempty) { for (i in items) print i; }; } \
-'
-# Make sure the list of sources is unique.  This is necessary because,
-# e.g., the same source file might be shared among _SOURCES variables
-# for different programs/libraries.
-am__define_uniq_tagged_files = \
-  list='$(am__tagged_files)'; \
-  unique=`for i in $$list; do \
-    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-  done | $(am__uniquify_input)`
 ETAGS = etags
 CTAGS = ctags
 DIST_SUBDIRS = particles
@@ -172,7 +90,6 @@ am__relativize = \
   reldir="$$dir2"
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APBUILD_CC = @APBUILD_CC@
 APBUILD_CXX1 = @APBUILD_CXX1@
 APBUILD_CXX2 = @APBUILD_CXX2@
@@ -373,25 +290,22 @@ $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 $(am__aclocal_m4_deps):
 
 # This directory's subdirectories are mostly independent; you can cd
-# into them and run 'make' without going through this Makefile.
-# To change the values of 'make' variables: instead of editing Makefiles,
-# (1) if the variable is set in 'config.status', edit 'config.status'
-#     (which will cause the Makefiles to be regenerated when you run 'make');
-# (2) otherwise, pass the desired values on the 'make' command line.
-$(am__recursive_targets):
-	@fail=; \
-	if $(am__make_keepgoing); then \
-	  failcom='fail=yes'; \
-	else \
-	  failcom='exit 1'; \
-	fi; \
+# into them and run `make' without going through this Makefile.
+# To change the values of `make' variables: instead of editing Makefiles,
+# (1) if the variable is set in `config.status', edit `config.status'
+#     (which will cause the Makefiles to be regenerated when you run `make');
+# (2) otherwise, pass the desired values on the `make' command line.
+$(RECURSIVE_TARGETS):
+	@fail= failcom='exit 1'; \
+	for f in x $$MAKEFLAGS; do \
+	  case $$f in \
+	    *=* | --[!k]*);; \
+	    *k*) failcom='fail=yes';; \
+	  esac; \
+	done; \
 	dot_seen=no; \
 	target=`echo $@ | sed s/-recursive//`; \
-	case "$@" in \
-	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
-	  *) list='$(SUBDIRS)' ;; \
-	esac; \
-	for subdir in $$list; do \
+	list='$(SUBDIRS)'; for subdir in $$list; do \
 	  echo "Making $$target in $$subdir"; \
 	  if test "$$subdir" = "."; then \
 	    dot_seen=yes; \
@@ -406,12 +320,57 @@ $(am__recursive_targets):
 	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 	fi; test -z "$$fail"
 
-ID: $(am__tagged_files)
-	$(am__define_uniq_tagged_files); mkid -fID $$unique
-tags: tags-recursive
-TAGS: tags
+$(RECURSIVE_CLEAN_TARGETS):
+	@fail= failcom='exit 1'; \
+	for f in x $$MAKEFLAGS; do \
+	  case $$f in \
+	    *=* | --[!k]*);; \
+	    *k*) failcom='fail=yes';; \
+	  esac; \
+	done; \
+	dot_seen=no; \
+	case "$@" in \
+	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
+	  *) list='$(SUBDIRS)' ;; \
+	esac; \
+	rev=''; for subdir in $$list; do \
+	  if test "$$subdir" = "."; then :; else \
+	    rev="$$subdir $$rev"; \
+	  fi; \
+	done; \
+	rev="$$rev ."; \
+	target=`echo $@ | sed s/-recursive//`; \
+	for subdir in $$rev; do \
+	  echo "Making $$target in $$subdir"; \
+	  if test "$$subdir" = "."; then \
+	    local_target="$$target-am"; \
+	  else \
+	    local_target="$$target"; \
+	  fi; \
+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+	  || eval $$failcom; \
+	done && test -z "$$fail"
+tags-recursive:
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+	done
+ctags-recursive:
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
+	done
 
-tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+	mkid -fID $$unique
+tags: TAGS
+
+TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
 	set x; \
 	here=`pwd`; \
 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
@@ -427,7 +386,12 @@ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
 	  fi; \
 	done; \
-	$(am__define_uniq_tagged_files); \
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 	shift; \
 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 	  test -n "$$unique" || unique=$$empty_fix; \
@@ -439,11 +403,15 @@ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 	      $$unique; \
 	  fi; \
 	fi
-ctags: ctags-recursive
-
-CTAGS: ctags
-ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
-	$(am__define_uniq_tagged_files); \
+ctags: CTAGS
+CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 	test -z "$(CTAGS_ARGS)$$unique" \
 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 	     $$unique
@@ -452,21 +420,6 @@ GTAGS:
 	here=`$(am__cd) $(top_builddir) && pwd` \
 	  && $(am__cd) $(top_srcdir) \
 	  && gtags -i $(GTAGS_ARGS) "$$here"
-cscopelist: cscopelist-recursive
-
-cscopelist-am: $(am__tagged_files)
-	list='$(am__tagged_files)'; \
-	case "$(srcdir)" in \
-	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
-	  *) sdir=$(subdir)/$(srcdir) ;; \
-	esac; \
-	for i in $$list; do \
-	  if test -f "$$i"; then \
-	    echo "$(subdir)/$$i"; \
-	  else \
-	    echo "$$sdir/$$i"; \
-	  fi; \
-	done >> $(top_builddir)/cscope.files
 
 distclean-tags:
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -503,10 +456,13 @@ distdir: $(DISTFILES)
 	done
 	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 	  if test "$$subdir" = .; then :; else \
-	    $(am__make_dryrun) \
-	      || test -d "$(distdir)/$$subdir" \
-	      || $(MKDIR_P) "$(distdir)/$$subdir" \
-	      || exit 1; \
+	    test -d "$(distdir)/$$subdir" \
+	    || $(MKDIR_P) "$(distdir)/$$subdir" \
+	    || exit 1; \
+	  fi; \
+	done
+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+	  if test "$$subdir" = .; then :; else \
 	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 	    $(am__relativize); \
 	    new_distdir=$$reldir; \
@@ -541,15 +497,10 @@ install-am: all-am
 
 installcheck: installcheck-recursive
 install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 mostlyclean-generic:
 
 clean-generic:
@@ -627,19 +578,21 @@ ps-am:
 
 uninstall-am:
 
-.MAKE: $(am__recursive_targets) install-am install-strip
-
-.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
-	check-am clean clean-generic cscopelist-am ctags ctags-am \
-	distclean distclean-generic distclean-tags distdir dvi dvi-am \
-	html html-am info info-am install install-am install-data \
-	install-data-am install-dvi install-dvi-am install-exec \
-	install-exec-am install-html install-html-am install-info \
-	install-info-am install-man install-pdf install-pdf-am \
-	install-ps install-ps-am install-strip installcheck \
-	installcheck-am installdirs installdirs-am maintainer-clean \
-	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
-	pdf-am ps ps-am tags tags-am uninstall uninstall-am
+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
+	install-am install-strip tags-recursive
+
+.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
+	all all-am check check-am clean clean-generic ctags \
+	ctags-recursive distclean distclean-generic distclean-tags \
+	distdir dvi dvi-am html html-am info info-am install \
+	install-am install-data install-data-am install-dvi \
+	install-dvi-am install-exec install-exec-am install-html \
+	install-html-am install-info install-info-am install-man \
+	install-pdf install-pdf-am install-ps install-ps-am \
+	install-strip installcheck installcheck-am installdirs \
+	installdirs-am maintainer-clean maintainer-clean-generic \
+	mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \
+	tags-recursive uninstall uninstall-am
 
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
diff --git a/src/thirdparty/particles/Makefile.in b/src/thirdparty/particles/Makefile.in
index c599af1..62a8f57 100644
--- a/src/thirdparty/particles/Makefile.in
+++ b/src/thirdparty/particles/Makefile.in
@@ -1,8 +1,9 @@
-# Makefile.in generated by automake 1.14.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
-
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
+# Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -15,51 +16,6 @@
 @SET_MAKE@
 
 VPATH = @srcdir@
-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -80,8 +36,7 @@ build_triplet = @build@
 host_triplet = @host@
 target_triplet = @target@
 subdir = src/thirdparty/particles
-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
-	$(top_srcdir)/depcomp
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
 	$(top_srcdir)/accustomdir.m4 $(top_srcdir)/configure.ac
@@ -94,10 +49,6 @@ CONFIG_CLEAN_VPATH_FILES =
 LIBRARIES = $(noinst_LIBRARIES)
 AR = ar
 ARFLAGS = cru
-AM_V_AR = $(am__v_AR_ at AM_V@)
-am__v_AR_ = $(am__v_AR_ at AM_DEFAULT_V@)
-am__v_AR_0 = @echo "  AR      " $@;
-am__v_AR_1 = 
 libparticles_a_AR = $(AR) $(ARFLAGS)
 libparticles_a_LIBADD =
 am_libparticles_a_OBJECTS = libparticles_a-action_api.$(OBJEXT) \
@@ -105,81 +56,26 @@ am_libparticles_a_OBJECTS = libparticles_a-action_api.$(OBJEXT) \
 	libparticles_a-opengl.$(OBJEXT) \
 	libparticles_a-system.$(OBJEXT)
 libparticles_a_OBJECTS = $(am_libparticles_a_OBJECTS)
-AM_V_P = $(am__v_P_ at AM_V@)
-am__v_P_ = $(am__v_P_ at AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
 DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
 depcomp = $(SHELL) $(top_srcdir)/depcomp
 am__depfiles_maybe = depfiles
 am__mv = mv -f
-AM_V_lt = $(am__v_lt_ at AM_V@)
-am__v_lt_ = $(am__v_lt_ at AM_DEFAULT_V@)
-am__v_lt_0 = --silent
-am__v_lt_1 = 
 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
 	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
-AM_V_CXX = $(am__v_CXX_ at AM_V@)
-am__v_CXX_ = $(am__v_CXX_ at AM_DEFAULT_V@)
-am__v_CXX_0 = @echo "  CXX     " $@;
-am__v_CXX_1 = 
 CXXLD = $(CXX)
 CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
 	-o $@
-AM_V_CXXLD = $(am__v_CXXLD_ at AM_V@)
-am__v_CXXLD_ = $(am__v_CXXLD_ at AM_DEFAULT_V@)
-am__v_CXXLD_0 = @echo "  CXXLD   " $@;
-am__v_CXXLD_1 = 
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-AM_V_CC = $(am__v_CC_ at AM_V@)
-am__v_CC_ = $(am__v_CC_ at AM_DEFAULT_V@)
-am__v_CC_0 = @echo "  CC      " $@;
-am__v_CC_1 = 
 CCLD = $(CC)
 LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
-AM_V_CCLD = $(am__v_CCLD_ at AM_V@)
-am__v_CCLD_ = $(am__v_CCLD_ at AM_DEFAULT_V@)
-am__v_CCLD_0 = @echo "  CCLD    " $@;
-am__v_CCLD_1 = 
 SOURCES = $(libparticles_a_SOURCES)
 DIST_SOURCES = $(libparticles_a_SOURCES)
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
-# Read a list of newline-separated strings from the standard input,
-# and print each of them once, without duplicates.  Input order is
-# *not* preserved.
-am__uniquify_input = $(AWK) '\
-  BEGIN { nonempty = 0; } \
-  { items[$$0] = 1; nonempty = 1; } \
-  END { if (nonempty) { for (i in items) print i; }; } \
-'
-# Make sure the list of sources is unique.  This is necessary because,
-# e.g., the same source file might be shared among _SOURCES variables
-# for different programs/libraries.
-am__define_uniq_tagged_files = \
-  list='$(am__tagged_files)'; \
-  unique=`for i in $$list; do \
-    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-  done | $(am__uniquify_input)`
 ETAGS = etags
 CTAGS = ctags
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 APBUILD_CC = @APBUILD_CC@
 APBUILD_CXX1 = @APBUILD_CXX1@
 APBUILD_CXX2 = @APBUILD_CXX2@
@@ -384,11 +280,10 @@ $(am__aclocal_m4_deps):
 
 clean-noinstLIBRARIES:
 	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
-
-libparticles.a: $(libparticles_a_OBJECTS) $(libparticles_a_DEPENDENCIES) $(EXTRA_libparticles_a_DEPENDENCIES) 
-	$(AM_V_at)-rm -f libparticles.a
-	$(AM_V_AR)$(libparticles_a_AR) libparticles.a $(libparticles_a_OBJECTS) $(libparticles_a_LIBADD)
-	$(AM_V_at)$(RANLIB) libparticles.a
+libparticles.a: $(libparticles_a_OBJECTS) $(libparticles_a_DEPENDENCIES) 
+	-rm -f libparticles.a
+	$(libparticles_a_AR) libparticles.a $(libparticles_a_OBJECTS) $(libparticles_a_LIBADD)
+	$(RANLIB) libparticles.a
 
 mostlyclean-compile:
 	-rm -f *.$(OBJEXT)
@@ -402,84 +297,95 @@ distclean-compile:
 @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libparticles_a-system.Po at am__quote@
 
 .cpp.o:
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXXCOMPILE) -c -o $@ $<
+ at am__fastdepCXX_FALSE@	$(CXXCOMPILE) -c -o $@ $<
 
 .cpp.obj:
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+ at am__fastdepCXX_FALSE@	$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
 
 libparticles_a-action_api.o: action_api.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-action_api.o -MD -MP -MF $(DEPDIR)/libparticles_a-action_api.Tpo -c -o libparticles_a-action_api.o `test -f 'action_api.cpp' || echo '$(srcdir)/'`action_api.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libparticles_a-action_api.Tpo $(DEPDIR)/libparticles_a-action_api.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='action_api.cpp' object='libparticles_a-action_api.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-action_api.o -MD -MP -MF $(DEPDIR)/libparticles_a-action_api.Tpo -c -o libparticles_a-action_api.o `test -f 'action_api.cpp' || echo '$(srcdir)/'`action_api.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libparticles_a-action_api.Tpo $(DEPDIR)/libparticles_a-action_api.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='action_api.cpp' object='libparticles_a-action_api.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-action_api.o `test -f 'action_api.cpp' || echo '$(srcdir)/'`action_api.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-action_api.o `test -f 'action_api.cpp' || echo '$(srcdir)/'`action_api.cpp
 
 libparticles_a-action_api.obj: action_api.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-action_api.obj -MD -MP -MF $(DEPDIR)/libparticles_a-action_api.Tpo -c -o libparticles_a-action_api.obj `if test -f 'action_api.cpp'; then $(CYGPATH_W) 'action_api.cpp'; else $(CYGPATH_W) '$(srcdir)/action_api.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libparticles_a-action_api.Tpo $(DEPDIR)/libparticles_a-action_api.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='action_api.cpp' object='libparticles_a-action_api.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-action_api.obj -MD -MP -MF $(DEPDIR)/libparticles_a-action_api.Tpo -c -o libparticles_a-action_api.obj `if test -f 'action_api.cpp'; then $(CYGPATH_W) 'action_api.cpp'; else $(CYGPATH_W) '$(srcdir)/action_api.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libparticles_a-action_api.Tpo $(DEPDIR)/libparticles_a-action_api.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='action_api.cpp' object='libparticles_a-action_api.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-action_api.obj `if test -f 'action_api.cpp'; then $(CYGPATH_W) 'action_api.cpp'; else $(CYGPATH_W) '$(srcdir)/action_api.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-action_api.obj `if test -f 'action_api.cpp'; then $(CYGPATH_W) 'action_api.cpp'; else $(CYGPATH_W) '$(srcdir)/action_api.cpp'; fi`
 
 libparticles_a-actions.o: actions.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-actions.o -MD -MP -MF $(DEPDIR)/libparticles_a-actions.Tpo -c -o libparticles_a-actions.o `test -f 'actions.cpp' || echo '$(srcdir)/'`actions.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libparticles_a-actions.Tpo $(DEPDIR)/libparticles_a-actions.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='actions.cpp' object='libparticles_a-actions.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-actions.o -MD -MP -MF $(DEPDIR)/libparticles_a-actions.Tpo -c -o libparticles_a-actions.o `test -f 'actions.cpp' || echo '$(srcdir)/'`actions.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libparticles_a-actions.Tpo $(DEPDIR)/libparticles_a-actions.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='actions.cpp' object='libparticles_a-actions.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-actions.o `test -f 'actions.cpp' || echo '$(srcdir)/'`actions.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-actions.o `test -f 'actions.cpp' || echo '$(srcdir)/'`actions.cpp
 
 libparticles_a-actions.obj: actions.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-actions.obj -MD -MP -MF $(DEPDIR)/libparticles_a-actions.Tpo -c -o libparticles_a-actions.obj `if test -f 'actions.cpp'; then $(CYGPATH_W) 'actions.cpp'; else $(CYGPATH_W) '$(srcdir)/actions.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libparticles_a-actions.Tpo $(DEPDIR)/libparticles_a-actions.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='actions.cpp' object='libparticles_a-actions.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-actions.obj -MD -MP -MF $(DEPDIR)/libparticles_a-actions.Tpo -c -o libparticles_a-actions.obj `if test -f 'actions.cpp'; then $(CYGPATH_W) 'actions.cpp'; else $(CYGPATH_W) '$(srcdir)/actions.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libparticles_a-actions.Tpo $(DEPDIR)/libparticles_a-actions.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='actions.cpp' object='libparticles_a-actions.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-actions.obj `if test -f 'actions.cpp'; then $(CYGPATH_W) 'actions.cpp'; else $(CYGPATH_W) '$(srcdir)/actions.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-actions.obj `if test -f 'actions.cpp'; then $(CYGPATH_W) 'actions.cpp'; else $(CYGPATH_W) '$(srcdir)/actions.cpp'; fi`
 
 libparticles_a-opengl.o: opengl.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-opengl.o -MD -MP -MF $(DEPDIR)/libparticles_a-opengl.Tpo -c -o libparticles_a-opengl.o `test -f 'opengl.cpp' || echo '$(srcdir)/'`opengl.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libparticles_a-opengl.Tpo $(DEPDIR)/libparticles_a-opengl.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='opengl.cpp' object='libparticles_a-opengl.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-opengl.o -MD -MP -MF $(DEPDIR)/libparticles_a-opengl.Tpo -c -o libparticles_a-opengl.o `test -f 'opengl.cpp' || echo '$(srcdir)/'`opengl.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libparticles_a-opengl.Tpo $(DEPDIR)/libparticles_a-opengl.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='opengl.cpp' object='libparticles_a-opengl.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-opengl.o `test -f 'opengl.cpp' || echo '$(srcdir)/'`opengl.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-opengl.o `test -f 'opengl.cpp' || echo '$(srcdir)/'`opengl.cpp
 
 libparticles_a-opengl.obj: opengl.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-opengl.obj -MD -MP -MF $(DEPDIR)/libparticles_a-opengl.Tpo -c -o libparticles_a-opengl.obj `if test -f 'opengl.cpp'; then $(CYGPATH_W) 'opengl.cpp'; else $(CYGPATH_W) '$(srcdir)/opengl.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libparticles_a-opengl.Tpo $(DEPDIR)/libparticles_a-opengl.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='opengl.cpp' object='libparticles_a-opengl.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-opengl.obj -MD -MP -MF $(DEPDIR)/libparticles_a-opengl.Tpo -c -o libparticles_a-opengl.obj `if test -f 'opengl.cpp'; then $(CYGPATH_W) 'opengl.cpp'; else $(CYGPATH_W) '$(srcdir)/opengl.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libparticles_a-opengl.Tpo $(DEPDIR)/libparticles_a-opengl.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='opengl.cpp' object='libparticles_a-opengl.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-opengl.obj `if test -f 'opengl.cpp'; then $(CYGPATH_W) 'opengl.cpp'; else $(CYGPATH_W) '$(srcdir)/opengl.cpp'; fi`
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-opengl.obj `if test -f 'opengl.cpp'; then $(CYGPATH_W) 'opengl.cpp'; else $(CYGPATH_W) '$(srcdir)/opengl.cpp'; fi`
 
 libparticles_a-system.o: system.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-system.o -MD -MP -MF $(DEPDIR)/libparticles_a-system.Tpo -c -o libparticles_a-system.o `test -f 'system.cpp' || echo '$(srcdir)/'`system.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libparticles_a-system.Tpo $(DEPDIR)/libparticles_a-system.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='system.cpp' object='libparticles_a-system.o' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-system.o -MD -MP -MF $(DEPDIR)/libparticles_a-system.Tpo -c -o libparticles_a-system.o `test -f 'system.cpp' || echo '$(srcdir)/'`system.cpp
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libparticles_a-system.Tpo $(DEPDIR)/libparticles_a-system.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='system.cpp' object='libparticles_a-system.o' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-system.o `test -f 'system.cpp' || echo '$(srcdir)/'`system.cpp
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-system.o `test -f 'system.cpp' || echo '$(srcdir)/'`system.cpp
 
 libparticles_a-system.obj: system.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-system.obj -MD -MP -MF $(DEPDIR)/libparticles_a-system.Tpo -c -o libparticles_a-system.obj `if test -f 'system.cpp'; then $(CYGPATH_W) 'system.cpp'; else $(CYGPATH_W) '$(srcdir)/system.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libparticles_a-system.Tpo $(DEPDIR)/libparticles_a-system.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='system.cpp' object='libparticles_a-system.obj' libtool=no @AMDEPBACKSLASH@
+ at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -MT libparticles_a-system.obj -MD -MP -MF $(DEPDIR)/libparticles_a-system.Tpo -c -o libparticles_a-system.obj `if test -f 'system.cpp'; then $(CYGPATH_W) 'system.cpp'; else $(CYGPATH_W) '$(srcdir)/system.cpp'; fi`
+ at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/libparticles_a-system.Tpo $(DEPDIR)/libparticles_a-system.Po
+ at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='system.cpp' object='libparticles_a-system.obj' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-system.obj `if test -f 'system.cpp'; then $(CYGPATH_W) 'system.cpp'; else $(CYGPATH_W) '$(srcdir)/system.cpp'; fi`
-
-ID: $(am__tagged_files)
-	$(am__define_uniq_tagged_files); mkid -fID $$unique
-tags: tags-am
-TAGS: tags
-
-tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
+ at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libparticles_a_CXXFLAGS) $(CXXFLAGS) -c -o libparticles_a-system.obj `if test -f 'system.cpp'; then $(CYGPATH_W) 'system.cpp'; else $(CYGPATH_W) '$(srcdir)/system.cpp'; fi`
+
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+	mkid -fID $$unique
+tags: TAGS
+
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
 	set x; \
 	here=`pwd`; \
-	$(am__define_uniq_tagged_files); \
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 	shift; \
 	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
 	  test -n "$$unique" || unique=$$empty_fix; \
@@ -491,11 +397,15 @@ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 	      $$unique; \
 	  fi; \
 	fi
-ctags: ctags-am
-
-CTAGS: ctags
-ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
-	$(am__define_uniq_tagged_files); \
+ctags: CTAGS
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
 	test -z "$(CTAGS_ARGS)$$unique" \
 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
 	     $$unique
@@ -504,21 +414,6 @@ GTAGS:
 	here=`$(am__cd) $(top_builddir) && pwd` \
 	  && $(am__cd) $(top_srcdir) \
 	  && gtags -i $(GTAGS_ARGS) "$$here"
-cscopelist: cscopelist-am
-
-cscopelist-am: $(am__tagged_files)
-	list='$(am__tagged_files)'; \
-	case "$(srcdir)" in \
-	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
-	  *) sdir=$(subdir)/$(srcdir) ;; \
-	esac; \
-	for i in $$list; do \
-	  if test -f "$$i"; then \
-	    echo "$(subdir)/$$i"; \
-	  else \
-	    echo "$$sdir/$$i"; \
-	  fi; \
-	done >> $(top_builddir)/cscope.files
 
 distclean-tags:
 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -567,15 +462,10 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 mostlyclean-generic:
 
 clean-generic:
@@ -658,17 +548,17 @@ uninstall-am:
 
 .MAKE: install-am install-strip
 
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
-	clean-noinstLIBRARIES cscopelist-am ctags ctags-am distclean \
-	distclean-compile distclean-generic distclean-tags distdir dvi \
-	dvi-am html html-am info info-am install install-am \
-	install-data install-data-am install-dvi install-dvi-am \
-	install-exec install-exec-am install-html install-html-am \
-	install-info install-info-am install-man install-pdf \
-	install-pdf-am install-ps install-ps-am install-strip \
-	installcheck installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+	clean-noinstLIBRARIES ctags distclean distclean-compile \
+	distclean-generic distclean-tags distdir dvi dvi-am html \
+	html-am info info-am install install-am install-data \
+	install-data-am install-dvi install-dvi-am install-exec \
+	install-exec-am install-html install-html-am install-info \
+	install-info-am install-man install-pdf install-pdf-am \
+	install-ps install-ps-am install-strip installcheck \
+	installcheck-am installdirs maintainer-clean \
 	maintainer-clean-generic mostlyclean mostlyclean-compile \
-	mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
+	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
 	uninstall-am
 
 
diff --git a/src/tools/tError.cpp b/src/tools/tError.cpp
index 9a75df7..93e3a03 100644
--- a/src/tools/tError.cpp
+++ b/src/tools/tError.cpp
@@ -109,3 +109,8 @@ void st_PresentMessage( const char* caption, const char *message )
 
 char ERROR_MESSAGE[1000];
 
+bool st_CheckThis(void const *in)
+{
+    return in;
+}
+
diff --git a/src/tools/tError.h b/src/tools/tError.h
index 0039671..7740bcb 100644
--- a/src/tools/tError.h
+++ b/src/tools/tError.h
@@ -81,6 +81,10 @@ void st_Breakpoint();
 void st_PresentError( const char* caption, const char *message );
 void st_PresentMessage( const char* caption, const char *message );
 
+// complaint free check for THIS pointer so dereferencing null objects can get caugt in debug builds
+bool st_CheckThis(void const *in);
+#define tASSERT_THIS() tASSERT(st_CheckThis(this));
+
 /*
 #ifndef WIN32
 
diff --git a/src/tools/tHeap.cpp b/src/tools/tHeap.cpp
index 1f9f287..ecdff8b 100644
--- a/src/tools/tHeap.cpp
+++ b/src/tools/tHeap.cpp
@@ -234,7 +234,7 @@ tHeapElement::~tHeapElement()
 }
 
 void tHeapElement::RemoveFromHeap(){
-    tASSERT( this );
+    tASSERT_THIS();
 
     if (hID>=0)
     {
diff --git a/src/tools/tLinkedList.cpp b/src/tools/tLinkedList.cpp
index 9b43c35..dd69f6d 100644
--- a/src/tools/tLinkedList.cpp
+++ b/src/tools/tLinkedList.cpp
@@ -59,8 +59,10 @@ int  tListItemBase::Len(){
 
 void tListItemBase::Sort( Comparator* compare )
 {
+    tASSERT_THIS();
+    
     // early return statements: empty list or single element in list
-    if ( !this || !next )
+    if (!next )
     {
         return;
     }
@@ -88,8 +90,10 @@ void tListItemBase::Sort( Comparator* compare )
     tListItemBase*& first = *anchor;
 
     // sort the two half lists
-    first->Sort( compare );
-    middle->Sort( compare );
+    if(first)
+        first->Sort( compare );
+    if(middle)
+        middle->Sort( compare );
 
     // merge the lists
     {
diff --git a/src/tools/tLocale.cpp b/src/tools/tLocale.cpp
index 45c205d..10820d5 100644
--- a/src/tools/tLocale.cpp
+++ b/src/tools/tLocale.cpp
@@ -731,6 +731,13 @@ tOutput& operator << (tOutput &o, char *locale)
 
 // and a special implementation for the locales and strings:
 tOutput& operator << (tOutput &o, const char *locale){
+    return o.AddString(locale);
+}
+
+tOutput & tOutput::AddString(char const * locale)
+{
+    tOutput & o = *this;
+
     int len = strlen(locale);
     if (len == 0)
         return o;
diff --git a/src/tools/tLocale.h b/src/tools/tLocale.h
index 8e06530..67b0f4f 100644
--- a/src/tools/tLocale.h
+++ b/src/tools/tLocale.h
@@ -81,7 +81,7 @@ class tOutput{
 
     tOutputItemBase *anchor;
 
-    tOutput& operator << (const tOutput &o);
+    // tOutput& operator << (const tOutput &o);
 public:
     tOutput();
     ~tOutput();
@@ -91,6 +91,7 @@ public:
     void AddLiteral(const char *);       // adds a language independent string
     void AddLocale(const char *);        // adds a language dependant string
     void AddSpace();                     // adds a simple space
+    tOutput & AddString(char const * pString); // checks the string, delegates to correct Add...()-Function
 
     // set a template parameter at this position of the output string
     tOutput & SetTemplateParameter(int num, const char *parameter);
@@ -113,7 +114,7 @@ public:
 
         SetTemplateParameter(1, template1);
 
-        *this << identifier;
+        AddString(identifier);
     }
 
     template< class T1, class T2 >
@@ -125,7 +126,7 @@ public:
         SetTemplateParameter(1, template1);
         SetTemplateParameter(2, template2);
 
-        *this << identifier;
+        AddString(identifier);
     }
 
     template< class T1, class T2, class T3 >
@@ -138,7 +139,7 @@ public:
         SetTemplateParameter(2, template2);
         SetTemplateParameter(3, template3);
 
-        *this << identifier;
+        AddString(identifier);
     }
 
     template< class T1, class T2, class T3, class T4 >
@@ -152,7 +153,7 @@ public:
         SetTemplateParameter(3, template3);
         SetTemplateParameter(4, template4);
 
-        *this << identifier;
+        AddString(identifier);
     }
 
     tOutput(const tOutput &o); // copy constructor
diff --git a/src/tools/tResourceManager.cpp b/src/tools/tResourceManager.cpp
index cbcb080..31a114f 100644
--- a/src/tools/tResourceManager.cpp
+++ b/src/tools/tResourceManager.cpp
@@ -44,7 +44,7 @@ static int myHTTPFetch(const char *URI, const char *filename, const char *savepa
     }
 
     fd = fopen(savepath, "w");
-    if (fd < 0) {
+    if (fd == NULL) {
         xmlNanoHTTPClose(ctxt);
         con << tOutput( "$resource_no_write", savepath );
         return 3;
diff --git a/src/tools/tSafePTR.h b/src/tools/tSafePTR.h
index 14d5901..31bb3d6 100644
--- a/src/tools/tSafePTR.h
+++ b/src/tools/tSafePTR.h
@@ -441,12 +441,13 @@ public:
     {
 #ifdef DEBUG
         st_AddRefBreakpint( this );
-#endif        
-        tASSERT( this && refCtr_ >= 0 );
+#endif
+        tASSERT_THIS();
+        tASSERT( refCtr_ >= 0 );
         mutex_.acquire();
         ++refCtr_;
         mutex_.release();
-        tASSERT( this && refCtr_ >= 0 );
+        tASSERT( refCtr_ >= 0 );
     }
 
     void		Release		() const
@@ -455,7 +456,8 @@ public:
         st_ReleaseBreakpint( this );
 #endif        
 
-        tASSERT ( this && refCtr_ >= 0 );
+        tASSERT_THIS();
+        tASSERT ( refCtr_ >= 0 );
         mutex_.acquire();
         --refCtr_;
         bool kill = (refCtr_ <= 0);
@@ -470,13 +472,14 @@ public:
 
     int			GetRefcount	() const
     {
-        tASSERT( this );
+        tASSERT_THIS();
         return refCtr_;
     }
 protected:
     ~tReferencable()
     {
-        tASSERT( this && ( refCtr_ == -1000 || refCtr_ == 0 ) );
+        tASSERT_THIS();
+        tASSERT( ( refCtr_ == -1000 || refCtr_ == 0 ) );
         refCtr_ = -1000;
     }
 private:
diff --git a/src/ui/uInput.cpp b/src/ui/uInput.cpp
index 8161e2f..2789cf0 100644
--- a/src/ui/uInput.cpp
+++ b/src/ui/uInput.cpp
@@ -533,7 +533,8 @@ static void s_InputConfigGeneric(int ePlayer, uAction *&actions,const tOutput &t
 
     uMenu input_menu(title);
 
-    actions->tListItemBase::Sort(&Input_Compare);
+    if(actions)
+        actions->tListItemBase::Sort(&Input_Compare);
 
     int len = actions->Len();
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/armagetronad.git



More information about the Pkg-games-commits mailing list