diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-19 00:54:12 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-19 00:54:12 +0100 |
commit | 1d0c46287d508236506ee59417e8da05c0cee3e5 (patch) | |
tree | e44b4a7ad97472ca0523cff975a958a7b93982e5 /package/mpd/patches | |
parent | b668796b88da374fefa35b87f305ebcc03147e5d (diff) |
avoid autotools usage on host system
There are to many combinations of autotools on host systems.
If you need to patch the autotool buildsystem of a package
always add a autotool.patch and regenerate configure on your
host. That is the most portable way.
Diffstat (limited to 'package/mpd/patches')
-rw-r--r-- | package/mpd/patches/autotool.patch | 9293 | ||||
-rw-r--r-- | package/mpd/patches/patch-m4_lame_m4 | 20 |
2 files changed, 9293 insertions, 20 deletions
diff --git a/package/mpd/patches/autotool.patch b/package/mpd/patches/autotool.patch new file mode 100644 index 000000000..ab1aad556 --- /dev/null +++ b/package/mpd/patches/autotool.patch @@ -0,0 +1,9293 @@ +diff -Nur mpd-0.15.8.orig/aclocal.m4 mpd-0.15.8/aclocal.m4 +--- mpd-0.15.8.orig/aclocal.m4 2010-01-18 02:27:49.000000000 +0100 ++++ mpd-0.15.8/aclocal.m4 2010-02-18 23:51:59.208857762 +0100 +@@ -1,7 +1,7 @@ +-# generated automatically by aclocal 1.11 -*- Autoconf -*- ++# generated automatically by aclocal 1.9.6 -*- Autoconf -*- + + # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +-# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ++# 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. +@@ -11,15 +11,7 @@ + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. + +-m4_ifndef([AC_AUTOCONF_VERSION], +- [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +-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'.])]) +- +-# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++# Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -29,31 +21,14 @@ + # ---------------------------- + # Automake X.Y traces this macro to ensure aclocal.m4 has been + # 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.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.11], [], +- [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +-]) +- +-# _AM_AUTOCONF_VERSION(VERSION) +-# ----------------------------- +-# aclocal traces this macro to find the Autoconf version. +-# This is a private macro too. Using m4_define simplifies +-# the logic in aclocal, which can simply ignore this definition. +-m4_define([_AM_AUTOCONF_VERSION], []) ++AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"]) + + # AM_SET_CURRENT_AUTOMAKE_VERSION + # ------------------------------- +-# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +-# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. ++# Call AM_AUTOMAKE_VERSION so it can be traced. ++# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. + AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +-[AM_AUTOMAKE_VERSION([1.11])dnl +-m4_ifndef([AC_AUTOCONF_VERSION], +- [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +-_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) ++ [AM_AUTOMAKE_VERSION([1.9.6])]) + + # AM_AUX_DIR_EXPAND -*- Autoconf -*- + +@@ -110,14 +85,14 @@ + + # AM_CONDITIONAL -*- Autoconf -*- + +-# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 ++# Copyright (C) 1997, 2000, 2001, 2003, 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 9 ++# serial 7 + + # AM_CONDITIONAL(NAME, SHELL-CONDITION) + # ------------------------------------- +@@ -126,11 +101,8 @@ + [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 +-_AM_SUBST_NOTMAKE([$1_FALSE])dnl +-m4_define([_AM_COND_VALUE_$1], [$2])dnl ++AC_SUBST([$1_TRUE]) ++AC_SUBST([$1_FALSE]) + if $2; then + $1_TRUE= + $1_FALSE='#' +@@ -144,14 +116,15 @@ + Usually this means the macro was only invoked conditionally.]]) + fi])]) + +-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 ++ ++# Copyright (C) 1999, 2000, 2001, 2002, 2003, 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 10 ++# serial 8 + + # 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, +@@ -179,7 +152,6 @@ + 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=]) + +@@ -208,16 +180,6 @@ + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi +- am__universal=false +- m4_case([$1], [CC], +- [case " $depcc " in #( +- *\ -arch\ *\ -arch\ *) am__universal=true ;; +- esac], +- [CXX], +- [case " $depcc " in #( +- *\ -arch\ *\ -arch\ *) am__universal=true ;; +- esac]) +- + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and +@@ -235,17 +197,7 @@ + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + +- # 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 +- am__obj=sub/conftest.${OBJEXT-o} +- am__minus_obj="-o $am__obj" + case $depmode in +- gcc) +- # This depmode causes a compiler race in universal mode. +- test "$am__universal" = false || continue +- ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested +@@ -255,23 +207,18 @@ + break + fi + ;; +- 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} +- am__minus_obj= +- ;; + none) break ;; + esac ++ # 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. + if depmode=$depmode \ +- source=sub/conftest.c object=$am__obj \ ++ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ +- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ ++ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && +- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && +- grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ++ grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message +@@ -322,74 +269,61 @@ + AMDEPBACKSLASH='\' + fi + AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +-AC_SUBST([AMDEPBACKSLASH])dnl +-_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ++AC_SUBST([AMDEPBACKSLASH]) + ]) + + # Generate code to set up dependency tracking. -*- Autoconf -*- + +-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 ++# Copyright (C) 1999, 2000, 2001, 2002, 2003, 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 5 ++#serial 3 + + # _AM_OUTPUT_DEPENDENCY_COMMANDS + # ------------------------------ + AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +-[{ +- # 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 +- *\'*) eval set x "$CONFIG_FILES" ;; +- *) set x $CONFIG_FILES ;; +- esac +- shift +- for mf +- do +- # 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 +- # 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. +- # Grep'ing the whole file is not good either: AIX grep has a line +- # limit of 2048, but all sed's we know have understand at least 4000. +- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then +- dirpart=`AS_DIRNAME("$mf")` +- else +- continue +- fi +- # Extract the definition of DEPDIR, am__include, and am__quote +- # 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 +- 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' -e 's/\$U/'"$U"'/g'`; do +- # Make sure the directory exists. +- test -f "$dirpart/$file" && continue +- fdir=`AS_DIRNAME(["$file"])` +- AS_MKDIR_P([$dirpart/$fdir]) +- # echo "creating $dirpart/$file" +- echo '# dummy' > "$dirpart/$file" +- done ++[for mf in $CONFIG_FILES; do ++ # 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 ++ # 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. ++ # So let's grep whole file. ++ if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then ++ dirpart=`AS_DIRNAME("$mf")` ++ else ++ continue ++ fi ++ # Extract the definition of DEPDIR, am__include, and am__quote ++ # 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 ++ 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' -e 's/\$U/'"$U"'/g'`; do ++ # Make sure the directory exists. ++ test -f "$dirpart/$file" && continue ++ fdir=`AS_DIRNAME(["$file"])` ++ AS_MKDIR_P([$dirpart/$fdir]) ++ # echo "creating $dirpart/$file" ++ echo '# dummy' > "$dirpart/$file" + done +-} ++done + ])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +@@ -420,14 +354,14 @@ + + # Do all the work for Automake. -*- Autoconf -*- + +-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +-# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 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 16 ++# serial 12 + + # 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. +@@ -444,20 +378,16 @@ + # 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.62])dnl ++[AC_PREREQ([2.58])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 + AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl + AC_REQUIRE([AC_PROG_INSTALL])dnl +-if test "`cd $srcdir && pwd`" != "`pwd`"; then +- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output +- # is not polluted with repeated "-I." +- AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl +- # test to see if srcdir already configured +- if test -f $srcdir/config.status; then +- AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) +- fi ++# test to see if srcdir already configured ++if test "`cd $srcdir && pwd`" != "`pwd`" && ++ test -f $srcdir/config.status; then ++ AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi + + # test whether we have cygpath +@@ -477,9 +407,6 @@ + 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], 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 + +@@ -495,8 +422,8 @@ + 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 ++AM_PROG_INSTALL_SH ++AM_PROG_INSTALL_STRIP + AC_REQUIRE([AM_PROG_MKDIR_P])dnl + # We need awk for the "check" target. The system "awk" is bad on + # some platforms. +@@ -504,37 +431,20 @@ + AC_REQUIRE([AC_PROG_MAKE_SET])dnl + AC_REQUIRE([AM_SET_LEADING_DOT])dnl + _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], +- [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], +- [_AM_PROG_TAR([v7])])]) ++ [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], ++ [_AM_PROG_TAR([v7])])]) + _AM_IF_OPTION([no-dependencies],, + [AC_PROVIDE_IFELSE([AC_PROG_CC], +- [_AM_DEPENDENCIES(CC)], +- [define([AC_PROG_CC], +- 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)], +- [define([AC_PROG_CXX], +- defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +-AC_PROVIDE_IFELSE([AC_PROG_OBJC], +- [_AM_DEPENDENCIES(OBJC)], +- [define([AC_PROG_OBJC], +- defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ++ [_AM_DEPENDENCIES(CXX)], ++ [define([AC_PROG_CXX], ++ defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl + ]) +-_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 + ]) + +-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 +@@ -545,19 +455,18 @@ + # our stamp files there. + AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], + [# Compute $1's index in $config_headers. +-_am_arg=$1 + _am_stamp_count=1 + for _am_header in $config_headers :; do + case $_am_header in +- $_am_arg | $_am_arg:* ) ++ $1 | $1:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac + done +-echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) ++echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) + +-# Copyright (C) 2001, 2003, 2005, 2008 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, +@@ -568,14 +477,7 @@ + # Define $install_sh. + AC_DEFUN([AM_PROG_INSTALL_SH], + [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +-if test x"${install_sh}" != xset; then +- case $am_aux_dir in +- *\ * | *\ *) +- install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; +- *) +- install_sh="\${SHELL} $am_aux_dir/install-sh" +- esac +-fi ++install_sh=${install_sh-"$am_aux_dir/install-sh"} + AC_SUBST(install_sh)]) + + # Copyright (C) 2003, 2005 Free Software Foundation, Inc. +@@ -601,13 +503,13 @@ + + # Check to see how 'make' treats includes. -*- Autoconf -*- + +-# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. ++# Copyright (C) 2001, 2002, 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 4 ++# serial 3 + + # AM_MAKE_INCLUDE() + # ----------------- +@@ -616,7 +518,7 @@ + [am_make=${MAKE-make} + cat > confinc << 'END' + am__doit: +- @echo this is the am__doit target ++ @echo done + .PHONY: am__doit + END + # If we don't find an include directive, just comment out the code. +@@ -626,24 +528,24 @@ + _am_result=none + # First try GNU make style include. + echo "include confinc" > confmf +-# 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 +- am__quote= +- _am_result=GNU +- ;; +-esac ++# We grep out `Entering directory' and `Leaving directory' ++# messages which can occur if `w' ends up in MAKEFLAGS. ++# In particular we don't look at `^make:' because GNU make might ++# be invoked under some other name (usually "gmake"), in which ++# case it prints its new name instead of `make'. ++if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then ++ am__include=include ++ am__quote= ++ _am_result=GNU ++fi + # Now try BSD make style include. + if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf +- case `$am_make -s -f confmf 2> /dev/null` in #( +- *the\ am__doit\ target*) +- am__include=.include +- am__quote="\"" +- _am_result=BSD +- ;; +- esac ++ if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then ++ am__include=.include ++ am__quote="\"" ++ _am_result=BSD ++ fi + fi + AC_SUBST([am__include]) + AC_SUBST([am__quote]) +@@ -653,14 +555,14 @@ + + # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +-# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 ++# Copyright (C) 1997, 1999, 2000, 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. + +-# serial 6 ++# serial 4 + + # AM_MISSING_PROG(NAME, PROGRAM) + # ------------------------------ +@@ -676,15 +578,7 @@ + # 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 +-if test x"${MISSING+set}" != xset; then +- case $am_aux_dir in +- *\ * | *\ *) +- MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; +- *) +- MISSING="\${SHELL} $am_aux_dir/missing" ;; +- esac +-fi ++test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" + # Use eval to expand $SHELL + if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +@@ -694,7 +588,7 @@ + fi + ]) + +-# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ++# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -702,33 +596,70 @@ + + # AM_PROG_MKDIR_P + # --------------- +-# Check for `mkdir -p'. ++# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. ++# ++# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories ++# created by `make install' are always world readable, even if the ++# installer happens to have an overly restrictive umask (e.g. 077). ++# This was a mistake. There are at least two reasons why we must not ++# use `-m 0755': ++# - it causes special bits like SGID to be ignored, ++# - it may be too restrictive (some setups expect 775 directories). ++# ++# Do not use -m 0755 and let people choose whatever they expect by ++# setting umask. ++# ++# We cannot accept any implementation of `mkdir' that recognizes `-p'. ++# Some implementations (such as Solaris 8's) are not thread-safe: if a ++# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c' ++# concurrently, both version can detect that a/ is missing, but only ++# one can create it and the other will error out. Consequently we ++# restrict ourselves to GNU make (using the --version option ensures ++# this.) + 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 +-]) ++[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then ++ # We used to keeping the `.' as first argument, in order to ++ # allow $(mkdir_p) to be used without argument. As in ++ # $(mkdir_p) $(somedir) ++ # where $(somedir) is conditionally defined. However this is wrong ++ # for two reasons: ++ # 1. if the package is installed by a user who cannot write `.' ++ # make install will fail, ++ # 2. the above comment should most certainly read ++ # $(mkdir_p) $(DESTDIR)$(somedir) ++ # so it does not work when $(somedir) is undefined and ++ # $(DESTDIR) is not. ++ # To support the latter case, we have to write ++ # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), ++ # so the `.' trick is pointless. ++ mkdir_p='mkdir -p --' ++else ++ # On NextStep and OpenStep, the `mkdir' command does not ++ # recognize any option. It will interpret all options as ++ # directories to create, and then abort because `.' already ++ # exists. ++ for d in ./-p ./--version; ++ do ++ test -d $d && rmdir $d ++ done ++ # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. ++ if test -f "$ac_aux_dir/mkinstalldirs"; then ++ mkdir_p='$(mkinstalldirs)' ++ else ++ mkdir_p='$(install_sh) -d' ++ fi ++fi ++AC_SUBST([mkdir_p])]) + + # Helper functions for option handling. -*- Autoconf -*- + +-# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. ++# Copyright (C) 2001, 2002, 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 4 ++# serial 3 + + # _AM_MANGLE_OPTION(NAME) + # ----------------------- +@@ -745,7 +676,7 @@ + # ---------------------------------- + # 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)])]) ++[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + + # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) + # ------------------------------------------- +@@ -755,14 +686,14 @@ + + # Check to make sure that the build environment is sane. -*- Autoconf -*- + +-# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 ++# Copyright (C) 1996, 1997, 2000, 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. + +-# serial 5 ++# serial 4 + + # AM_SANITY_CHECK + # --------------- +@@ -771,29 +702,16 @@ + # 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]]*) +- AC_MSG_ERROR([unsafe absolute working directory name]);; +-esac +-case $srcdir in +- *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) +- AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; +-esac +- + # 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 ( +- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` ++ 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` ++ set X `ls -t $srcdir/configure conftest.file` + fi + rm -f conftest.file + if test "$[*]" != "X $srcdir/configure conftest.file" \ +@@ -843,28 +761,9 @@ + if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) + fi +-INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" ++INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" + AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +-# 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. +-# This macro is traced by Automake. +-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, 2005 Free Software Foundation, Inc. +diff -Nur mpd-0.15.8.orig/compile mpd-0.15.8/compile +--- mpd-0.15.8.orig/compile 1970-01-01 01:00:00.000000000 +0100 ++++ mpd-0.15.8/compile 2009-05-17 15:07:30.000000000 +0200 +@@ -0,0 +1,142 @@ ++#! /bin/sh ++# Wrapper for compilers which do not understand `-c -o'. ++ ++scriptversion=2005-05-14.22 ++ ++# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. ++# Written by Tom Tromey <tromey@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, 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 file is maintained in Automake, please report ++# bugs to <bug-automake@gnu.org> or send patches to ++# <automake-patches@gnu.org>. ++ ++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@gnu.org>. ++EOF ++ exit $? ++ ;; ++ -v | --v*) ++ echo "compile $scriptversion" ++ exit $? ++ ;; ++esac ++ ++ofile= ++cfile= ++eat= ++ ++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 -e 's|^.*/||' -e '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 ++ mv "$cofile" "$ofile" ++elif test -f "${cofile}bj"; then ++ 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-end: "$" ++# End: +diff -Nur mpd-0.15.8.orig/configure mpd-0.15.8/configure +--- mpd-0.15.8.orig/configure 2010-01-18 02:27:53.000000000 +0100 ++++ mpd-0.15.8/configure 2010-02-18 23:52:08.980854427 +0100 +@@ -594,9 +594,7 @@ + # include <unistd.h> + #endif" + +-ac_subst_vars='am__EXEEXT_FALSE +-am__EXEEXT_TRUE +-LTLIBOBJS ++ac_subst_vars='LTLIBOBJS + LIBOBJS + ENABLE_TEST_FALSE + ENABLE_TEST_TRUE +@@ -806,7 +804,6 @@ + SET_MAKE + AWK + mkdir_p +-MKDIR_P + INSTALL_STRIP_PROGRAM + STRIP + install_sh +@@ -818,7 +815,6 @@ + VERSION + PACKAGE + CYGPATH_W +-am__isrc + INSTALL_DATA + INSTALL_SCRIPT + INSTALL_PROGRAM +@@ -2703,8 +2699,7 @@ + + + +-am__api_version='1.11' +- ++am__api_version="1.9" + ac_aux_dir= + for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do + for ac_t in install-sh install.sh shtool; do +@@ -2826,29 +2821,16 @@ + # 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;; +-esac +-case $srcdir in +- *[\\\"\#\$\&\'\`$am_lf\ \ ]*) +- as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; +-esac +- + # 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 ( +- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` ++ 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` ++ set X `ls -t $srcdir/configure conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ +@@ -2886,14 +2868,7 @@ + # expand $ac_aux_dir to an absolute path + am_aux_dir=`cd $ac_aux_dir && pwd` + +-if test x"${MISSING+set}" != xset; then +- case $am_aux_dir in +- *\ * | *\ *) +- MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; +- *) +- MISSING="\${SHELL} $am_aux_dir/missing" ;; +- esac +-fi ++test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" + # Use eval to expand $SHELL + if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +@@ -2903,162 +2878,38 @@ + $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} + fi + +-if test x"${install_sh}" != xset; then +- case $am_aux_dir in +- *\ * | *\ *) +- install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; +- *) +- install_sh="\${SHELL} $am_aux_dir/install-sh" +- esac +-fi +- +-# 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. +-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 test "${ac_cv_prog_STRIP+set}" = set; then : +- $as_echo_n "(cached) " >&6 +-else +- if test -n "$STRIP"; then +- ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +-else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- 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 +- fi +-done +- done +-IFS=$as_save_IFS +- +-fi +-fi +-STRIP=$ac_cv_prog_STRIP +-if test -n "$STRIP"; then +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +-$as_echo "$STRIP" >&6; } +-else +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +- +-fi +-if test -z "$ac_cv_prog_STRIP"; then +- ac_ct_STRIP=$STRIP +- # Extract the first word of "strip", so it can be a program name with args. +-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 test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : +- $as_echo_n "(cached) " >&6 +-else +- if test -n "$ac_ct_STRIP"; then +- ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +-else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- 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 +- fi +-done +- done +-IFS=$as_save_IFS +- +-fi +-fi +-ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +-if test -n "$ac_ct_STRIP"; then +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +-$as_echo "$ac_ct_STRIP" >&6; } +-else +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +- if test "x$ac_ct_STRIP" = x; then +- STRIP=":" +- else +- case $cross_compiling:$ac_tool_warned in +-yes:) +-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +-ac_tool_warned=yes ;; +-esac +- STRIP=$ac_ct_STRIP +- fi +-else +- STRIP="$ac_cv_prog_STRIP" +-fi +- +-fi +-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 test "${ac_cv_path_mkdir+set}" = set; then : +- $as_echo_n "(cached) " >&6 +-else +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_prog in mkdir gmkdir; do +- for ac_exec_ext in '' $ac_executable_extensions; do +- { 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) '* | \ +- 'mkdir (fileutils) '4.1*) +- ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext +- break 3;; +- esac +- done +- done ++if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then ++ # We used to keeping the `.' as first argument, in order to ++ # allow $(mkdir_p) to be used without argument. As in ++ # $(mkdir_p) $(somedir) ++ # where $(somedir) is conditionally defined. However this is wrong ++ # for two reasons: ++ # 1. if the package is installed by a user who cannot write `.' ++ # make install will fail, ++ # 2. the above comment should most certainly read ++ # $(mkdir_p) $(DESTDIR)$(somedir) ++ # so it does not work when $(somedir) is undefined and ++ # $(DESTDIR) is not. ++ # To support the latter case, we have to write ++ # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), ++ # so the `.' trick is pointless. ++ mkdir_p='mkdir -p --' ++else ++ # On NextStep and OpenStep, the `mkdir' command does not ++ # recognize any option. It will interpret all options as ++ # directories to create, and then abort because `.' already ++ # exists. ++ for d in ./-p ./--version; ++ do ++ test -d $d && rmdir $d + done +-IFS=$as_save_IFS +- +-fi +- +- test -d ./--version && rmdir ./--version +- if test "${ac_cv_path_mkdir+set}" = set; then +- MKDIR_P="$ac_cv_path_mkdir -p" ++ # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. ++ if test -f "$ac_aux_dir/mkinstalldirs"; then ++ mkdir_p='$(mkinstalldirs)' + else +- # As a last resort, use the slow shell script. Don't cache a +- # value for MKDIR_P within a source directory, because that will +- # break other packages using the cache if that directory is +- # removed, or if the value is a relative name. +- MKDIR_P="$ac_install_sh -d" ++ mkdir_p='$(install_sh) -d' + fi + 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 +@@ -3142,14 +2993,10 @@ + fi + rmdir .tst 2>/dev/null + +-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 +- fi ++# test to see if srcdir already configured ++if test "`cd $srcdir && pwd`" != "`pwd`" && ++ test -f $srcdir/config.status; then ++ as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi + + # test whether we have cygpath +@@ -3192,6 +3039,108 @@ + + MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + ++install_sh=${install_sh-"$am_aux_dir/install-sh"} ++ ++# 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. ++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 test "${ac_cv_prog_STRIP+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ if test -n "$STRIP"; then ++ ac_cv_prog_STRIP="$STRIP" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ 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 ++ fi ++done ++ done ++IFS=$as_save_IFS ++ ++fi ++fi ++STRIP=$ac_cv_prog_STRIP ++if test -n "$STRIP"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 ++$as_echo "$STRIP" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi ++ ++ ++fi ++if test -z "$ac_cv_prog_STRIP"; then ++ ac_ct_STRIP=$STRIP ++ # Extract the first word of "strip", so it can be a program name with args. ++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 test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : ++ $as_echo_n "(cached) " >&6 ++else ++ if test -n "$ac_ct_STRIP"; then ++ ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ 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 ++ fi ++done ++ done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP ++if test -n "$ac_ct_STRIP"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 ++$as_echo "$ac_ct_STRIP" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi ++ ++ if test "x$ac_ct_STRIP" = x; then ++ STRIP=":" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ++ac_tool_warned=yes ;; ++esac ++ STRIP=$ac_ct_STRIP ++ fi ++else ++ STRIP="$ac_cv_prog_STRIP" ++fi ++ ++fi ++INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" ++ + # We need awk for the "check" target. The system "awk" is bad on + # some platforms. + # Always define AMTAR for backward compatibility. +@@ -3222,7 +3171,7 @@ + am_make=${MAKE-make} + cat > confinc << 'END' + am__doit: +- @echo this is the am__doit target ++ @echo done + .PHONY: am__doit + END + # If we don't find an include directive, just comment out the code. +@@ -3233,24 +3182,24 @@ + _am_result=none + # First try GNU make style include. + echo "include confinc" > confmf +-# 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 +- am__quote= +- _am_result=GNU +- ;; +-esac ++# We grep out `Entering directory' and `Leaving directory' ++# messages which can occur if `w' ends up in MAKEFLAGS. ++# In particular we don't look at `^make:' because GNU make might ++# be invoked under some other name (usually "gmake"), in which ++# case it prints its new name instead of `make'. ++if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then ++ am__include=include ++ am__quote= ++ _am_result=GNU ++fi + # Now try BSD make style include. + if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf +- case `$am_make -s -f confmf 2> /dev/null` in #( +- *the\ am__doit\ target*) +- am__include=.include +- am__quote="\"" +- _am_result=BSD +- ;; +- esac ++ if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then ++ am__include=.include ++ am__quote="\"" ++ _am_result=BSD ++ fi + fi + + +@@ -3267,7 +3216,9 @@ + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + fi +- if test "x$enable_dependency_tracking" != xno; then ++ ++ ++if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' + else +@@ -3276,6 +3227,7 @@ + fi + + ++ + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +@@ -4097,11 +4049,6 @@ + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi +- am__universal=false +- case " $depcc " in #( +- *\ -arch\ *\ -arch\ *) am__universal=true ;; +- esac +- + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and +@@ -4119,17 +4066,7 @@ + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + +- # 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 +- am__obj=sub/conftest.${OBJEXT-o} +- am__minus_obj="-o $am__obj" + case $depmode in +- gcc) +- # This depmode causes a compiler race in universal mode. +- test "$am__universal" = false || continue +- ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested +@@ -4139,23 +4076,18 @@ + break + fi + ;; +- 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} +- am__minus_obj= +- ;; + none) break ;; + esac ++ # 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. + if depmode=$depmode \ +- source=sub/conftest.c object=$am__obj \ ++ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ +- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ ++ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && +- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && +- grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ++ grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message +@@ -4183,7 +4115,9 @@ + $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } + CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + +- if ++ ++ ++if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= +@@ -4658,11 +4592,6 @@ + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi +- am__universal=false +- case " $depcc " in #( +- *\ -arch\ *\ -arch\ *) am__universal=true ;; +- esac +- + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and +@@ -4680,17 +4609,7 @@ + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + +- # 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 +- am__obj=sub/conftest.${OBJEXT-o} +- am__minus_obj="-o $am__obj" + case $depmode in +- gcc) +- # This depmode causes a compiler race in universal mode. +- test "$am__universal" = false || continue +- ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested +@@ -4700,23 +4619,18 @@ + break + fi + ;; +- 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} +- am__minus_obj= +- ;; + none) break ;; + esac ++ # 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. + if depmode=$depmode \ +- source=sub/conftest.c object=$am__obj \ ++ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ +- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ ++ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && +- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && +- grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ++ grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message +@@ -4744,7 +4658,9 @@ + $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } + CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + +- if ++ ++ ++if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= +@@ -6037,7 +5953,9 @@ + + fi + +- if test x$enable_cue = xyes; then ++ ++ ++if test x$enable_cue = xyes; then + HAVE_CUE_TRUE= + HAVE_CUE_FALSE='#' + else +@@ -6217,7 +6135,9 @@ + fi + fi + +- if test x$with_zeroconf != xno; then ++ ++ ++if test x$with_zeroconf != xno; then + HAVE_ZEROCONF_TRUE= + HAVE_ZEROCONF_FALSE='#' + else +@@ -6225,7 +6145,9 @@ + HAVE_ZEROCONF_FALSE= + fi + +- if test x$with_zeroconf = xavahi; then ++ ++ ++if test x$with_zeroconf = xavahi; then + HAVE_AVAHI_TRUE= + HAVE_AVAHI_FALSE='#' + else +@@ -6233,7 +6155,9 @@ + HAVE_AVAHI_FALSE= + fi + +- if test x$with_zeroconf = xbonjour; then ++ ++ ++if test x$with_zeroconf = xbonjour; then + HAVE_BONJOUR_TRUE= + HAVE_BONJOUR_FALSE='#' + else +@@ -6370,7 +6294,9 @@ + + fi + +- if test x$enable_sqlite = xyes; then ++ ++ ++if test x$enable_sqlite = xyes; then + ENABLE_SQLITE_TRUE= + ENABLE_SQLITE_FALSE='#' + else +@@ -6508,7 +6434,9 @@ + $as_echo "#define HAVE_CURL 1" >>confdefs.h + + fi +- if test x$enable_curl = xyes; then ++ ++ ++if test x$enable_curl = xyes; then + HAVE_CURL_TRUE= + HAVE_CURL_FALSE='#' + else +@@ -6534,7 +6462,9 @@ + $as_echo "#define ENABLE_LASTFM 1" >>confdefs.h + + fi +- if test x$enable_lastfm = xyes; then ++ ++ ++if test x$enable_lastfm = xyes; then + ENABLE_LASTFM_TRUE= + ENABLE_LASTFM_FALSE='#' + else +@@ -6670,7 +6600,9 @@ + $as_echo "#define ENABLE_MMS 1" >>confdefs.h + + fi +- if test x$enable_mms = xyes; then ++ ++ ++if test x$enable_mms = xyes; then + ENABLE_MMS_TRUE= + ENABLE_MMS_FALSE='#' + else +@@ -6734,7 +6666,9 @@ + + fi + +- if test x$enable_bzip2 = xyes; then ++ ++ ++if test x$enable_bzip2 = xyes; then + HAVE_BZ2_TRUE= + HAVE_BZ2_FALSE='#' + else +@@ -6871,7 +6805,9 @@ + + + +- if test x$enable_zip = xyes; then ++ ++ ++if test x$enable_zip = xyes; then + HAVE_ZIP_TRUE= + HAVE_ZIP_FALSE='#' + else +@@ -7008,7 +6944,9 @@ + + + +- if test x$enable_iso9660 = xyes; then ++ ++ ++if test x$enable_iso9660 = xyes; then + HAVE_ISO_TRUE= + HAVE_ISO_FALSE='#' + else +@@ -7034,7 +6972,9 @@ + enable_archive=no + fi + +- if test x$enable_archive = xyes; then ++ ++ ++if test x$enable_archive = xyes; then + ENABLE_ARCHIVE_TRUE= + ENABLE_ARCHIVE_FALSE='#' + else +@@ -7209,7 +7149,9 @@ + $as_echo "#define HAVE_MAD 1" >>confdefs.h + + fi +- if test x$enable_mad = xyes; then ++ ++ ++if test x$enable_mad = xyes; then + HAVE_MAD_TRUE= + HAVE_MAD_FALSE='#' + else +@@ -7280,7 +7222,9 @@ + fi + fi + +- if test x$enable_mikmod = xyes; then ++ ++ ++if test x$enable_mikmod = xyes; then + ENABLE_MIKMOD_DECODER_TRUE= + ENABLE_MIKMOD_DECODER_FALSE='#' + else +@@ -7436,7 +7380,9 @@ + fi + + +- if test x$enable_modplug = xyes; then ++ ++ ++if test x$enable_modplug = xyes; then + HAVE_MODPLUG_TRUE= + HAVE_MODPLUG_FALSE='#' + else +@@ -7695,7 +7641,9 @@ + + fi + +- if test x$enable_sidplay = xyes; then ++ ++ ++if test x$enable_sidplay = xyes; then + ENABLE_SIDPLAY_TRUE= + ENABLE_SIDPLAY_FALSE='#' + else +@@ -7936,7 +7884,9 @@ + fi + fi + +- if test x$enable_lsr = xyes; then ++ ++ ++if test x$enable_lsr = xyes; then + HAVE_LIBSAMPLERATE_TRUE= + HAVE_LIBSAMPLERATE_FALSE='#' + else +@@ -8101,7 +8051,9 @@ + + fi + +- if test x$enable_ao = xyes; then ++ ++ ++if test x$enable_ao = xyes; then + HAVE_AO_TRUE= + HAVE_AO_FALSE='#' + else +@@ -8131,7 +8083,9 @@ + $as_echo "#define ENABLE_PIPE_OUTPUT 1" >>confdefs.h + + fi +- if test x$enable_pipe_output = xyes; then ++ ++ ++if test x$enable_pipe_output = xyes; then + ENABLE_PIPE_OUTPUT_TRUE= + ENABLE_PIPE_OUTPUT_FALSE='#' + else +@@ -8288,7 +8242,9 @@ + LIBS=$old_LIBS + fi + +- if test x$enable_jack = xyes; then ++ ++ ++if test x$enable_jack = xyes; then + HAVE_JACK_TRUE= + HAVE_JACK_FALSE='#' + else +@@ -8441,7 +8397,9 @@ + + fi + +- if test x$enable_pulse = xyes; then ++ ++ ++if test x$enable_pulse = xyes; then + HAVE_PULSE_TRUE= + HAVE_PULSE_FALSE='#' + else +@@ -8468,7 +8426,9 @@ + enable_osx=yes ;; + esac + +- if test x$enable_osx = xyes; then ++ ++ ++if test x$enable_osx = xyes; then + HAVE_OSX_TRUE= + HAVE_OSX_FALSE='#' + else +@@ -8617,7 +8577,9 @@ + ;; + esac + +- if test x$enable_solaris_output = xyes; then ++ ++ ++if test x$enable_solaris_output = xyes; then + ENABLE_SOLARIS_OUTPUT_TRUE= + ENABLE_SOLARIS_OUTPUT_FALSE='#' + else +@@ -8641,7 +8603,9 @@ + + fi + +- if test x$enable_oss = xyes; then ++ ++ ++if test x$enable_oss = xyes; then + HAVE_OSS_TRUE= + HAVE_OSS_FALSE='#' + else +@@ -8663,7 +8627,9 @@ + + fi + +- if test x$enable_fifo = xyes; then ++ ++ ++if test x$enable_fifo = xyes; then + HAVE_FIFO_TRUE= + HAVE_FIFO_FALSE='#' + else +@@ -8678,7 +8644,9 @@ + + fi + +- if test x$enable_mvp = xyes; then ++ ++ ++if test x$enable_mvp = xyes; then + HAVE_MVP_TRUE= + HAVE_MVP_FALSE='#' + else +@@ -8808,7 +8776,9 @@ + + fi + +- if test x$enable_alsa = xyes; then ++ ++ ++if test x$enable_alsa = xyes; then + HAVE_ALSA_TRUE= + HAVE_ALSA_FALSE='#' + else +@@ -8979,7 +8949,9 @@ + + fi + +- if test x$enable_id3 = xyes; then ++ ++ ++if test x$enable_id3 = xyes; then + HAVE_ID3TAG_TRUE= + HAVE_ID3TAG_FALSE='#' + else +@@ -9081,7 +9053,9 @@ + CPPFLAGS=$oldcppflags + fi + +- if test x$enable_mpc = xyes; then ++ ++ ++if test x$enable_mpc = xyes; then + HAVE_MPCDEC_TRUE= + HAVE_MPCDEC_FALSE='#' + else +@@ -9169,7 +9143,9 @@ + fi + fi + +- if test x$enable_wavpack = xyes; then ++ ++ ++if test x$enable_wavpack = xyes; then + HAVE_WAVPACK_TRUE= + HAVE_WAVPACK_FALSE='#' + else +@@ -9612,7 +9588,9 @@ + fi + + +- if test x$enable_aac = xyes; then ++ ++ ++if test x$enable_aac = xyes; then + HAVE_FAAD_TRUE= + HAVE_FAAD_FALSE='#' + else +@@ -9621,7 +9599,9 @@ + fi + + +- if test x$enable_mp4 = xyes; then ++ ++ ++if test x$enable_mp4 = xyes; then + HAVE_MP4_TRUE= + HAVE_MP4_FALSE='#' + else +@@ -9773,7 +9753,9 @@ + fi + fi + +- if test x$enable_vorbis = xyes; then ++ ++ ++if test x$enable_vorbis = xyes; then + ENABLE_VORBIS_DECODER_TRUE= + ENABLE_VORBIS_DECODER_FALSE='#' + else +@@ -9887,7 +9869,9 @@ + LIBS="$oldlibs" + fi + +- if test x$enable_flac = xyes; then ++ ++ ++if test x$enable_flac = xyes; then + HAVE_FLAC_TRUE= + HAVE_FLAC_FALSE='#' + else +@@ -10059,7 +10043,9 @@ + + fi + +- if test x$enable_oggflac = xyes; then ++ ++ ++if test x$enable_oggflac = xyes; then + HAVE_OGGFLAC_TRUE= + HAVE_OGGFLAC_FALSE='#' + else +@@ -10068,7 +10054,9 @@ + fi + + +- if test x$enable_flac = xyes || test x$enable_oggflac = xyes; then ++ ++ ++if test x$enable_flac = xyes || test x$enable_oggflac = xyes; then + HAVE_FLAC_COMMON_TRUE= + HAVE_FLAC_COMMON_FALSE='#' + else +@@ -10076,7 +10064,9 @@ + HAVE_FLAC_COMMON_FALSE= + fi + +- if test x$enable_vorbis = xyes || test x$enable_oggflac = xyes || test x$enable_flac = xyes; then ++ ++ ++if test x$enable_vorbis = xyes || test x$enable_oggflac = xyes || test x$enable_flac = xyes; then + HAVE_OGG_COMMON_TRUE= + HAVE_OGG_COMMON_FALSE='#' + else +@@ -10161,7 +10151,9 @@ + fi + fi + +- if test x$enable_audiofile = xyes; then ++ ++ ++if test x$enable_audiofile = xyes; then + HAVE_AUDIOFILE_TRUE= + HAVE_AUDIOFILE_FALSE='#' + else +@@ -10362,7 +10354,9 @@ + + fi + +- if test x$enable_ffmpeg = xyes; then ++ ++ ++if test x$enable_ffmpeg = xyes; then + HAVE_FFMPEG_TRUE= + HAVE_FFMPEG_FALSE='#' + else +@@ -10447,7 +10441,9 @@ + fi + fi + +- if test x$enable_fluidsynth = xyes; then ++ ++ ++if test x$enable_fluidsynth = xyes; then + ENABLE_FLUIDSYNTH_TRUE= + ENABLE_FLUIDSYNTH_FALSE='#' + else +@@ -10522,7 +10518,9 @@ + + fi + +- if test x$enable_wildmidi = xyes; then ++ ++ ++if test x$enable_wildmidi = xyes; then + ENABLE_WILDMIDI_TRUE= + ENABLE_WILDMIDI_FALSE='#' + else +@@ -10694,8 +10692,6 @@ + LAME_LIBS="-L$lame_libraries" + elif test "x$lame_prefix" != "x" ; then + LAME_LIBS="-L$lame_prefix/lib" +- elif test "x$prefix" != "xNONE" ; then +- LAME_LIBS="-L$prefix/lib" + fi + + LAME_LIBS="$LAME_LIBS -lmp3lame -lm" +@@ -10704,8 +10700,6 @@ + LAME_CFLAGS="-I$lame_includes" + elif test "x$lame_prefix" != "x" ; then + LAME_CFLAGS="-I$lame_prefix/include" +- elif test "x$prefix" != "xNONE"; then +- LAME_CFLAGS="-I$prefix/include" + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for liblame" >&5 +@@ -10890,7 +10884,9 @@ + fi + fi + +- if test x$enable_shout = xyes; then ++ ++ ++if test x$enable_shout = xyes; then + HAVE_SHOUT_TRUE= + HAVE_SHOUT_FALSE='#' + else +@@ -10904,7 +10900,9 @@ + + fi + +- if test x$enable_httpd_output = xyes; then ++ ++ ++if test x$enable_httpd_output = xyes; then + ENABLE_HTTPD_OUTPUT_TRUE= + ENABLE_HTTPD_OUTPUT_FALSE='#' + else +@@ -10918,7 +10916,9 @@ + + fi + +- if test x$enable_encoder = xyes; then ++ ++ ++if test x$enable_encoder = xyes; then + ENABLE_ENCODER_TRUE= + ENABLE_ENCODER_FALSE='#' + else +@@ -10927,7 +10927,9 @@ + fi + + +- if test x$enable_vorbis_encoder = xyes; then ++ ++ ++if test x$enable_vorbis_encoder = xyes; then + ENABLE_VORBIS_ENCODER_TRUE= + ENABLE_VORBIS_ENCODER_FALSE='#' + else +@@ -10941,7 +10943,9 @@ + + fi + +- if test x$enable_lame_encoder = xyes; then ++ ++ ++if test x$enable_lame_encoder = xyes; then + ENABLE_LAME_ENCODER_TRUE= + ENABLE_LAME_ENCODER_FALSE='#' + else +@@ -11007,7 +11011,9 @@ + + + +- if test x$XMLTO != x; then ++ ++ ++if test x$XMLTO != x; then + HAVE_XMLTO_TRUE= + HAVE_XMLTO_FALSE='#' + else +@@ -11062,7 +11068,9 @@ + + + else +- if false; then ++ ++ ++if false; then + HAVE_XMLTO_TRUE= + HAVE_XMLTO_FALSE='#' + else +@@ -11072,7 +11080,9 @@ + + fi + +- if test x$enable_documentation = xyes; then ++ ++ ++if test x$enable_documentation = xyes; then + ENABLE_DOCUMENTATION_TRUE= + ENABLE_DOCUMENTATION_FALSE='#' + else +@@ -11129,7 +11139,9 @@ + fi + + +- if test "x$enable_test" = xyes; then ++ ++ ++if test "x$enable_test" = xyes; then + ENABLE_TEST_TRUE= + ENABLE_TEST_FALSE='#' + else +@@ -11925,14 +11937,6 @@ + LTLIBOBJS=$ac_ltlibobjs + + +- if test -n "$EXEEXT"; then +- am__EXEEXT_TRUE= +- am__EXEEXT_FALSE='#' +-else +- am__EXEEXT_TRUE='#' +- am__EXEEXT_FALSE= +-fi +- + if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + as_fn_error "conditional \"AMDEP\" was never defined. + Usually this means the macro was only invoked conditionally." "$LINENO" 5 +@@ -12630,7 +12634,6 @@ + ac_pwd='$ac_pwd' + srcdir='$srcdir' + INSTALL='$INSTALL' +-MKDIR_P='$MKDIR_P' + AWK='$AWK' + test -n "\$AWK" || AWK=awk + _ACEOF +@@ -13183,11 +13186,6 @@ + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac +- ac_MKDIR_P=$MKDIR_P +- case $MKDIR_P in +- [\\/$]* | ?:[\\/]* ) ;; +- */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; +- esac + _ACEOF + + cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +@@ -13242,7 +13240,6 @@ + s&@abs_builddir@&$ac_abs_builddir&;t t + s&@abs_top_builddir@&$ac_abs_top_builddir&;t t + s&@INSTALL@&$ac_INSTALL&;t t +-s&@MKDIR_P@&$ac_MKDIR_P&;t t + $ac_datarootdir_hack + " + eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ +@@ -13287,22 +13284,21 @@ + || as_fn_error "could not create -" "$LINENO" 5 + fi + # Compute "$ac_file"'s index in $config_headers. +-_am_arg="$ac_file" + _am_stamp_count=1 + for _am_header in $config_headers :; do + case $_am_header in +- $_am_arg | $_am_arg:* ) ++ "$ac_file" | "$ac_file":* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac + done +-echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +-$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$_am_arg" : 'X\(//\)[^/]' \| \ +- X"$_am_arg" : 'X\(//\)$' \| \ +- X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +-$as_echo X"$_am_arg" | ++echo "timestamp for "$ac_file"" >`$as_dirname -- "$ac_file" || ++$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$ac_file" : 'X\(//\)[^/]' \| \ ++ X"$ac_file" : 'X\(//\)$' \| \ ++ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -13329,28 +13325,17 @@ + + + case $ac_file$ac_mode in +- "depfiles":C) test x"$AMDEP_TRUE" != x"" || { +- # 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 +- *\'*) eval set x "$CONFIG_FILES" ;; +- *) set x $CONFIG_FILES ;; +- esac +- shift +- for mf +- do +- # 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 +- # 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. +- # Grep'ing the whole file is not good either: AIX grep has a line +- # limit of 2048, but all sed's we know have understand at least 4000. +- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then +- dirpart=`$as_dirname -- "$mf" || ++ "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do ++ # 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 ++ # 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. ++ # So let's grep whole file. ++ if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then ++ dirpart=`$as_dirname -- "$mf" || + $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ +@@ -13373,28 +13358,28 @@ + q + } + s/.*/./; q'` +- else +- continue +- fi +- # Extract the definition of DEPDIR, am__include, and am__quote +- # 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 +- 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' -e 's/\$U/'"$U"'/g'`; do +- # Make sure the directory exists. +- test -f "$dirpart/$file" && continue +- fdir=`$as_dirname -- "$file" || ++ else ++ continue ++ fi ++ # Extract the definition of DEPDIR, am__include, and am__quote ++ # 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 ++ 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' -e 's/\$U/'"$U"'/g'`; do ++ # Make sure the directory exists. ++ test -f "$dirpart/$file" && continue ++ fdir=`$as_dirname -- "$file" || + $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ +@@ -13417,12 +13402,11 @@ + q + } + s/.*/./; q'` +- as_dir=$dirpart/$fdir; as_fn_mkdir_p +- # echo "creating $dirpart/$file" +- echo '# dummy' > "$dirpart/$file" +- done ++ as_dir=$dirpart/$fdir; as_fn_mkdir_p ++ # echo "creating $dirpart/$file" ++ echo '# dummy' > "$dirpart/$file" + done +-} ++done + ;; + + esac +diff -Nur mpd-0.15.8.orig/m4/lame.m4 mpd-0.15.8/m4/lame.m4 +--- mpd-0.15.8.orig/m4/lame.m4 2010-01-18 02:26:47.000000000 +0100 ++++ mpd-0.15.8/m4/lame.m4 2010-02-18 23:51:50.532978603 +0100 +@@ -25,8 +25,6 @@ + LAME_LIBS="-L$lame_libraries" + elif test "x$lame_prefix" != "x" ; then + LAME_LIBS="-L$lame_prefix/lib" +- elif test "x$prefix" != "xNONE" ; then +- LAME_LIBS="-L$prefix/lib" + fi + + LAME_LIBS="$LAME_LIBS -lmp3lame -lm" +@@ -35,8 +33,6 @@ + LAME_CFLAGS="-I$lame_includes" + elif test "x$lame_prefix" != "x" ; then + LAME_CFLAGS="-I$lame_prefix/include" +- elif test "x$prefix" != "xNONE"; then +- LAME_CFLAGS="-I$prefix/include" + fi + + AC_MSG_CHECKING(for liblame) +diff -Nur mpd-0.15.8.orig/Makefile.in mpd-0.15.8/Makefile.in +--- mpd-0.15.8.orig/Makefile.in 2010-01-18 02:27:53.000000000 +0100 ++++ mpd-0.15.8/Makefile.in 2010-02-18 23:52:07.512856269 +0100 +@@ -1,9 +1,8 @@ +-# Makefile.in generated by automake 1.11 from Makefile.am. ++# Makefile.in generated by automake 1.9.6 from Makefile.am. + # @configure_input@ + + # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +-# Inc. ++# 2003, 2004, 2005 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,12 +15,15 @@ + @SET_MAKE@ + + ++srcdir = @srcdir@ ++top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ +-pkgincludedir = $(includedir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ +-pkglibexecdir = $(libexecdir)/@PACKAGE@ ++pkgincludedir = $(includedir)/@PACKAGE@ ++top_builddir = . + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd ++INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -111,11 +113,11 @@ + @ENABLE_TEST_TRUE@ test/software_volume$(EXEEXT) \ + @ENABLE_TEST_TRUE@ $(am__EXEEXT_1) + @ENABLE_ENCODER_TRUE@@ENABLE_TEST_TRUE@am__append_50 = test/run_encoder +-subdir = . + DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(srcdir)/config.h.in \ +- $(top_srcdir)/configure AUTHORS COPYING INSTALL NEWS \ ++ $(top_srcdir)/configure AUTHORS COPYING INSTALL NEWS compile \ + config.guess config.sub depcomp install-sh missing ++subdir = . + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 + am__aclocal_m4_deps = $(top_srcdir)/m4/faad.m4 \ + $(top_srcdir)/m4/lame.m4 $(top_srcdir)/m4/libOggFLAC.m4 \ +@@ -125,15 +127,15 @@ + am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) + am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ +- configure.lineno config.status.lineno ++ configure.lineno configure.status.lineno + mkinstalldirs = $(install_sh) -d + CONFIG_HEADER = config.h + CONFIG_CLEAN_FILES = +-CONFIG_CLEAN_VPATH_FILES = + am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" \ + "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(developerdir)" \ + "$(DESTDIR)$(docdir)" "$(DESTDIR)$(protocoldir)" \ + "$(DESTDIR)$(userdir)" ++binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) + @ENABLE_ENCODER_TRUE@@ENABLE_TEST_TRUE@am__EXEEXT_1 = test/run_encoder$(EXEEXT) + PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) + am__src_mpd_SOURCES_DIST = src/notify.h src/ack.h src/audio.h \ +@@ -775,10 +777,9 @@ + test_software_volume_OBJECTS = $(am_test_software_volume_OBJECTS) + @ENABLE_TEST_TRUE@test_software_volume_DEPENDENCIES = \ + @ENABLE_TEST_TRUE@ $(am__DEPENDENCIES_1) +-DEFAULT_INCLUDES = -I.@am__isrc@ ++DEFAULT_INCLUDES = -I. -I$(srcdir) -I. + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles +-am__mv = mv -f + COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) + CCLD = $(CC) +@@ -802,31 +803,20 @@ + $(am__test_run_input_SOURCES_DIST) \ + $(am__test_run_output_SOURCES_DIST) \ + $(am__test_software_volume_SOURCES_DIST) ++man1dir = $(mandir)/man1 ++man5dir = $(mandir)/man5 ++NROFF = nroff ++MANS = $(man_MANS) + am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; + am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +-am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +-am__install_max = 40 +-am__nobase_strip_setup = \ +- srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +-am__nobase_strip = \ +- for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +-am__nobase_list = $(am__nobase_strip_setup); \ +- for p in $$list; do echo "$$p $$p"; done | \ +- sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ +- $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ +- if (++n[$$2] == $(am__install_max)) \ +- { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ +- END { for (dir in files) print dir, files[dir] }' +-am__base_list = \ +- sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ +- sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +-man1dir = $(mandir)/man1 +-man5dir = $(mandir)/man5 +-NROFF = nroff +-MANS = $(man_MANS) ++am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; ++developerDATA_INSTALL = $(INSTALL_DATA) ++docDATA_INSTALL = $(INSTALL_DATA) ++protocolDATA_INSTALL = $(INSTALL_DATA) ++userDATA_INSTALL = $(INSTALL_DATA) + DATA = $(developer_DATA) $(doc_DATA) $(protocol_DATA) $(user_DATA) + ETAGS = etags + CTAGS = ctags +@@ -834,9 +824,9 @@ + distdir = $(PACKAGE)-$(VERSION) + top_distdir = $(distdir) + am__remove_distdir = \ +- { test ! -d "$(distdir)" \ +- || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ +- && rm -fr "$(distdir)"; }; } ++ { test ! -d $(distdir) \ ++ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ ++ && rm -fr $(distdir); }; } + DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 + GZIP_ENV = --best + distuninstallcheck_listfiles = find . -type f -print +@@ -844,6 +834,8 @@ + ACLOCAL = @ACLOCAL@ + ALSA_CFLAGS = @ALSA_CFLAGS@ + ALSA_LIBS = @ALSA_LIBS@ ++AMDEP_FALSE = @AMDEP_FALSE@ ++AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ + AM_CFLAGS = @AM_CFLAGS@ + AO_CFLAGS = @AO_CFLAGS@ +@@ -876,6 +868,40 @@ + ECHO_N = @ECHO_N@ + ECHO_T = @ECHO_T@ + EGREP = @EGREP@ ++ENABLE_ARCHIVE_FALSE = @ENABLE_ARCHIVE_FALSE@ ++ENABLE_ARCHIVE_TRUE = @ENABLE_ARCHIVE_TRUE@ ++ENABLE_DOCUMENTATION_FALSE = @ENABLE_DOCUMENTATION_FALSE@ ++ENABLE_DOCUMENTATION_TRUE = @ENABLE_DOCUMENTATION_TRUE@ ++ENABLE_ENCODER_FALSE = @ENABLE_ENCODER_FALSE@ ++ENABLE_ENCODER_TRUE = @ENABLE_ENCODER_TRUE@ ++ENABLE_FLUIDSYNTH_FALSE = @ENABLE_FLUIDSYNTH_FALSE@ ++ENABLE_FLUIDSYNTH_TRUE = @ENABLE_FLUIDSYNTH_TRUE@ ++ENABLE_HTTPD_OUTPUT_FALSE = @ENABLE_HTTPD_OUTPUT_FALSE@ ++ENABLE_HTTPD_OUTPUT_TRUE = @ENABLE_HTTPD_OUTPUT_TRUE@ ++ENABLE_LAME_ENCODER_FALSE = @ENABLE_LAME_ENCODER_FALSE@ ++ENABLE_LAME_ENCODER_TRUE = @ENABLE_LAME_ENCODER_TRUE@ ++ENABLE_LASTFM_FALSE = @ENABLE_LASTFM_FALSE@ ++ENABLE_LASTFM_TRUE = @ENABLE_LASTFM_TRUE@ ++ENABLE_MIKMOD_DECODER_FALSE = @ENABLE_MIKMOD_DECODER_FALSE@ ++ENABLE_MIKMOD_DECODER_TRUE = @ENABLE_MIKMOD_DECODER_TRUE@ ++ENABLE_MMS_FALSE = @ENABLE_MMS_FALSE@ ++ENABLE_MMS_TRUE = @ENABLE_MMS_TRUE@ ++ENABLE_PIPE_OUTPUT_FALSE = @ENABLE_PIPE_OUTPUT_FALSE@ ++ENABLE_PIPE_OUTPUT_TRUE = @ENABLE_PIPE_OUTPUT_TRUE@ ++ENABLE_SIDPLAY_FALSE = @ENABLE_SIDPLAY_FALSE@ ++ENABLE_SIDPLAY_TRUE = @ENABLE_SIDPLAY_TRUE@ ++ENABLE_SOLARIS_OUTPUT_FALSE = @ENABLE_SOLARIS_OUTPUT_FALSE@ ++ENABLE_SOLARIS_OUTPUT_TRUE = @ENABLE_SOLARIS_OUTPUT_TRUE@ ++ENABLE_SQLITE_FALSE = @ENABLE_SQLITE_FALSE@ ++ENABLE_SQLITE_TRUE = @ENABLE_SQLITE_TRUE@ ++ENABLE_TEST_FALSE = @ENABLE_TEST_FALSE@ ++ENABLE_TEST_TRUE = @ENABLE_TEST_TRUE@ ++ENABLE_VORBIS_DECODER_FALSE = @ENABLE_VORBIS_DECODER_FALSE@ ++ENABLE_VORBIS_DECODER_TRUE = @ENABLE_VORBIS_DECODER_TRUE@ ++ENABLE_VORBIS_ENCODER_FALSE = @ENABLE_VORBIS_ENCODER_FALSE@ ++ENABLE_VORBIS_ENCODER_TRUE = @ENABLE_VORBIS_ENCODER_TRUE@ ++ENABLE_WILDMIDI_FALSE = @ENABLE_WILDMIDI_FALSE@ ++ENABLE_WILDMIDI_TRUE = @ENABLE_WILDMIDI_TRUE@ + EXEEXT = @EXEEXT@ + FFMPEG_CFLAGS = @FFMPEG_CFLAGS@ + FFMPEG_LIBS = @FFMPEG_LIBS@ +@@ -886,9 +912,72 @@ + GLIB_CFLAGS = @GLIB_CFLAGS@ + GLIB_LIBS = @GLIB_LIBS@ + GREP = @GREP@ ++HAVE_ALSA_FALSE = @HAVE_ALSA_FALSE@ ++HAVE_ALSA_TRUE = @HAVE_ALSA_TRUE@ ++HAVE_AO_FALSE = @HAVE_AO_FALSE@ ++HAVE_AO_TRUE = @HAVE_AO_TRUE@ ++HAVE_AUDIOFILE_FALSE = @HAVE_AUDIOFILE_FALSE@ ++HAVE_AUDIOFILE_TRUE = @HAVE_AUDIOFILE_TRUE@ ++HAVE_AVAHI_FALSE = @HAVE_AVAHI_FALSE@ ++HAVE_AVAHI_TRUE = @HAVE_AVAHI_TRUE@ ++HAVE_BONJOUR_FALSE = @HAVE_BONJOUR_FALSE@ ++HAVE_BONJOUR_TRUE = @HAVE_BONJOUR_TRUE@ ++HAVE_BZ2_FALSE = @HAVE_BZ2_FALSE@ ++HAVE_BZ2_TRUE = @HAVE_BZ2_TRUE@ ++HAVE_CUE_FALSE = @HAVE_CUE_FALSE@ ++HAVE_CUE_TRUE = @HAVE_CUE_TRUE@ ++HAVE_CURL_FALSE = @HAVE_CURL_FALSE@ ++HAVE_CURL_TRUE = @HAVE_CURL_TRUE@ ++HAVE_FAAD_FALSE = @HAVE_FAAD_FALSE@ ++HAVE_FAAD_TRUE = @HAVE_FAAD_TRUE@ ++HAVE_FFMPEG_FALSE = @HAVE_FFMPEG_FALSE@ ++HAVE_FFMPEG_TRUE = @HAVE_FFMPEG_TRUE@ ++HAVE_FIFO_FALSE = @HAVE_FIFO_FALSE@ ++HAVE_FIFO_TRUE = @HAVE_FIFO_TRUE@ ++HAVE_FLAC_COMMON_FALSE = @HAVE_FLAC_COMMON_FALSE@ ++HAVE_FLAC_COMMON_TRUE = @HAVE_FLAC_COMMON_TRUE@ ++HAVE_FLAC_FALSE = @HAVE_FLAC_FALSE@ ++HAVE_FLAC_TRUE = @HAVE_FLAC_TRUE@ ++HAVE_ID3TAG_FALSE = @HAVE_ID3TAG_FALSE@ ++HAVE_ID3TAG_TRUE = @HAVE_ID3TAG_TRUE@ ++HAVE_ISO_FALSE = @HAVE_ISO_FALSE@ ++HAVE_ISO_TRUE = @HAVE_ISO_TRUE@ ++HAVE_JACK_FALSE = @HAVE_JACK_FALSE@ ++HAVE_JACK_TRUE = @HAVE_JACK_TRUE@ ++HAVE_LIBSAMPLERATE_FALSE = @HAVE_LIBSAMPLERATE_FALSE@ ++HAVE_LIBSAMPLERATE_TRUE = @HAVE_LIBSAMPLERATE_TRUE@ ++HAVE_MAD_FALSE = @HAVE_MAD_FALSE@ ++HAVE_MAD_TRUE = @HAVE_MAD_TRUE@ ++HAVE_MODPLUG_FALSE = @HAVE_MODPLUG_FALSE@ ++HAVE_MODPLUG_TRUE = @HAVE_MODPLUG_TRUE@ ++HAVE_MP4_FALSE = @HAVE_MP4_FALSE@ ++HAVE_MP4_TRUE = @HAVE_MP4_TRUE@ ++HAVE_MPCDEC_FALSE = @HAVE_MPCDEC_FALSE@ ++HAVE_MPCDEC_TRUE = @HAVE_MPCDEC_TRUE@ ++HAVE_MVP_FALSE = @HAVE_MVP_FALSE@ ++HAVE_MVP_TRUE = @HAVE_MVP_TRUE@ ++HAVE_OGGFLAC_FALSE = @HAVE_OGGFLAC_FALSE@ ++HAVE_OGGFLAC_TRUE = @HAVE_OGGFLAC_TRUE@ ++HAVE_OGG_COMMON_FALSE = @HAVE_OGG_COMMON_FALSE@ ++HAVE_OGG_COMMON_TRUE = @HAVE_OGG_COMMON_TRUE@ ++HAVE_OSS_FALSE = @HAVE_OSS_FALSE@ ++HAVE_OSS_TRUE = @HAVE_OSS_TRUE@ ++HAVE_OSX_FALSE = @HAVE_OSX_FALSE@ ++HAVE_OSX_TRUE = @HAVE_OSX_TRUE@ ++HAVE_PULSE_FALSE = @HAVE_PULSE_FALSE@ ++HAVE_PULSE_TRUE = @HAVE_PULSE_TRUE@ ++HAVE_SHOUT_FALSE = @HAVE_SHOUT_FALSE@ ++HAVE_SHOUT_TRUE = @HAVE_SHOUT_TRUE@ ++HAVE_WAVPACK_FALSE = @HAVE_WAVPACK_FALSE@ ++HAVE_WAVPACK_TRUE = @HAVE_WAVPACK_TRUE@ ++HAVE_XMLTO_FALSE = @HAVE_XMLTO_FALSE@ ++HAVE_XMLTO_TRUE = @HAVE_XMLTO_TRUE@ ++HAVE_ZEROCONF_FALSE = @HAVE_ZEROCONF_FALSE@ ++HAVE_ZEROCONF_TRUE = @HAVE_ZEROCONF_TRUE@ ++HAVE_ZIP_FALSE = @HAVE_ZIP_FALSE@ ++HAVE_ZIP_TRUE = @HAVE_ZIP_TRUE@ + ID3TAG_CFLAGS = @ID3TAG_CFLAGS@ + ID3TAG_LIBS = @ID3TAG_LIBS@ +-INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -911,7 +1000,6 @@ + MAD_CFLAGS = @MAD_CFLAGS@ + MAD_LIBS = @MAD_LIBS@ + MAKEINFO = @MAKEINFO@ +-MKDIR_P = @MKDIR_P@ + MMS_CFLAGS = @MMS_CFLAGS@ + MMS_LIBS = @MMS_LIBS@ + MODPLUG_CFLAGS = @MODPLUG_CFLAGS@ +@@ -958,12 +1046,12 @@ + XMLTO = @XMLTO@ + ZZIP_CFLAGS = @ZZIP_CFLAGS@ + ZZIP_LIBS = @ZZIP_LIBS@ +-abs_builddir = @abs_builddir@ +-abs_srcdir = @abs_srcdir@ +-abs_top_builddir = @abs_top_builddir@ +-abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ ++am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ ++am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ ++am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ ++am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ +@@ -975,7 +1063,6 @@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ +-builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -1003,12 +1090,8 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ +-srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ +-top_build_prefix = @top_build_prefix@ +-top_builddir = @top_builddir@ +-top_srcdir = @top_srcdir@ + ACLOCAL_AMFLAGS = -I m4 + AUTOMAKE_OPTIONS = foreign 1.9 dist-bzip2 + AM_CPPFLAGS = -I$(srcdir)/src $(GLIB_CFLAGS) +@@ -1487,15 +1570,15 @@ + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ +- echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ +- $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ ++ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \ ++ cd $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ +- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ +- $(am__cd) $(top_srcdir) && \ +- $(AUTOMAKE) --foreign Makefile ++ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ ++ cd $(top_srcdir) && \ ++ $(AUTOMAKE) --foreign Makefile + .PRECIOUS: Makefile + Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ +@@ -1511,22 +1594,21 @@ + $(SHELL) ./config.status --recheck + + $(top_srcdir)/configure: $(am__configure_deps) +- $(am__cd) $(srcdir) && $(AUTOCONF) ++ cd $(srcdir) && $(AUTOCONF) + $(ACLOCAL_M4): $(am__aclocal_m4_deps) +- $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +-$(am__aclocal_m4_deps): ++ cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) + + config.h: stamp-h1 + @if test ! -f $@; then \ + rm -f stamp-h1; \ +- $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ ++ $(MAKE) stamp-h1; \ + else :; fi + + stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h + $(srcdir)/config.h.in: $(am__configure_deps) +- ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) ++ cd $(top_srcdir) && $(AUTOHEADER) + rm -f stamp-h1 + touch $@ + +@@ -1534,38 +1616,24 @@ + -rm -f config.h stamp-h1 + install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) +- test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" +- @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ +- 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; \ +- done | \ +- 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 } \ +- { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ +- if ($$2 == $$4) files[d] = files[d] " " $$1; \ +- else { print "f", $$3 "/" $$4, $$1; } } \ +- END { for (d in files) print "f", d, files[d] }' | \ +- while read type dir files; do \ +- if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ +- test -z "$$files" || { \ +- echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ +- $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ +- } \ +- ; done ++ test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" ++ @list='$(bin_PROGRAMS)'; for p in $$list; do \ ++ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ ++ if test -f $$p \ ++ ; then \ ++ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ ++ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ ++ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ ++ else :; fi; \ ++ done + + uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) +- @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ +- files=`for p in $$list; do echo "$$p"; done | \ +- sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ +- -e 's/$$/$(EXEEXT)/' `; \ +- test -n "$$list" || exit 0; \ +- echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ +- cd "$(DESTDIR)$(bindir)" && rm -f $$files ++ @list='$(bin_PROGRAMS)'; for p in $$list; do \ ++ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ ++ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ ++ rm -f "$(DESTDIR)$(bindir)/$$f"; \ ++ done + + clean-binPROGRAMS: + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) +@@ -1573,38 +1641,38 @@ + clean-noinstPROGRAMS: + -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) + src/$(am__dirstamp): +- @$(MKDIR_P) src ++ @$(mkdir_p) src + @: > src/$(am__dirstamp) + src/mpd$(EXEEXT): $(src_mpd_OBJECTS) $(src_mpd_DEPENDENCIES) src/$(am__dirstamp) + @rm -f src/mpd$(EXEEXT) +- $(CXXLINK) $(src_mpd_OBJECTS) $(src_mpd_LDADD) $(LIBS) ++ $(CXXLINK) $(src_mpd_LDFLAGS) $(src_mpd_OBJECTS) $(src_mpd_LDADD) $(LIBS) + test/$(am__dirstamp): +- @$(MKDIR_P) test ++ @$(mkdir_p) test + @: > test/$(am__dirstamp) + test/read_conf$(EXEEXT): $(test_read_conf_OBJECTS) $(test_read_conf_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/read_conf$(EXEEXT) +- $(LINK) $(test_read_conf_OBJECTS) $(test_read_conf_LDADD) $(LIBS) ++ $(LINK) $(test_read_conf_LDFLAGS) $(test_read_conf_OBJECTS) $(test_read_conf_LDADD) $(LIBS) + test/read_mixer$(EXEEXT): $(test_read_mixer_OBJECTS) $(test_read_mixer_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/read_mixer$(EXEEXT) +- $(LINK) $(test_read_mixer_OBJECTS) $(test_read_mixer_LDADD) $(LIBS) ++ $(LINK) $(test_read_mixer_LDFLAGS) $(test_read_mixer_OBJECTS) $(test_read_mixer_LDADD) $(LIBS) + test/read_tags$(EXEEXT): $(test_read_tags_OBJECTS) $(test_read_tags_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/read_tags$(EXEEXT) +- $(CXXLINK) $(test_read_tags_OBJECTS) $(test_read_tags_LDADD) $(LIBS) ++ $(CXXLINK) $(test_read_tags_LDFLAGS) $(test_read_tags_OBJECTS) $(test_read_tags_LDADD) $(LIBS) + test/run_decoder$(EXEEXT): $(test_run_decoder_OBJECTS) $(test_run_decoder_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/run_decoder$(EXEEXT) +- $(CXXLINK) $(test_run_decoder_OBJECTS) $(test_run_decoder_LDADD) $(LIBS) ++ $(CXXLINK) $(test_run_decoder_LDFLAGS) $(test_run_decoder_OBJECTS) $(test_run_decoder_LDADD) $(LIBS) + test/run_encoder$(EXEEXT): $(test_run_encoder_OBJECTS) $(test_run_encoder_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/run_encoder$(EXEEXT) +- $(LINK) $(test_run_encoder_OBJECTS) $(test_run_encoder_LDADD) $(LIBS) ++ $(LINK) $(test_run_encoder_LDFLAGS) $(test_run_encoder_OBJECTS) $(test_run_encoder_LDADD) $(LIBS) + test/run_input$(EXEEXT): $(test_run_input_OBJECTS) $(test_run_input_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/run_input$(EXEEXT) +- $(LINK) $(test_run_input_OBJECTS) $(test_run_input_LDADD) $(LIBS) ++ $(LINK) $(test_run_input_LDFLAGS) $(test_run_input_OBJECTS) $(test_run_input_LDADD) $(LIBS) + test/run_output$(EXEEXT): $(test_run_output_OBJECTS) $(test_run_output_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/run_output$(EXEEXT) +- $(LINK) $(test_run_output_OBJECTS) $(test_run_output_LDADD) $(LIBS) ++ $(LINK) $(test_run_output_LDFLAGS) $(test_run_output_OBJECTS) $(test_run_output_LDADD) $(LIBS) + test/software_volume$(EXEEXT): $(test_software_volume_OBJECTS) $(test_software_volume_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/software_volume$(EXEEXT) +- $(LINK) $(test_software_volume_OBJECTS) $(test_software_volume_LDADD) $(LIBS) ++ $(LINK) $(test_software_volume_LDFLAGS) $(test_software_volume_OBJECTS) $(test_software_volume_LDADD) $(LIBS) + + mostlyclean-compile: + -rm -f *.$(OBJEXT) +@@ -1944,4912 +2012,4895 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vorbis_encoder.Po@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + src_mpd-bz2_plugin.o: src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-bz2_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-bz2_plugin.Tpo -c -o src_mpd-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-bz2_plugin.Tpo $(DEPDIR)/src_mpd-bz2_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-bz2_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-bz2_plugin.Tpo" -c -o src_mpd-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-bz2_plugin.Tpo" "$(DEPDIR)/src_mpd-bz2_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-bz2_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='src_mpd-bz2_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c + + src_mpd-bz2_plugin.obj: src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-bz2_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-bz2_plugin.Tpo -c -o src_mpd-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-bz2_plugin.Tpo $(DEPDIR)/src_mpd-bz2_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-bz2_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-bz2_plugin.Tpo" -c -o src_mpd-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-bz2_plugin.Tpo" "$(DEPDIR)/src_mpd-bz2_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-bz2_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='src_mpd-bz2_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi` + + src_mpd-zip_plugin.o: src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zip_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-zip_plugin.Tpo -c -o src_mpd-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zip_plugin.Tpo $(DEPDIR)/src_mpd-zip_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zip_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-zip_plugin.Tpo" -c -o src_mpd-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zip_plugin.Tpo" "$(DEPDIR)/src_mpd-zip_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-zip_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='src_mpd-zip_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c + + src_mpd-zip_plugin.obj: src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zip_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-zip_plugin.Tpo -c -o src_mpd-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zip_plugin.Tpo $(DEPDIR)/src_mpd-zip_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zip_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-zip_plugin.Tpo" -c -o src_mpd-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zip_plugin.Tpo" "$(DEPDIR)/src_mpd-zip_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-zip_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='src_mpd-zip_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi` + + src_mpd-iso_plugin.o: src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-iso_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-iso_plugin.Tpo -c -o src_mpd-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-iso_plugin.Tpo $(DEPDIR)/src_mpd-iso_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-iso_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-iso_plugin.Tpo" -c -o src_mpd-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-iso_plugin.Tpo" "$(DEPDIR)/src_mpd-iso_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-iso_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='src_mpd-iso_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c + + src_mpd-iso_plugin.obj: src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-iso_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-iso_plugin.Tpo -c -o src_mpd-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-iso_plugin.Tpo $(DEPDIR)/src_mpd-iso_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-iso_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-iso_plugin.Tpo" -c -o src_mpd-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-iso_plugin.Tpo" "$(DEPDIR)/src_mpd-iso_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-iso_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='src_mpd-iso_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi` + + src_mpd-archive_api.o: src/archive_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_api.o -MD -MP -MF $(DEPDIR)/src_mpd-archive_api.Tpo -c -o src_mpd-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_api.Tpo $(DEPDIR)/src_mpd-archive_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_api.o -MD -MP -MF "$(DEPDIR)/src_mpd-archive_api.Tpo" -c -o src_mpd-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_api.Tpo" "$(DEPDIR)/src_mpd-archive_api.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='src_mpd-archive_api.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c + + src_mpd-archive_api.obj: src/archive_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_api.obj -MD -MP -MF $(DEPDIR)/src_mpd-archive_api.Tpo -c -o src_mpd-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_api.Tpo $(DEPDIR)/src_mpd-archive_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_api.obj -MD -MP -MF "$(DEPDIR)/src_mpd-archive_api.Tpo" -c -o src_mpd-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_api.Tpo" "$(DEPDIR)/src_mpd-archive_api.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='src_mpd-archive_api.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi` + + src_mpd-archive_list.o: src/archive_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_list.o -MD -MP -MF $(DEPDIR)/src_mpd-archive_list.Tpo -c -o src_mpd-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_list.Tpo $(DEPDIR)/src_mpd-archive_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_list.o -MD -MP -MF "$(DEPDIR)/src_mpd-archive_list.Tpo" -c -o src_mpd-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_list.Tpo" "$(DEPDIR)/src_mpd-archive_list.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='src_mpd-archive_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c + + src_mpd-archive_list.obj: src/archive_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_list.obj -MD -MP -MF $(DEPDIR)/src_mpd-archive_list.Tpo -c -o src_mpd-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_list.Tpo $(DEPDIR)/src_mpd-archive_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_list.obj -MD -MP -MF "$(DEPDIR)/src_mpd-archive_list.Tpo" -c -o src_mpd-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_list.Tpo" "$(DEPDIR)/src_mpd-archive_list.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='src_mpd-archive_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi` + + src_mpd-archive_input_plugin.o: src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-archive_input_plugin.Tpo -c -o src_mpd-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_input_plugin.Tpo $(DEPDIR)/src_mpd-archive_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo" -c -o src_mpd-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo" "$(DEPDIR)/src_mpd-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='src_mpd-archive_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c + + src_mpd-archive_input_plugin.obj: src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-archive_input_plugin.Tpo -c -o src_mpd-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_input_plugin.Tpo $(DEPDIR)/src_mpd-archive_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo" -c -o src_mpd-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo" "$(DEPDIR)/src_mpd-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='src_mpd-archive_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi` + + src_mpd-input_stream.o: src/input_stream.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-input_stream.o -MD -MP -MF $(DEPDIR)/src_mpd-input_stream.Tpo -c -o src_mpd-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-input_stream.Tpo $(DEPDIR)/src_mpd-input_stream.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-input_stream.o -MD -MP -MF "$(DEPDIR)/src_mpd-input_stream.Tpo" -c -o src_mpd-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-input_stream.Tpo" "$(DEPDIR)/src_mpd-input_stream.Po"; else rm -f "$(DEPDIR)/src_mpd-input_stream.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='src_mpd-input_stream.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c + + src_mpd-input_stream.obj: src/input_stream.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-input_stream.obj -MD -MP -MF $(DEPDIR)/src_mpd-input_stream.Tpo -c -o src_mpd-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-input_stream.Tpo $(DEPDIR)/src_mpd-input_stream.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-input_stream.obj -MD -MP -MF "$(DEPDIR)/src_mpd-input_stream.Tpo" -c -o src_mpd-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-input_stream.Tpo" "$(DEPDIR)/src_mpd-input_stream.Po"; else rm -f "$(DEPDIR)/src_mpd-input_stream.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='src_mpd-input_stream.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi` + + src_mpd-file_input_plugin.o: src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-file_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-file_input_plugin.Tpo -c -o src_mpd-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-file_input_plugin.Tpo $(DEPDIR)/src_mpd-file_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-file_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-file_input_plugin.Tpo" -c -o src_mpd-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-file_input_plugin.Tpo" "$(DEPDIR)/src_mpd-file_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-file_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='src_mpd-file_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c + + src_mpd-file_input_plugin.obj: src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-file_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-file_input_plugin.Tpo -c -o src_mpd-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-file_input_plugin.Tpo $(DEPDIR)/src_mpd-file_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-file_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-file_input_plugin.Tpo" -c -o src_mpd-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-file_input_plugin.Tpo" "$(DEPDIR)/src_mpd-file_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-file_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='src_mpd-file_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi` + + src_mpd-curl_input_plugin.o: src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-curl_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-curl_input_plugin.Tpo -c -o src_mpd-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-curl_input_plugin.Tpo $(DEPDIR)/src_mpd-curl_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-curl_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo" -c -o src_mpd-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo" "$(DEPDIR)/src_mpd-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='src_mpd-curl_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c + + src_mpd-curl_input_plugin.obj: src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-curl_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-curl_input_plugin.Tpo -c -o src_mpd-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-curl_input_plugin.Tpo $(DEPDIR)/src_mpd-curl_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-curl_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo" -c -o src_mpd-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo" "$(DEPDIR)/src_mpd-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='src_mpd-curl_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi` + + src_mpd-rewind_input_plugin.o: src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-rewind_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-rewind_input_plugin.Tpo -c -o src_mpd-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-rewind_input_plugin.Tpo $(DEPDIR)/src_mpd-rewind_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-rewind_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo" -c -o src_mpd-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo" "$(DEPDIR)/src_mpd-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='src_mpd-rewind_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c + + src_mpd-rewind_input_plugin.obj: src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-rewind_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-rewind_input_plugin.Tpo -c -o src_mpd-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-rewind_input_plugin.Tpo $(DEPDIR)/src_mpd-rewind_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-rewind_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo" -c -o src_mpd-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo" "$(DEPDIR)/src_mpd-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='src_mpd-rewind_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi` + + src_mpd-icy_metadata.o: src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_metadata.o -MD -MP -MF $(DEPDIR)/src_mpd-icy_metadata.Tpo -c -o src_mpd-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-icy_metadata.Tpo $(DEPDIR)/src_mpd-icy_metadata.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_metadata.o -MD -MP -MF "$(DEPDIR)/src_mpd-icy_metadata.Tpo" -c -o src_mpd-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-icy_metadata.Tpo" "$(DEPDIR)/src_mpd-icy_metadata.Po"; else rm -f "$(DEPDIR)/src_mpd-icy_metadata.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='src_mpd-icy_metadata.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c + + src_mpd-icy_metadata.obj: src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_metadata.obj -MD -MP -MF $(DEPDIR)/src_mpd-icy_metadata.Tpo -c -o src_mpd-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-icy_metadata.Tpo $(DEPDIR)/src_mpd-icy_metadata.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_metadata.obj -MD -MP -MF "$(DEPDIR)/src_mpd-icy_metadata.Tpo" -c -o src_mpd-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-icy_metadata.Tpo" "$(DEPDIR)/src_mpd-icy_metadata.Po"; else rm -f "$(DEPDIR)/src_mpd-icy_metadata.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='src_mpd-icy_metadata.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi` + + src_mpd-lastfm_input_plugin.o: src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lastfm_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo -c -o src_mpd-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo $(DEPDIR)/src_mpd-lastfm_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lastfm_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo" -c -o src_mpd-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo" "$(DEPDIR)/src_mpd-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='src_mpd-lastfm_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c + + src_mpd-lastfm_input_plugin.obj: src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lastfm_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo -c -o src_mpd-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo $(DEPDIR)/src_mpd-lastfm_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lastfm_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo" -c -o src_mpd-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo" "$(DEPDIR)/src_mpd-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='src_mpd-lastfm_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi` + + src_mpd-mms_input_plugin.o: src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mms_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mms_input_plugin.Tpo -c -o src_mpd-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mms_input_plugin.Tpo $(DEPDIR)/src_mpd-mms_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mms_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo" -c -o src_mpd-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo" "$(DEPDIR)/src_mpd-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='src_mpd-mms_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c + + src_mpd-mms_input_plugin.obj: src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mms_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mms_input_plugin.Tpo -c -o src_mpd-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mms_input_plugin.Tpo $(DEPDIR)/src_mpd-mms_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mms_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo" -c -o src_mpd-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo" "$(DEPDIR)/src_mpd-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='src_mpd-mms_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi` + + src_mpd-tag_ape.o: src/tag_ape.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_ape.o -MD -MP -MF $(DEPDIR)/src_mpd-tag_ape.Tpo -c -o src_mpd-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_ape.Tpo $(DEPDIR)/src_mpd-tag_ape.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_ape.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag_ape.Tpo" -c -o src_mpd-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_ape.Tpo" "$(DEPDIR)/src_mpd-tag_ape.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_ape.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='src_mpd-tag_ape.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c + + src_mpd-tag_ape.obj: src/tag_ape.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_ape.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag_ape.Tpo -c -o src_mpd-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_ape.Tpo $(DEPDIR)/src_mpd-tag_ape.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_ape.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag_ape.Tpo" -c -o src_mpd-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_ape.Tpo" "$(DEPDIR)/src_mpd-tag_ape.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_ape.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='src_mpd-tag_ape.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi` + + src_mpd-tag_id3.o: src/tag_id3.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_id3.o -MD -MP -MF $(DEPDIR)/src_mpd-tag_id3.Tpo -c -o src_mpd-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_id3.Tpo $(DEPDIR)/src_mpd-tag_id3.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_id3.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag_id3.Tpo" -c -o src_mpd-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_id3.Tpo" "$(DEPDIR)/src_mpd-tag_id3.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_id3.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='src_mpd-tag_id3.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c + + src_mpd-tag_id3.obj: src/tag_id3.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_id3.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag_id3.Tpo -c -o src_mpd-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_id3.Tpo $(DEPDIR)/src_mpd-tag_id3.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_id3.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag_id3.Tpo" -c -o src_mpd-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_id3.Tpo" "$(DEPDIR)/src_mpd-tag_id3.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_id3.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='src_mpd-tag_id3.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi` + + src_mpd-riff.o: src/riff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-riff.o -MD -MP -MF $(DEPDIR)/src_mpd-riff.Tpo -c -o src_mpd-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-riff.Tpo $(DEPDIR)/src_mpd-riff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-riff.o -MD -MP -MF "$(DEPDIR)/src_mpd-riff.Tpo" -c -o src_mpd-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-riff.Tpo" "$(DEPDIR)/src_mpd-riff.Po"; else rm -f "$(DEPDIR)/src_mpd-riff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='src_mpd-riff.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c + + src_mpd-riff.obj: src/riff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-riff.obj -MD -MP -MF $(DEPDIR)/src_mpd-riff.Tpo -c -o src_mpd-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-riff.Tpo $(DEPDIR)/src_mpd-riff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-riff.obj -MD -MP -MF "$(DEPDIR)/src_mpd-riff.Tpo" -c -o src_mpd-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-riff.Tpo" "$(DEPDIR)/src_mpd-riff.Po"; else rm -f "$(DEPDIR)/src_mpd-riff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='src_mpd-riff.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi` + + src_mpd-aiff.o: src/aiff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-aiff.o -MD -MP -MF $(DEPDIR)/src_mpd-aiff.Tpo -c -o src_mpd-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-aiff.Tpo $(DEPDIR)/src_mpd-aiff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-aiff.o -MD -MP -MF "$(DEPDIR)/src_mpd-aiff.Tpo" -c -o src_mpd-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-aiff.Tpo" "$(DEPDIR)/src_mpd-aiff.Po"; else rm -f "$(DEPDIR)/src_mpd-aiff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='src_mpd-aiff.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c + + src_mpd-aiff.obj: src/aiff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-aiff.obj -MD -MP -MF $(DEPDIR)/src_mpd-aiff.Tpo -c -o src_mpd-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-aiff.Tpo $(DEPDIR)/src_mpd-aiff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-aiff.obj -MD -MP -MF "$(DEPDIR)/src_mpd-aiff.Tpo" -c -o src_mpd-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-aiff.Tpo" "$(DEPDIR)/src_mpd-aiff.Po"; else rm -f "$(DEPDIR)/src_mpd-aiff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='src_mpd-aiff.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi` + + src_mpd-decoder_buffer.o: src/decoder_buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_buffer.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_buffer.Tpo -c -o src_mpd-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_buffer.Tpo $(DEPDIR)/src_mpd-decoder_buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_buffer.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_buffer.Tpo" -c -o src_mpd-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_buffer.Tpo" "$(DEPDIR)/src_mpd-decoder_buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='src_mpd-decoder_buffer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c + + src_mpd-decoder_buffer.obj: src/decoder_buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_buffer.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_buffer.Tpo -c -o src_mpd-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_buffer.Tpo $(DEPDIR)/src_mpd-decoder_buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_buffer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_buffer.Tpo" -c -o src_mpd-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_buffer.Tpo" "$(DEPDIR)/src_mpd-decoder_buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='src_mpd-decoder_buffer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi` + + src_mpd-decoder_list.o: src/decoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_list.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_list.Tpo -c -o src_mpd-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_list.Tpo $(DEPDIR)/src_mpd-decoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_list.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_list.Tpo" -c -o src_mpd-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_list.Tpo" "$(DEPDIR)/src_mpd-decoder_list.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='src_mpd-decoder_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c + + src_mpd-decoder_list.obj: src/decoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_list.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_list.Tpo -c -o src_mpd-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_list.Tpo $(DEPDIR)/src_mpd-decoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_list.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_list.Tpo" -c -o src_mpd-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_list.Tpo" "$(DEPDIR)/src_mpd-decoder_list.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='src_mpd-decoder_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi` + + src_mpd-mad_plugin.o: src/decoder/mad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mad_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mad_plugin.Tpo -c -o src_mpd-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mad_plugin.Tpo $(DEPDIR)/src_mpd-mad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mad_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mad_plugin.Tpo" -c -o src_mpd-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mad_plugin.Tpo" "$(DEPDIR)/src_mpd-mad_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='src_mpd-mad_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c + + src_mpd-mad_plugin.obj: src/decoder/mad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mad_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mad_plugin.Tpo -c -o src_mpd-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mad_plugin.Tpo $(DEPDIR)/src_mpd-mad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mad_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mad_plugin.Tpo" -c -o src_mpd-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mad_plugin.Tpo" "$(DEPDIR)/src_mpd-mad_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='src_mpd-mad_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi` + + src_mpd-mpcdec_plugin.o: src/decoder/mpcdec_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mpcdec_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mpcdec_plugin.Tpo -c -o src_mpd-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mpcdec_plugin.Tpo $(DEPDIR)/src_mpd-mpcdec_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mpcdec_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo" -c -o src_mpd-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo" "$(DEPDIR)/src_mpd-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='src_mpd-mpcdec_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c + + src_mpd-mpcdec_plugin.obj: src/decoder/mpcdec_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mpcdec_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mpcdec_plugin.Tpo -c -o src_mpd-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mpcdec_plugin.Tpo $(DEPDIR)/src_mpd-mpcdec_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mpcdec_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo" -c -o src_mpd-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo" "$(DEPDIR)/src_mpd-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='src_mpd-mpcdec_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi` + + src_mpd-wavpack_plugin.o: src/decoder/wavpack_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wavpack_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-wavpack_plugin.Tpo -c -o src_mpd-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-wavpack_plugin.Tpo $(DEPDIR)/src_mpd-wavpack_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wavpack_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo" -c -o src_mpd-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo" "$(DEPDIR)/src_mpd-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='src_mpd-wavpack_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c + + src_mpd-wavpack_plugin.obj: src/decoder/wavpack_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wavpack_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-wavpack_plugin.Tpo -c -o src_mpd-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-wavpack_plugin.Tpo $(DEPDIR)/src_mpd-wavpack_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wavpack_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo" -c -o src_mpd-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo" "$(DEPDIR)/src_mpd-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='src_mpd-wavpack_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi` + + src_mpd-faad_plugin.o: src/decoder/faad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-faad_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-faad_plugin.Tpo -c -o src_mpd-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-faad_plugin.Tpo $(DEPDIR)/src_mpd-faad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-faad_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-faad_plugin.Tpo" -c -o src_mpd-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-faad_plugin.Tpo" "$(DEPDIR)/src_mpd-faad_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-faad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='src_mpd-faad_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c + + src_mpd-faad_plugin.obj: src/decoder/faad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-faad_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-faad_plugin.Tpo -c -o src_mpd-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-faad_plugin.Tpo $(DEPDIR)/src_mpd-faad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-faad_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-faad_plugin.Tpo" -c -o src_mpd-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-faad_plugin.Tpo" "$(DEPDIR)/src_mpd-faad_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-faad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='src_mpd-faad_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi` + + src_mpd-mp4ff_plugin.o: src/decoder/mp4ff_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mp4ff_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mp4ff_plugin.Tpo -c -o src_mpd-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mp4ff_plugin.Tpo $(DEPDIR)/src_mpd-mp4ff_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mp4ff_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo" -c -o src_mpd-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo" "$(DEPDIR)/src_mpd-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='src_mpd-mp4ff_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c + + src_mpd-mp4ff_plugin.obj: src/decoder/mp4ff_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mp4ff_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mp4ff_plugin.Tpo -c -o src_mpd-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mp4ff_plugin.Tpo $(DEPDIR)/src_mpd-mp4ff_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mp4ff_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo" -c -o src_mpd-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo" "$(DEPDIR)/src_mpd-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='src_mpd-mp4ff_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi` + + src_mpd-_ogg_common.o: src/decoder/_ogg_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_ogg_common.o -MD -MP -MF $(DEPDIR)/src_mpd-_ogg_common.Tpo -c -o src_mpd-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-_ogg_common.Tpo $(DEPDIR)/src_mpd-_ogg_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_ogg_common.o -MD -MP -MF "$(DEPDIR)/src_mpd-_ogg_common.Tpo" -c -o src_mpd-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-_ogg_common.Tpo" "$(DEPDIR)/src_mpd-_ogg_common.Po"; else rm -f "$(DEPDIR)/src_mpd-_ogg_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='src_mpd-_ogg_common.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c + + src_mpd-_ogg_common.obj: src/decoder/_ogg_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_ogg_common.obj -MD -MP -MF $(DEPDIR)/src_mpd-_ogg_common.Tpo -c -o src_mpd-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-_ogg_common.Tpo $(DEPDIR)/src_mpd-_ogg_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_ogg_common.obj -MD -MP -MF "$(DEPDIR)/src_mpd-_ogg_common.Tpo" -c -o src_mpd-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-_ogg_common.Tpo" "$(DEPDIR)/src_mpd-_ogg_common.Po"; else rm -f "$(DEPDIR)/src_mpd-_ogg_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='src_mpd-_ogg_common.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi` + + src_mpd-_flac_common.o: src/decoder/_flac_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_flac_common.o -MD -MP -MF $(DEPDIR)/src_mpd-_flac_common.Tpo -c -o src_mpd-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-_flac_common.Tpo $(DEPDIR)/src_mpd-_flac_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_flac_common.o -MD -MP -MF "$(DEPDIR)/src_mpd-_flac_common.Tpo" -c -o src_mpd-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-_flac_common.Tpo" "$(DEPDIR)/src_mpd-_flac_common.Po"; else rm -f "$(DEPDIR)/src_mpd-_flac_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='src_mpd-_flac_common.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c + + src_mpd-_flac_common.obj: src/decoder/_flac_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_flac_common.obj -MD -MP -MF $(DEPDIR)/src_mpd-_flac_common.Tpo -c -o src_mpd-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-_flac_common.Tpo $(DEPDIR)/src_mpd-_flac_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_flac_common.obj -MD -MP -MF "$(DEPDIR)/src_mpd-_flac_common.Tpo" -c -o src_mpd-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-_flac_common.Tpo" "$(DEPDIR)/src_mpd-_flac_common.Po"; else rm -f "$(DEPDIR)/src_mpd-_flac_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='src_mpd-_flac_common.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi` + + src_mpd-vorbis_plugin.o: src/decoder/vorbis_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-vorbis_plugin.Tpo -c -o src_mpd-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-vorbis_plugin.Tpo $(DEPDIR)/src_mpd-vorbis_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo" -c -o src_mpd-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo" "$(DEPDIR)/src_mpd-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='src_mpd-vorbis_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c + + src_mpd-vorbis_plugin.obj: src/decoder/vorbis_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-vorbis_plugin.Tpo -c -o src_mpd-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-vorbis_plugin.Tpo $(DEPDIR)/src_mpd-vorbis_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo" -c -o src_mpd-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo" "$(DEPDIR)/src_mpd-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='src_mpd-vorbis_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi` + + src_mpd-flac_plugin.o: src/decoder/flac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-flac_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-flac_plugin.Tpo -c -o src_mpd-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-flac_plugin.Tpo $(DEPDIR)/src_mpd-flac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-flac_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-flac_plugin.Tpo" -c -o src_mpd-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-flac_plugin.Tpo" "$(DEPDIR)/src_mpd-flac_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-flac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='src_mpd-flac_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c + + src_mpd-flac_plugin.obj: src/decoder/flac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-flac_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-flac_plugin.Tpo -c -o src_mpd-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-flac_plugin.Tpo $(DEPDIR)/src_mpd-flac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-flac_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-flac_plugin.Tpo" -c -o src_mpd-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-flac_plugin.Tpo" "$(DEPDIR)/src_mpd-flac_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-flac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='src_mpd-flac_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi` + + src_mpd-oggflac_plugin.o: src/decoder/oggflac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oggflac_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-oggflac_plugin.Tpo -c -o src_mpd-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oggflac_plugin.Tpo $(DEPDIR)/src_mpd-oggflac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oggflac_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo" -c -o src_mpd-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo" "$(DEPDIR)/src_mpd-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='src_mpd-oggflac_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c + + src_mpd-oggflac_plugin.obj: src/decoder/oggflac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oggflac_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-oggflac_plugin.Tpo -c -o src_mpd-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oggflac_plugin.Tpo $(DEPDIR)/src_mpd-oggflac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oggflac_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo" -c -o src_mpd-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo" "$(DEPDIR)/src_mpd-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='src_mpd-oggflac_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi` + + src_mpd-audiofile_plugin.o: src/decoder/audiofile_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audiofile_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-audiofile_plugin.Tpo -c -o src_mpd-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audiofile_plugin.Tpo $(DEPDIR)/src_mpd-audiofile_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audiofile_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo" -c -o src_mpd-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo" "$(DEPDIR)/src_mpd-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='src_mpd-audiofile_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c + + src_mpd-audiofile_plugin.obj: src/decoder/audiofile_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audiofile_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-audiofile_plugin.Tpo -c -o src_mpd-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audiofile_plugin.Tpo $(DEPDIR)/src_mpd-audiofile_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audiofile_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo" -c -o src_mpd-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo" "$(DEPDIR)/src_mpd-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='src_mpd-audiofile_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi` + + src_mpd-mikmod_plugin.o: src/decoder/mikmod_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mikmod_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mikmod_plugin.Tpo -c -o src_mpd-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mikmod_plugin.Tpo $(DEPDIR)/src_mpd-mikmod_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mikmod_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo" -c -o src_mpd-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo" "$(DEPDIR)/src_mpd-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='src_mpd-mikmod_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c + + src_mpd-mikmod_plugin.obj: src/decoder/mikmod_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mikmod_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mikmod_plugin.Tpo -c -o src_mpd-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mikmod_plugin.Tpo $(DEPDIR)/src_mpd-mikmod_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mikmod_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo" -c -o src_mpd-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo" "$(DEPDIR)/src_mpd-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='src_mpd-mikmod_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi` + + src_mpd-modplug_plugin.o: src/decoder/modplug_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-modplug_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-modplug_plugin.Tpo -c -o src_mpd-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-modplug_plugin.Tpo $(DEPDIR)/src_mpd-modplug_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-modplug_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-modplug_plugin.Tpo" -c -o src_mpd-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-modplug_plugin.Tpo" "$(DEPDIR)/src_mpd-modplug_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-modplug_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='src_mpd-modplug_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c + + src_mpd-modplug_plugin.obj: src/decoder/modplug_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-modplug_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-modplug_plugin.Tpo -c -o src_mpd-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-modplug_plugin.Tpo $(DEPDIR)/src_mpd-modplug_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-modplug_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-modplug_plugin.Tpo" -c -o src_mpd-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-modplug_plugin.Tpo" "$(DEPDIR)/src_mpd-modplug_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-modplug_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='src_mpd-modplug_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi` + + src_mpd-fluidsynth_plugin.o: src/decoder/fluidsynth_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fluidsynth_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo -c -o src_mpd-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo $(DEPDIR)/src_mpd-fluidsynth_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fluidsynth_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo" -c -o src_mpd-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo" "$(DEPDIR)/src_mpd-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='src_mpd-fluidsynth_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c + + src_mpd-fluidsynth_plugin.obj: src/decoder/fluidsynth_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fluidsynth_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo -c -o src_mpd-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo $(DEPDIR)/src_mpd-fluidsynth_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fluidsynth_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo" -c -o src_mpd-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo" "$(DEPDIR)/src_mpd-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='src_mpd-fluidsynth_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi` + + src_mpd-wildmidi_plugin.o: src/decoder/wildmidi_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wildmidi_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-wildmidi_plugin.Tpo -c -o src_mpd-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-wildmidi_plugin.Tpo $(DEPDIR)/src_mpd-wildmidi_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wildmidi_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo" -c -o src_mpd-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo" "$(DEPDIR)/src_mpd-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='src_mpd-wildmidi_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c + + src_mpd-wildmidi_plugin.obj: src/decoder/wildmidi_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wildmidi_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-wildmidi_plugin.Tpo -c -o src_mpd-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-wildmidi_plugin.Tpo $(DEPDIR)/src_mpd-wildmidi_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wildmidi_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo" -c -o src_mpd-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo" "$(DEPDIR)/src_mpd-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='src_mpd-wildmidi_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi` + + src_mpd-ffmpeg_plugin.o: src/decoder/ffmpeg_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ffmpeg_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo -c -o src_mpd-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo $(DEPDIR)/src_mpd-ffmpeg_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ffmpeg_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo" -c -o src_mpd-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo" "$(DEPDIR)/src_mpd-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='src_mpd-ffmpeg_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c + + src_mpd-ffmpeg_plugin.obj: src/decoder/ffmpeg_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ffmpeg_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo -c -o src_mpd-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo $(DEPDIR)/src_mpd-ffmpeg_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ffmpeg_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo" -c -o src_mpd-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo" "$(DEPDIR)/src_mpd-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='src_mpd-ffmpeg_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi` + + src_mpd-cue_tag.o: src/cue/cue_tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cue_tag.o -MD -MP -MF $(DEPDIR)/src_mpd-cue_tag.Tpo -c -o src_mpd-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-cue_tag.Tpo $(DEPDIR)/src_mpd-cue_tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cue_tag.o -MD -MP -MF "$(DEPDIR)/src_mpd-cue_tag.Tpo" -c -o src_mpd-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-cue_tag.Tpo" "$(DEPDIR)/src_mpd-cue_tag.Po"; else rm -f "$(DEPDIR)/src_mpd-cue_tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='src_mpd-cue_tag.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c + + src_mpd-cue_tag.obj: src/cue/cue_tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cue_tag.obj -MD -MP -MF $(DEPDIR)/src_mpd-cue_tag.Tpo -c -o src_mpd-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-cue_tag.Tpo $(DEPDIR)/src_mpd-cue_tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cue_tag.obj -MD -MP -MF "$(DEPDIR)/src_mpd-cue_tag.Tpo" -c -o src_mpd-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-cue_tag.Tpo" "$(DEPDIR)/src_mpd-cue_tag.Po"; else rm -f "$(DEPDIR)/src_mpd-cue_tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='src_mpd-cue_tag.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi` + + src_mpd-encoder_list.o: src/encoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-encoder_list.o -MD -MP -MF $(DEPDIR)/src_mpd-encoder_list.Tpo -c -o src_mpd-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-encoder_list.Tpo $(DEPDIR)/src_mpd-encoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-encoder_list.o -MD -MP -MF "$(DEPDIR)/src_mpd-encoder_list.Tpo" -c -o src_mpd-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-encoder_list.Tpo" "$(DEPDIR)/src_mpd-encoder_list.Po"; else rm -f "$(DEPDIR)/src_mpd-encoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='src_mpd-encoder_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c + + src_mpd-encoder_list.obj: src/encoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-encoder_list.obj -MD -MP -MF $(DEPDIR)/src_mpd-encoder_list.Tpo -c -o src_mpd-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-encoder_list.Tpo $(DEPDIR)/src_mpd-encoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-encoder_list.obj -MD -MP -MF "$(DEPDIR)/src_mpd-encoder_list.Tpo" -c -o src_mpd-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-encoder_list.Tpo" "$(DEPDIR)/src_mpd-encoder_list.Po"; else rm -f "$(DEPDIR)/src_mpd-encoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='src_mpd-encoder_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi` + + src_mpd-vorbis_encoder.o: src/encoder/vorbis_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_encoder.o -MD -MP -MF $(DEPDIR)/src_mpd-vorbis_encoder.Tpo -c -o src_mpd-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-vorbis_encoder.Tpo $(DEPDIR)/src_mpd-vorbis_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_encoder.o -MD -MP -MF "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo" -c -o src_mpd-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo" "$(DEPDIR)/src_mpd-vorbis_encoder.Po"; else rm -f "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='src_mpd-vorbis_encoder.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c + + src_mpd-vorbis_encoder.obj: src/encoder/vorbis_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_encoder.obj -MD -MP -MF $(DEPDIR)/src_mpd-vorbis_encoder.Tpo -c -o src_mpd-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-vorbis_encoder.Tpo $(DEPDIR)/src_mpd-vorbis_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_encoder.obj -MD -MP -MF "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo" -c -o src_mpd-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo" "$(DEPDIR)/src_mpd-vorbis_encoder.Po"; else rm -f "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='src_mpd-vorbis_encoder.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi` + + src_mpd-lame_encoder.o: src/encoder/lame_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lame_encoder.o -MD -MP -MF $(DEPDIR)/src_mpd-lame_encoder.Tpo -c -o src_mpd-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-lame_encoder.Tpo $(DEPDIR)/src_mpd-lame_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lame_encoder.o -MD -MP -MF "$(DEPDIR)/src_mpd-lame_encoder.Tpo" -c -o src_mpd-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-lame_encoder.Tpo" "$(DEPDIR)/src_mpd-lame_encoder.Po"; else rm -f "$(DEPDIR)/src_mpd-lame_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='src_mpd-lame_encoder.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c + + src_mpd-lame_encoder.obj: src/encoder/lame_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lame_encoder.obj -MD -MP -MF $(DEPDIR)/src_mpd-lame_encoder.Tpo -c -o src_mpd-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-lame_encoder.Tpo $(DEPDIR)/src_mpd-lame_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lame_encoder.obj -MD -MP -MF "$(DEPDIR)/src_mpd-lame_encoder.Tpo" -c -o src_mpd-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-lame_encoder.Tpo" "$(DEPDIR)/src_mpd-lame_encoder.Po"; else rm -f "$(DEPDIR)/src_mpd-lame_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='src_mpd-lame_encoder.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi` + + src_mpd-output_list.o: src/output_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_list.o -MD -MP -MF $(DEPDIR)/src_mpd-output_list.Tpo -c -o src_mpd-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_list.Tpo $(DEPDIR)/src_mpd-output_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_list.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_list.Tpo" -c -o src_mpd-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_list.Tpo" "$(DEPDIR)/src_mpd-output_list.Po"; else rm -f "$(DEPDIR)/src_mpd-output_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_list.c' object='src_mpd-output_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c + + src_mpd-output_list.obj: src/output_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_list.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_list.Tpo -c -o src_mpd-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_list.Tpo $(DEPDIR)/src_mpd-output_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_list.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_list.Tpo" -c -o src_mpd-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_list.Tpo" "$(DEPDIR)/src_mpd-output_list.Po"; else rm -f "$(DEPDIR)/src_mpd-output_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_list.c' object='src_mpd-output_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi` + + src_mpd-output_all.o: src/output_all.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_all.o -MD -MP -MF $(DEPDIR)/src_mpd-output_all.Tpo -c -o src_mpd-output_all.o `test -f 'src/output_all.c' || echo '$(srcdir)/'`src/output_all.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_all.Tpo $(DEPDIR)/src_mpd-output_all.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_all.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_all.Tpo" -c -o src_mpd-output_all.o `test -f 'src/output_all.c' || echo '$(srcdir)/'`src/output_all.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_all.Tpo" "$(DEPDIR)/src_mpd-output_all.Po"; else rm -f "$(DEPDIR)/src_mpd-output_all.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_all.c' object='src_mpd-output_all.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_all.o `test -f 'src/output_all.c' || echo '$(srcdir)/'`src/output_all.c + + src_mpd-output_all.obj: src/output_all.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_all.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_all.Tpo -c -o src_mpd-output_all.obj `if test -f 'src/output_all.c'; then $(CYGPATH_W) 'src/output_all.c'; else $(CYGPATH_W) '$(srcdir)/src/output_all.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_all.Tpo $(DEPDIR)/src_mpd-output_all.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_all.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_all.Tpo" -c -o src_mpd-output_all.obj `if test -f 'src/output_all.c'; then $(CYGPATH_W) 'src/output_all.c'; else $(CYGPATH_W) '$(srcdir)/src/output_all.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_all.Tpo" "$(DEPDIR)/src_mpd-output_all.Po"; else rm -f "$(DEPDIR)/src_mpd-output_all.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_all.c' object='src_mpd-output_all.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_all.obj `if test -f 'src/output_all.c'; then $(CYGPATH_W) 'src/output_all.c'; else $(CYGPATH_W) '$(srcdir)/src/output_all.c'; fi` + + src_mpd-output_thread.o: src/output_thread.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_thread.o -MD -MP -MF $(DEPDIR)/src_mpd-output_thread.Tpo -c -o src_mpd-output_thread.o `test -f 'src/output_thread.c' || echo '$(srcdir)/'`src/output_thread.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_thread.Tpo $(DEPDIR)/src_mpd-output_thread.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_thread.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_thread.Tpo" -c -o src_mpd-output_thread.o `test -f 'src/output_thread.c' || echo '$(srcdir)/'`src/output_thread.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_thread.Tpo" "$(DEPDIR)/src_mpd-output_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-output_thread.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_thread.c' object='src_mpd-output_thread.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_thread.o `test -f 'src/output_thread.c' || echo '$(srcdir)/'`src/output_thread.c + + src_mpd-output_thread.obj: src/output_thread.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_thread.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_thread.Tpo -c -o src_mpd-output_thread.obj `if test -f 'src/output_thread.c'; then $(CYGPATH_W) 'src/output_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/output_thread.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_thread.Tpo $(DEPDIR)/src_mpd-output_thread.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_thread.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_thread.Tpo" -c -o src_mpd-output_thread.obj `if test -f 'src/output_thread.c'; then $(CYGPATH_W) 'src/output_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/output_thread.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_thread.Tpo" "$(DEPDIR)/src_mpd-output_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-output_thread.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_thread.c' object='src_mpd-output_thread.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_thread.obj `if test -f 'src/output_thread.c'; then $(CYGPATH_W) 'src/output_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/output_thread.c'; fi` + + src_mpd-output_control.o: src/output_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_control.o -MD -MP -MF $(DEPDIR)/src_mpd-output_control.Tpo -c -o src_mpd-output_control.o `test -f 'src/output_control.c' || echo '$(srcdir)/'`src/output_control.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_control.Tpo $(DEPDIR)/src_mpd-output_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_control.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_control.Tpo" -c -o src_mpd-output_control.o `test -f 'src/output_control.c' || echo '$(srcdir)/'`src/output_control.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_control.Tpo" "$(DEPDIR)/src_mpd-output_control.Po"; else rm -f "$(DEPDIR)/src_mpd-output_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_control.c' object='src_mpd-output_control.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_control.o `test -f 'src/output_control.c' || echo '$(srcdir)/'`src/output_control.c + + src_mpd-output_control.obj: src/output_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_control.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_control.Tpo -c -o src_mpd-output_control.obj `if test -f 'src/output_control.c'; then $(CYGPATH_W) 'src/output_control.c'; else $(CYGPATH_W) '$(srcdir)/src/output_control.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_control.Tpo $(DEPDIR)/src_mpd-output_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_control.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_control.Tpo" -c -o src_mpd-output_control.obj `if test -f 'src/output_control.c'; then $(CYGPATH_W) 'src/output_control.c'; else $(CYGPATH_W) '$(srcdir)/src/output_control.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_control.Tpo" "$(DEPDIR)/src_mpd-output_control.Po"; else rm -f "$(DEPDIR)/src_mpd-output_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_control.c' object='src_mpd-output_control.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_control.obj `if test -f 'src/output_control.c'; then $(CYGPATH_W) 'src/output_control.c'; else $(CYGPATH_W) '$(srcdir)/src/output_control.c'; fi` + + src_mpd-output_state.o: src/output_state.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_state.o -MD -MP -MF $(DEPDIR)/src_mpd-output_state.Tpo -c -o src_mpd-output_state.o `test -f 'src/output_state.c' || echo '$(srcdir)/'`src/output_state.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_state.Tpo $(DEPDIR)/src_mpd-output_state.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_state.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_state.Tpo" -c -o src_mpd-output_state.o `test -f 'src/output_state.c' || echo '$(srcdir)/'`src/output_state.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_state.Tpo" "$(DEPDIR)/src_mpd-output_state.Po"; else rm -f "$(DEPDIR)/src_mpd-output_state.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_state.c' object='src_mpd-output_state.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_state.o `test -f 'src/output_state.c' || echo '$(srcdir)/'`src/output_state.c + + src_mpd-output_state.obj: src/output_state.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_state.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_state.Tpo -c -o src_mpd-output_state.obj `if test -f 'src/output_state.c'; then $(CYGPATH_W) 'src/output_state.c'; else $(CYGPATH_W) '$(srcdir)/src/output_state.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_state.Tpo $(DEPDIR)/src_mpd-output_state.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_state.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_state.Tpo" -c -o src_mpd-output_state.obj `if test -f 'src/output_state.c'; then $(CYGPATH_W) 'src/output_state.c'; else $(CYGPATH_W) '$(srcdir)/src/output_state.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_state.Tpo" "$(DEPDIR)/src_mpd-output_state.Po"; else rm -f "$(DEPDIR)/src_mpd-output_state.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_state.c' object='src_mpd-output_state.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_state.obj `if test -f 'src/output_state.c'; then $(CYGPATH_W) 'src/output_state.c'; else $(CYGPATH_W) '$(srcdir)/src/output_state.c'; fi` + + src_mpd-output_print.o: src/output_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_print.o -MD -MP -MF $(DEPDIR)/src_mpd-output_print.Tpo -c -o src_mpd-output_print.o `test -f 'src/output_print.c' || echo '$(srcdir)/'`src/output_print.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_print.Tpo $(DEPDIR)/src_mpd-output_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_print.Tpo" -c -o src_mpd-output_print.o `test -f 'src/output_print.c' || echo '$(srcdir)/'`src/output_print.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_print.Tpo" "$(DEPDIR)/src_mpd-output_print.Po"; else rm -f "$(DEPDIR)/src_mpd-output_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_print.c' object='src_mpd-output_print.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_print.o `test -f 'src/output_print.c' || echo '$(srcdir)/'`src/output_print.c + + src_mpd-output_print.obj: src/output_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_print.Tpo -c -o src_mpd-output_print.obj `if test -f 'src/output_print.c'; then $(CYGPATH_W) 'src/output_print.c'; else $(CYGPATH_W) '$(srcdir)/src/output_print.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_print.Tpo $(DEPDIR)/src_mpd-output_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_print.Tpo" -c -o src_mpd-output_print.obj `if test -f 'src/output_print.c'; then $(CYGPATH_W) 'src/output_print.c'; else $(CYGPATH_W) '$(srcdir)/src/output_print.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_print.Tpo" "$(DEPDIR)/src_mpd-output_print.Po"; else rm -f "$(DEPDIR)/src_mpd-output_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_print.c' object='src_mpd-output_print.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_print.obj `if test -f 'src/output_print.c'; then $(CYGPATH_W) 'src/output_print.c'; else $(CYGPATH_W) '$(srcdir)/src/output_print.c'; fi` + + src_mpd-output_command.o: src/output_command.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_command.o -MD -MP -MF $(DEPDIR)/src_mpd-output_command.Tpo -c -o src_mpd-output_command.o `test -f 'src/output_command.c' || echo '$(srcdir)/'`src/output_command.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_command.Tpo $(DEPDIR)/src_mpd-output_command.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_command.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_command.Tpo" -c -o src_mpd-output_command.o `test -f 'src/output_command.c' || echo '$(srcdir)/'`src/output_command.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_command.Tpo" "$(DEPDIR)/src_mpd-output_command.Po"; else rm -f "$(DEPDIR)/src_mpd-output_command.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_command.c' object='src_mpd-output_command.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_command.o `test -f 'src/output_command.c' || echo '$(srcdir)/'`src/output_command.c + + src_mpd-output_command.obj: src/output_command.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_command.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_command.Tpo -c -o src_mpd-output_command.obj `if test -f 'src/output_command.c'; then $(CYGPATH_W) 'src/output_command.c'; else $(CYGPATH_W) '$(srcdir)/src/output_command.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_command.Tpo $(DEPDIR)/src_mpd-output_command.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_command.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_command.Tpo" -c -o src_mpd-output_command.obj `if test -f 'src/output_command.c'; then $(CYGPATH_W) 'src/output_command.c'; else $(CYGPATH_W) '$(srcdir)/src/output_command.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_command.Tpo" "$(DEPDIR)/src_mpd-output_command.Po"; else rm -f "$(DEPDIR)/src_mpd-output_command.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_command.c' object='src_mpd-output_command.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_command.obj `if test -f 'src/output_command.c'; then $(CYGPATH_W) 'src/output_command.c'; else $(CYGPATH_W) '$(srcdir)/src/output_command.c'; fi` + + src_mpd-output_init.o: src/output_init.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_init.o -MD -MP -MF $(DEPDIR)/src_mpd-output_init.Tpo -c -o src_mpd-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_init.Tpo $(DEPDIR)/src_mpd-output_init.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_init.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_init.Tpo" -c -o src_mpd-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_init.Tpo" "$(DEPDIR)/src_mpd-output_init.Po"; else rm -f "$(DEPDIR)/src_mpd-output_init.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_init.c' object='src_mpd-output_init.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c + + src_mpd-output_init.obj: src/output_init.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_init.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_init.Tpo -c -o src_mpd-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_init.Tpo $(DEPDIR)/src_mpd-output_init.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_init.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_init.Tpo" -c -o src_mpd-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_init.Tpo" "$(DEPDIR)/src_mpd-output_init.Po"; else rm -f "$(DEPDIR)/src_mpd-output_init.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_init.c' object='src_mpd-output_init.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi` + + src_mpd-null_plugin.o: src/output/null_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-null_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-null_plugin.Tpo -c -o src_mpd-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-null_plugin.Tpo $(DEPDIR)/src_mpd-null_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-null_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-null_plugin.Tpo" -c -o src_mpd-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-null_plugin.Tpo" "$(DEPDIR)/src_mpd-null_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-null_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/null_plugin.c' object='src_mpd-null_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c + + src_mpd-null_plugin.obj: src/output/null_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-null_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-null_plugin.Tpo -c -o src_mpd-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-null_plugin.Tpo $(DEPDIR)/src_mpd-null_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-null_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-null_plugin.Tpo" -c -o src_mpd-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-null_plugin.Tpo" "$(DEPDIR)/src_mpd-null_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-null_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/null_plugin.c' object='src_mpd-null_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi` + + src_mpd-alsa_plugin.o: src/output/alsa_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-alsa_plugin.Tpo -c -o src_mpd-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-alsa_plugin.Tpo $(DEPDIR)/src_mpd-alsa_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-alsa_plugin.Tpo" -c -o src_mpd-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-alsa_plugin.Tpo" "$(DEPDIR)/src_mpd-alsa_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-alsa_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/alsa_plugin.c' object='src_mpd-alsa_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c + + src_mpd-alsa_plugin.obj: src/output/alsa_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-alsa_plugin.Tpo -c -o src_mpd-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-alsa_plugin.Tpo $(DEPDIR)/src_mpd-alsa_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-alsa_plugin.Tpo" -c -o src_mpd-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-alsa_plugin.Tpo" "$(DEPDIR)/src_mpd-alsa_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-alsa_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/alsa_plugin.c' object='src_mpd-alsa_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi` + + src_mpd-ao_plugin.o: src/output/ao_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ao_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-ao_plugin.Tpo -c -o src_mpd-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ao_plugin.Tpo $(DEPDIR)/src_mpd-ao_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ao_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-ao_plugin.Tpo" -c -o src_mpd-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ao_plugin.Tpo" "$(DEPDIR)/src_mpd-ao_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-ao_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/ao_plugin.c' object='src_mpd-ao_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c + + src_mpd-ao_plugin.obj: src/output/ao_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ao_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-ao_plugin.Tpo -c -o src_mpd-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ao_plugin.Tpo $(DEPDIR)/src_mpd-ao_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ao_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-ao_plugin.Tpo" -c -o src_mpd-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ao_plugin.Tpo" "$(DEPDIR)/src_mpd-ao_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-ao_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/ao_plugin.c' object='src_mpd-ao_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi` + + src_mpd-fifo_plugin.o: src/output/fifo_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-fifo_plugin.Tpo -c -o src_mpd-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fifo_plugin.Tpo $(DEPDIR)/src_mpd-fifo_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-fifo_plugin.Tpo" -c -o src_mpd-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fifo_plugin.Tpo" "$(DEPDIR)/src_mpd-fifo_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-fifo_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/fifo_plugin.c' object='src_mpd-fifo_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c + + src_mpd-fifo_plugin.obj: src/output/fifo_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-fifo_plugin.Tpo -c -o src_mpd-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fifo_plugin.Tpo $(DEPDIR)/src_mpd-fifo_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-fifo_plugin.Tpo" -c -o src_mpd-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fifo_plugin.Tpo" "$(DEPDIR)/src_mpd-fifo_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-fifo_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/fifo_plugin.c' object='src_mpd-fifo_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi` + + src_mpd-pipe_output_plugin.o: src/output/pipe_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe_output_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-pipe_output_plugin.Tpo -c -o src_mpd-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pipe_output_plugin.Tpo $(DEPDIR)/src_mpd-pipe_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe_output_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo" -c -o src_mpd-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo" "$(DEPDIR)/src_mpd-pipe_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pipe_output_plugin.c' object='src_mpd-pipe_output_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c + + src_mpd-pipe_output_plugin.obj: src/output/pipe_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe_output_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-pipe_output_plugin.Tpo -c -o src_mpd-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pipe_output_plugin.Tpo $(DEPDIR)/src_mpd-pipe_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe_output_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo" -c -o src_mpd-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo" "$(DEPDIR)/src_mpd-pipe_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pipe_output_plugin.c' object='src_mpd-pipe_output_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi` + + src_mpd-jack_plugin.o: src/output/jack_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-jack_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-jack_plugin.Tpo -c -o src_mpd-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-jack_plugin.Tpo $(DEPDIR)/src_mpd-jack_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-jack_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-jack_plugin.Tpo" -c -o src_mpd-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-jack_plugin.Tpo" "$(DEPDIR)/src_mpd-jack_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-jack_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/jack_plugin.c' object='src_mpd-jack_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c + + src_mpd-jack_plugin.obj: src/output/jack_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-jack_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-jack_plugin.Tpo -c -o src_mpd-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-jack_plugin.Tpo $(DEPDIR)/src_mpd-jack_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-jack_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-jack_plugin.Tpo" -c -o src_mpd-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-jack_plugin.Tpo" "$(DEPDIR)/src_mpd-jack_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-jack_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/jack_plugin.c' object='src_mpd-jack_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi` + + src_mpd-mvp_plugin.o: src/output/mvp_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mvp_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mvp_plugin.Tpo -c -o src_mpd-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mvp_plugin.Tpo $(DEPDIR)/src_mpd-mvp_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mvp_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mvp_plugin.Tpo" -c -o src_mpd-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mvp_plugin.Tpo" "$(DEPDIR)/src_mpd-mvp_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mvp_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/mvp_plugin.c' object='src_mpd-mvp_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c + + src_mpd-mvp_plugin.obj: src/output/mvp_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mvp_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mvp_plugin.Tpo -c -o src_mpd-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mvp_plugin.Tpo $(DEPDIR)/src_mpd-mvp_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mvp_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mvp_plugin.Tpo" -c -o src_mpd-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mvp_plugin.Tpo" "$(DEPDIR)/src_mpd-mvp_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mvp_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/mvp_plugin.c' object='src_mpd-mvp_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi` + + src_mpd-oss_plugin.o: src/output/oss_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-oss_plugin.Tpo -c -o src_mpd-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oss_plugin.Tpo $(DEPDIR)/src_mpd-oss_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-oss_plugin.Tpo" -c -o src_mpd-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oss_plugin.Tpo" "$(DEPDIR)/src_mpd-oss_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-oss_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/oss_plugin.c' object='src_mpd-oss_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c + + src_mpd-oss_plugin.obj: src/output/oss_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-oss_plugin.Tpo -c -o src_mpd-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oss_plugin.Tpo $(DEPDIR)/src_mpd-oss_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-oss_plugin.Tpo" -c -o src_mpd-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oss_plugin.Tpo" "$(DEPDIR)/src_mpd-oss_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-oss_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/oss_plugin.c' object='src_mpd-oss_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi` + + src_mpd-osx_plugin.o: src/output/osx_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-osx_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-osx_plugin.Tpo -c -o src_mpd-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-osx_plugin.Tpo $(DEPDIR)/src_mpd-osx_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-osx_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-osx_plugin.Tpo" -c -o src_mpd-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-osx_plugin.Tpo" "$(DEPDIR)/src_mpd-osx_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-osx_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/osx_plugin.c' object='src_mpd-osx_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c + + src_mpd-osx_plugin.obj: src/output/osx_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-osx_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-osx_plugin.Tpo -c -o src_mpd-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-osx_plugin.Tpo $(DEPDIR)/src_mpd-osx_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-osx_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-osx_plugin.Tpo" -c -o src_mpd-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-osx_plugin.Tpo" "$(DEPDIR)/src_mpd-osx_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-osx_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/osx_plugin.c' object='src_mpd-osx_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi` + + src_mpd-pulse_plugin.o: src/output/pulse_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-pulse_plugin.Tpo -c -o src_mpd-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pulse_plugin.Tpo $(DEPDIR)/src_mpd-pulse_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-pulse_plugin.Tpo" -c -o src_mpd-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pulse_plugin.Tpo" "$(DEPDIR)/src_mpd-pulse_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-pulse_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pulse_plugin.c' object='src_mpd-pulse_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c + + src_mpd-pulse_plugin.obj: src/output/pulse_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-pulse_plugin.Tpo -c -o src_mpd-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pulse_plugin.Tpo $(DEPDIR)/src_mpd-pulse_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pulse_plugin.Tpo" -c -o src_mpd-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pulse_plugin.Tpo" "$(DEPDIR)/src_mpd-pulse_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-pulse_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pulse_plugin.c' object='src_mpd-pulse_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi` + + src_mpd-shout_plugin.o: src/output/shout_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-shout_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-shout_plugin.Tpo -c -o src_mpd-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-shout_plugin.Tpo $(DEPDIR)/src_mpd-shout_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-shout_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-shout_plugin.Tpo" -c -o src_mpd-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-shout_plugin.Tpo" "$(DEPDIR)/src_mpd-shout_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-shout_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/shout_plugin.c' object='src_mpd-shout_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c + + src_mpd-shout_plugin.obj: src/output/shout_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-shout_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-shout_plugin.Tpo -c -o src_mpd-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-shout_plugin.Tpo $(DEPDIR)/src_mpd-shout_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-shout_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-shout_plugin.Tpo" -c -o src_mpd-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-shout_plugin.Tpo" "$(DEPDIR)/src_mpd-shout_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-shout_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/shout_plugin.c' object='src_mpd-shout_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi` + + src_mpd-icy_server.o: src/icy_server.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_server.o -MD -MP -MF $(DEPDIR)/src_mpd-icy_server.Tpo -c -o src_mpd-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-icy_server.Tpo $(DEPDIR)/src_mpd-icy_server.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_server.o -MD -MP -MF "$(DEPDIR)/src_mpd-icy_server.Tpo" -c -o src_mpd-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-icy_server.Tpo" "$(DEPDIR)/src_mpd-icy_server.Po"; else rm -f "$(DEPDIR)/src_mpd-icy_server.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_server.c' object='src_mpd-icy_server.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c + + src_mpd-icy_server.obj: src/icy_server.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_server.obj -MD -MP -MF $(DEPDIR)/src_mpd-icy_server.Tpo -c -o src_mpd-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-icy_server.Tpo $(DEPDIR)/src_mpd-icy_server.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_server.obj -MD -MP -MF "$(DEPDIR)/src_mpd-icy_server.Tpo" -c -o src_mpd-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-icy_server.Tpo" "$(DEPDIR)/src_mpd-icy_server.Po"; else rm -f "$(DEPDIR)/src_mpd-icy_server.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_server.c' object='src_mpd-icy_server.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi` + + src_mpd-httpd_client.o: src/output/httpd_client.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_client.o -MD -MP -MF $(DEPDIR)/src_mpd-httpd_client.Tpo -c -o src_mpd-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-httpd_client.Tpo $(DEPDIR)/src_mpd-httpd_client.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_client.o -MD -MP -MF "$(DEPDIR)/src_mpd-httpd_client.Tpo" -c -o src_mpd-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-httpd_client.Tpo" "$(DEPDIR)/src_mpd-httpd_client.Po"; else rm -f "$(DEPDIR)/src_mpd-httpd_client.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_client.c' object='src_mpd-httpd_client.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c + + src_mpd-httpd_client.obj: src/output/httpd_client.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_client.obj -MD -MP -MF $(DEPDIR)/src_mpd-httpd_client.Tpo -c -o src_mpd-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-httpd_client.Tpo $(DEPDIR)/src_mpd-httpd_client.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_client.obj -MD -MP -MF "$(DEPDIR)/src_mpd-httpd_client.Tpo" -c -o src_mpd-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-httpd_client.Tpo" "$(DEPDIR)/src_mpd-httpd_client.Po"; else rm -f "$(DEPDIR)/src_mpd-httpd_client.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_client.c' object='src_mpd-httpd_client.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi` + + src_mpd-httpd_output_plugin.o: src/output/httpd_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_output_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-httpd_output_plugin.Tpo -c -o src_mpd-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-httpd_output_plugin.Tpo $(DEPDIR)/src_mpd-httpd_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_output_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo" -c -o src_mpd-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo" "$(DEPDIR)/src_mpd-httpd_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_output_plugin.c' object='src_mpd-httpd_output_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c + + src_mpd-httpd_output_plugin.obj: src/output/httpd_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_output_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-httpd_output_plugin.Tpo -c -o src_mpd-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-httpd_output_plugin.Tpo $(DEPDIR)/src_mpd-httpd_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_output_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo" -c -o src_mpd-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo" "$(DEPDIR)/src_mpd-httpd_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_output_plugin.c' object='src_mpd-httpd_output_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi` + + src_mpd-solaris_output_plugin.o: src/output/solaris_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-solaris_output_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-solaris_output_plugin.Tpo -c -o src_mpd-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-solaris_output_plugin.Tpo $(DEPDIR)/src_mpd-solaris_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-solaris_output_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo" -c -o src_mpd-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo" "$(DEPDIR)/src_mpd-solaris_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/solaris_output_plugin.c' object='src_mpd-solaris_output_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c + + src_mpd-solaris_output_plugin.obj: src/output/solaris_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-solaris_output_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-solaris_output_plugin.Tpo -c -o src_mpd-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-solaris_output_plugin.Tpo $(DEPDIR)/src_mpd-solaris_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-solaris_output_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo" -c -o src_mpd-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo" "$(DEPDIR)/src_mpd-solaris_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/solaris_output_plugin.c' object='src_mpd-solaris_output_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi` + + src_mpd-mixer_control.o: src/mixer_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_control.o -MD -MP -MF $(DEPDIR)/src_mpd-mixer_control.Tpo -c -o src_mpd-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_control.Tpo $(DEPDIR)/src_mpd-mixer_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_control.o -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_control.Tpo" -c -o src_mpd-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_control.Tpo" "$(DEPDIR)/src_mpd-mixer_control.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='src_mpd-mixer_control.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c + + src_mpd-mixer_control.obj: src/mixer_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_control.obj -MD -MP -MF $(DEPDIR)/src_mpd-mixer_control.Tpo -c -o src_mpd-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_control.Tpo $(DEPDIR)/src_mpd-mixer_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_control.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_control.Tpo" -c -o src_mpd-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_control.Tpo" "$(DEPDIR)/src_mpd-mixer_control.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='src_mpd-mixer_control.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi` + + src_mpd-mixer_all.o: src/mixer_all.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_all.o -MD -MP -MF $(DEPDIR)/src_mpd-mixer_all.Tpo -c -o src_mpd-mixer_all.o `test -f 'src/mixer_all.c' || echo '$(srcdir)/'`src/mixer_all.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_all.Tpo $(DEPDIR)/src_mpd-mixer_all.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_all.o -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_all.Tpo" -c -o src_mpd-mixer_all.o `test -f 'src/mixer_all.c' || echo '$(srcdir)/'`src/mixer_all.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_all.Tpo" "$(DEPDIR)/src_mpd-mixer_all.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_all.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_all.c' object='src_mpd-mixer_all.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_all.o `test -f 'src/mixer_all.c' || echo '$(srcdir)/'`src/mixer_all.c + + src_mpd-mixer_all.obj: src/mixer_all.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_all.obj -MD -MP -MF $(DEPDIR)/src_mpd-mixer_all.Tpo -c -o src_mpd-mixer_all.obj `if test -f 'src/mixer_all.c'; then $(CYGPATH_W) 'src/mixer_all.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_all.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_all.Tpo $(DEPDIR)/src_mpd-mixer_all.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_all.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_all.Tpo" -c -o src_mpd-mixer_all.obj `if test -f 'src/mixer_all.c'; then $(CYGPATH_W) 'src/mixer_all.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_all.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_all.Tpo" "$(DEPDIR)/src_mpd-mixer_all.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_all.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_all.c' object='src_mpd-mixer_all.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_all.obj `if test -f 'src/mixer_all.c'; then $(CYGPATH_W) 'src/mixer_all.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_all.c'; fi` + + src_mpd-mixer_api.o: src/mixer_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_api.o -MD -MP -MF $(DEPDIR)/src_mpd-mixer_api.Tpo -c -o src_mpd-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_api.Tpo $(DEPDIR)/src_mpd-mixer_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_api.o -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_api.Tpo" -c -o src_mpd-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_api.Tpo" "$(DEPDIR)/src_mpd-mixer_api.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='src_mpd-mixer_api.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c + + src_mpd-mixer_api.obj: src/mixer_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_api.obj -MD -MP -MF $(DEPDIR)/src_mpd-mixer_api.Tpo -c -o src_mpd-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_api.Tpo $(DEPDIR)/src_mpd-mixer_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_api.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_api.Tpo" -c -o src_mpd-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_api.Tpo" "$(DEPDIR)/src_mpd-mixer_api.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='src_mpd-mixer_api.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi` + + src_mpd-alsa_mixer.o: src/mixer/alsa_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_mixer.o -MD -MP -MF $(DEPDIR)/src_mpd-alsa_mixer.Tpo -c -o src_mpd-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-alsa_mixer.Tpo $(DEPDIR)/src_mpd-alsa_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_mixer.o -MD -MP -MF "$(DEPDIR)/src_mpd-alsa_mixer.Tpo" -c -o src_mpd-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-alsa_mixer.Tpo" "$(DEPDIR)/src_mpd-alsa_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-alsa_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='src_mpd-alsa_mixer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c + + src_mpd-alsa_mixer.obj: src/mixer/alsa_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_mixer.obj -MD -MP -MF $(DEPDIR)/src_mpd-alsa_mixer.Tpo -c -o src_mpd-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-alsa_mixer.Tpo $(DEPDIR)/src_mpd-alsa_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_mixer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-alsa_mixer.Tpo" -c -o src_mpd-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-alsa_mixer.Tpo" "$(DEPDIR)/src_mpd-alsa_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-alsa_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='src_mpd-alsa_mixer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi` + + src_mpd-oss_mixer.o: src/mixer/oss_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_mixer.o -MD -MP -MF $(DEPDIR)/src_mpd-oss_mixer.Tpo -c -o src_mpd-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oss_mixer.Tpo $(DEPDIR)/src_mpd-oss_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_mixer.o -MD -MP -MF "$(DEPDIR)/src_mpd-oss_mixer.Tpo" -c -o src_mpd-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oss_mixer.Tpo" "$(DEPDIR)/src_mpd-oss_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-oss_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='src_mpd-oss_mixer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c + + src_mpd-oss_mixer.obj: src/mixer/oss_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_mixer.obj -MD -MP -MF $(DEPDIR)/src_mpd-oss_mixer.Tpo -c -o src_mpd-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oss_mixer.Tpo $(DEPDIR)/src_mpd-oss_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_mixer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-oss_mixer.Tpo" -c -o src_mpd-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oss_mixer.Tpo" "$(DEPDIR)/src_mpd-oss_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-oss_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='src_mpd-oss_mixer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi` + + src_mpd-pulse_mixer.o: src/mixer/pulse_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_mixer.o -MD -MP -MF $(DEPDIR)/src_mpd-pulse_mixer.Tpo -c -o src_mpd-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pulse_mixer.Tpo $(DEPDIR)/src_mpd-pulse_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_mixer.o -MD -MP -MF "$(DEPDIR)/src_mpd-pulse_mixer.Tpo" -c -o src_mpd-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pulse_mixer.Tpo" "$(DEPDIR)/src_mpd-pulse_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-pulse_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='src_mpd-pulse_mixer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c + + src_mpd-pulse_mixer.obj: src/mixer/pulse_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_mixer.obj -MD -MP -MF $(DEPDIR)/src_mpd-pulse_mixer.Tpo -c -o src_mpd-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pulse_mixer.Tpo $(DEPDIR)/src_mpd-pulse_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_mixer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pulse_mixer.Tpo" -c -o src_mpd-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pulse_mixer.Tpo" "$(DEPDIR)/src_mpd-pulse_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-pulse_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='src_mpd-pulse_mixer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi` + + src_mpd-notify.o: src/notify.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-notify.o -MD -MP -MF $(DEPDIR)/src_mpd-notify.Tpo -c -o src_mpd-notify.o `test -f 'src/notify.c' || echo '$(srcdir)/'`src/notify.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-notify.Tpo $(DEPDIR)/src_mpd-notify.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-notify.o -MD -MP -MF "$(DEPDIR)/src_mpd-notify.Tpo" -c -o src_mpd-notify.o `test -f 'src/notify.c' || echo '$(srcdir)/'`src/notify.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-notify.Tpo" "$(DEPDIR)/src_mpd-notify.Po"; else rm -f "$(DEPDIR)/src_mpd-notify.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/notify.c' object='src_mpd-notify.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-notify.o `test -f 'src/notify.c' || echo '$(srcdir)/'`src/notify.c + + src_mpd-notify.obj: src/notify.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-notify.obj -MD -MP -MF $(DEPDIR)/src_mpd-notify.Tpo -c -o src_mpd-notify.obj `if test -f 'src/notify.c'; then $(CYGPATH_W) 'src/notify.c'; else $(CYGPATH_W) '$(srcdir)/src/notify.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-notify.Tpo $(DEPDIR)/src_mpd-notify.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-notify.obj -MD -MP -MF "$(DEPDIR)/src_mpd-notify.Tpo" -c -o src_mpd-notify.obj `if test -f 'src/notify.c'; then $(CYGPATH_W) 'src/notify.c'; else $(CYGPATH_W) '$(srcdir)/src/notify.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-notify.Tpo" "$(DEPDIR)/src_mpd-notify.Po"; else rm -f "$(DEPDIR)/src_mpd-notify.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/notify.c' object='src_mpd-notify.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-notify.obj `if test -f 'src/notify.c'; then $(CYGPATH_W) 'src/notify.c'; else $(CYGPATH_W) '$(srcdir)/src/notify.c'; fi` + + src_mpd-audio.o: src/audio.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio.o -MD -MP -MF $(DEPDIR)/src_mpd-audio.Tpo -c -o src_mpd-audio.o `test -f 'src/audio.c' || echo '$(srcdir)/'`src/audio.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audio.Tpo $(DEPDIR)/src_mpd-audio.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio.o -MD -MP -MF "$(DEPDIR)/src_mpd-audio.Tpo" -c -o src_mpd-audio.o `test -f 'src/audio.c' || echo '$(srcdir)/'`src/audio.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audio.Tpo" "$(DEPDIR)/src_mpd-audio.Po"; else rm -f "$(DEPDIR)/src_mpd-audio.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio.c' object='src_mpd-audio.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audio.o `test -f 'src/audio.c' || echo '$(srcdir)/'`src/audio.c + + src_mpd-audio.obj: src/audio.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio.obj -MD -MP -MF $(DEPDIR)/src_mpd-audio.Tpo -c -o src_mpd-audio.obj `if test -f 'src/audio.c'; then $(CYGPATH_W) 'src/audio.c'; else $(CYGPATH_W) '$(srcdir)/src/audio.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audio.Tpo $(DEPDIR)/src_mpd-audio.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio.obj -MD -MP -MF "$(DEPDIR)/src_mpd-audio.Tpo" -c -o src_mpd-audio.obj `if test -f 'src/audio.c'; then $(CYGPATH_W) 'src/audio.c'; else $(CYGPATH_W) '$(srcdir)/src/audio.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audio.Tpo" "$(DEPDIR)/src_mpd-audio.Po"; else rm -f "$(DEPDIR)/src_mpd-audio.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio.c' object='src_mpd-audio.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audio.obj `if test -f 'src/audio.c'; then $(CYGPATH_W) 'src/audio.c'; else $(CYGPATH_W) '$(srcdir)/src/audio.c'; fi` + + src_mpd-audio_parser.o: src/audio_parser.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio_parser.o -MD -MP -MF $(DEPDIR)/src_mpd-audio_parser.Tpo -c -o src_mpd-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audio_parser.Tpo $(DEPDIR)/src_mpd-audio_parser.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio_parser.o -MD -MP -MF "$(DEPDIR)/src_mpd-audio_parser.Tpo" -c -o src_mpd-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audio_parser.Tpo" "$(DEPDIR)/src_mpd-audio_parser.Po"; else rm -f "$(DEPDIR)/src_mpd-audio_parser.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='src_mpd-audio_parser.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c + + src_mpd-audio_parser.obj: src/audio_parser.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio_parser.obj -MD -MP -MF $(DEPDIR)/src_mpd-audio_parser.Tpo -c -o src_mpd-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audio_parser.Tpo $(DEPDIR)/src_mpd-audio_parser.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio_parser.obj -MD -MP -MF "$(DEPDIR)/src_mpd-audio_parser.Tpo" -c -o src_mpd-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audio_parser.Tpo" "$(DEPDIR)/src_mpd-audio_parser.Po"; else rm -f "$(DEPDIR)/src_mpd-audio_parser.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='src_mpd-audio_parser.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi` + + src_mpd-buffer2array.o: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer2array.o -MD -MP -MF $(DEPDIR)/src_mpd-buffer2array.Tpo -c -o src_mpd-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-buffer2array.Tpo $(DEPDIR)/src_mpd-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer2array.o -MD -MP -MF "$(DEPDIR)/src_mpd-buffer2array.Tpo" -c -o src_mpd-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-buffer2array.Tpo" "$(DEPDIR)/src_mpd-buffer2array.Po"; else rm -f "$(DEPDIR)/src_mpd-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='src_mpd-buffer2array.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c + + src_mpd-buffer2array.obj: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer2array.obj -MD -MP -MF $(DEPDIR)/src_mpd-buffer2array.Tpo -c -o src_mpd-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-buffer2array.Tpo $(DEPDIR)/src_mpd-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer2array.obj -MD -MP -MF "$(DEPDIR)/src_mpd-buffer2array.Tpo" -c -o src_mpd-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-buffer2array.Tpo" "$(DEPDIR)/src_mpd-buffer2array.Po"; else rm -f "$(DEPDIR)/src_mpd-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='src_mpd-buffer2array.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` + + src_mpd-command.o: src/command.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-command.o -MD -MP -MF $(DEPDIR)/src_mpd-command.Tpo -c -o src_mpd-command.o `test -f 'src/command.c' || echo '$(srcdir)/'`src/command.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-command.Tpo $(DEPDIR)/src_mpd-command.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-command.o -MD -MP -MF "$(DEPDIR)/src_mpd-command.Tpo" -c -o src_mpd-command.o `test -f 'src/command.c' || echo '$(srcdir)/'`src/command.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-command.Tpo" "$(DEPDIR)/src_mpd-command.Po"; else rm -f "$(DEPDIR)/src_mpd-command.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/command.c' object='src_mpd-command.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-command.o `test -f 'src/command.c' || echo '$(srcdir)/'`src/command.c + + src_mpd-command.obj: src/command.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-command.obj -MD -MP -MF $(DEPDIR)/src_mpd-command.Tpo -c -o src_mpd-command.obj `if test -f 'src/command.c'; then $(CYGPATH_W) 'src/command.c'; else $(CYGPATH_W) '$(srcdir)/src/command.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-command.Tpo $(DEPDIR)/src_mpd-command.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-command.obj -MD -MP -MF "$(DEPDIR)/src_mpd-command.Tpo" -c -o src_mpd-command.obj `if test -f 'src/command.c'; then $(CYGPATH_W) 'src/command.c'; else $(CYGPATH_W) '$(srcdir)/src/command.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-command.Tpo" "$(DEPDIR)/src_mpd-command.Po"; else rm -f "$(DEPDIR)/src_mpd-command.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/command.c' object='src_mpd-command.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-command.obj `if test -f 'src/command.c'; then $(CYGPATH_W) 'src/command.c'; else $(CYGPATH_W) '$(srcdir)/src/command.c'; fi` + + src_mpd-idle.o: src/idle.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-idle.o -MD -MP -MF $(DEPDIR)/src_mpd-idle.Tpo -c -o src_mpd-idle.o `test -f 'src/idle.c' || echo '$(srcdir)/'`src/idle.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-idle.Tpo $(DEPDIR)/src_mpd-idle.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-idle.o -MD -MP -MF "$(DEPDIR)/src_mpd-idle.Tpo" -c -o src_mpd-idle.o `test -f 'src/idle.c' || echo '$(srcdir)/'`src/idle.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-idle.Tpo" "$(DEPDIR)/src_mpd-idle.Po"; else rm -f "$(DEPDIR)/src_mpd-idle.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/idle.c' object='src_mpd-idle.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-idle.o `test -f 'src/idle.c' || echo '$(srcdir)/'`src/idle.c + + src_mpd-idle.obj: src/idle.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-idle.obj -MD -MP -MF $(DEPDIR)/src_mpd-idle.Tpo -c -o src_mpd-idle.obj `if test -f 'src/idle.c'; then $(CYGPATH_W) 'src/idle.c'; else $(CYGPATH_W) '$(srcdir)/src/idle.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-idle.Tpo $(DEPDIR)/src_mpd-idle.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-idle.obj -MD -MP -MF "$(DEPDIR)/src_mpd-idle.Tpo" -c -o src_mpd-idle.obj `if test -f 'src/idle.c'; then $(CYGPATH_W) 'src/idle.c'; else $(CYGPATH_W) '$(srcdir)/src/idle.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-idle.Tpo" "$(DEPDIR)/src_mpd-idle.Po"; else rm -f "$(DEPDIR)/src_mpd-idle.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/idle.c' object='src_mpd-idle.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-idle.obj `if test -f 'src/idle.c'; then $(CYGPATH_W) 'src/idle.c'; else $(CYGPATH_W) '$(srcdir)/src/idle.c'; fi` + + src_mpd-cmdline.o: src/cmdline.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cmdline.o -MD -MP -MF $(DEPDIR)/src_mpd-cmdline.Tpo -c -o src_mpd-cmdline.o `test -f 'src/cmdline.c' || echo '$(srcdir)/'`src/cmdline.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-cmdline.Tpo $(DEPDIR)/src_mpd-cmdline.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cmdline.o -MD -MP -MF "$(DEPDIR)/src_mpd-cmdline.Tpo" -c -o src_mpd-cmdline.o `test -f 'src/cmdline.c' || echo '$(srcdir)/'`src/cmdline.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-cmdline.Tpo" "$(DEPDIR)/src_mpd-cmdline.Po"; else rm -f "$(DEPDIR)/src_mpd-cmdline.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cmdline.c' object='src_mpd-cmdline.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-cmdline.o `test -f 'src/cmdline.c' || echo '$(srcdir)/'`src/cmdline.c + + src_mpd-cmdline.obj: src/cmdline.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cmdline.obj -MD -MP -MF $(DEPDIR)/src_mpd-cmdline.Tpo -c -o src_mpd-cmdline.obj `if test -f 'src/cmdline.c'; then $(CYGPATH_W) 'src/cmdline.c'; else $(CYGPATH_W) '$(srcdir)/src/cmdline.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-cmdline.Tpo $(DEPDIR)/src_mpd-cmdline.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cmdline.obj -MD -MP -MF "$(DEPDIR)/src_mpd-cmdline.Tpo" -c -o src_mpd-cmdline.obj `if test -f 'src/cmdline.c'; then $(CYGPATH_W) 'src/cmdline.c'; else $(CYGPATH_W) '$(srcdir)/src/cmdline.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-cmdline.Tpo" "$(DEPDIR)/src_mpd-cmdline.Po"; else rm -f "$(DEPDIR)/src_mpd-cmdline.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cmdline.c' object='src_mpd-cmdline.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-cmdline.obj `if test -f 'src/cmdline.c'; then $(CYGPATH_W) 'src/cmdline.c'; else $(CYGPATH_W) '$(srcdir)/src/cmdline.c'; fi` + + src_mpd-conf.o: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-conf.o -MD -MP -MF $(DEPDIR)/src_mpd-conf.Tpo -c -o src_mpd-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-conf.Tpo $(DEPDIR)/src_mpd-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-conf.o -MD -MP -MF "$(DEPDIR)/src_mpd-conf.Tpo" -c -o src_mpd-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-conf.Tpo" "$(DEPDIR)/src_mpd-conf.Po"; else rm -f "$(DEPDIR)/src_mpd-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='src_mpd-conf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c + + src_mpd-conf.obj: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-conf.obj -MD -MP -MF $(DEPDIR)/src_mpd-conf.Tpo -c -o src_mpd-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-conf.Tpo $(DEPDIR)/src_mpd-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-conf.obj -MD -MP -MF "$(DEPDIR)/src_mpd-conf.Tpo" -c -o src_mpd-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-conf.Tpo" "$(DEPDIR)/src_mpd-conf.Po"; else rm -f "$(DEPDIR)/src_mpd-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='src_mpd-conf.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` + + src_mpd-crossfade.o: src/crossfade.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-crossfade.o -MD -MP -MF $(DEPDIR)/src_mpd-crossfade.Tpo -c -o src_mpd-crossfade.o `test -f 'src/crossfade.c' || echo '$(srcdir)/'`src/crossfade.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-crossfade.Tpo $(DEPDIR)/src_mpd-crossfade.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-crossfade.o -MD -MP -MF "$(DEPDIR)/src_mpd-crossfade.Tpo" -c -o src_mpd-crossfade.o `test -f 'src/crossfade.c' || echo '$(srcdir)/'`src/crossfade.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-crossfade.Tpo" "$(DEPDIR)/src_mpd-crossfade.Po"; else rm -f "$(DEPDIR)/src_mpd-crossfade.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/crossfade.c' object='src_mpd-crossfade.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-crossfade.o `test -f 'src/crossfade.c' || echo '$(srcdir)/'`src/crossfade.c + + src_mpd-crossfade.obj: src/crossfade.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-crossfade.obj -MD -MP -MF $(DEPDIR)/src_mpd-crossfade.Tpo -c -o src_mpd-crossfade.obj `if test -f 'src/crossfade.c'; then $(CYGPATH_W) 'src/crossfade.c'; else $(CYGPATH_W) '$(srcdir)/src/crossfade.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-crossfade.Tpo $(DEPDIR)/src_mpd-crossfade.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-crossfade.obj -MD -MP -MF "$(DEPDIR)/src_mpd-crossfade.Tpo" -c -o src_mpd-crossfade.obj `if test -f 'src/crossfade.c'; then $(CYGPATH_W) 'src/crossfade.c'; else $(CYGPATH_W) '$(srcdir)/src/crossfade.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-crossfade.Tpo" "$(DEPDIR)/src_mpd-crossfade.Po"; else rm -f "$(DEPDIR)/src_mpd-crossfade.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/crossfade.c' object='src_mpd-crossfade.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-crossfade.obj `if test -f 'src/crossfade.c'; then $(CYGPATH_W) 'src/crossfade.c'; else $(CYGPATH_W) '$(srcdir)/src/crossfade.c'; fi` + + src_mpd-dbUtils.o: src/dbUtils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dbUtils.o -MD -MP -MF $(DEPDIR)/src_mpd-dbUtils.Tpo -c -o src_mpd-dbUtils.o `test -f 'src/dbUtils.c' || echo '$(srcdir)/'`src/dbUtils.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-dbUtils.Tpo $(DEPDIR)/src_mpd-dbUtils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dbUtils.o -MD -MP -MF "$(DEPDIR)/src_mpd-dbUtils.Tpo" -c -o src_mpd-dbUtils.o `test -f 'src/dbUtils.c' || echo '$(srcdir)/'`src/dbUtils.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-dbUtils.Tpo" "$(DEPDIR)/src_mpd-dbUtils.Po"; else rm -f "$(DEPDIR)/src_mpd-dbUtils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dbUtils.c' object='src_mpd-dbUtils.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-dbUtils.o `test -f 'src/dbUtils.c' || echo '$(srcdir)/'`src/dbUtils.c + + src_mpd-dbUtils.obj: src/dbUtils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dbUtils.obj -MD -MP -MF $(DEPDIR)/src_mpd-dbUtils.Tpo -c -o src_mpd-dbUtils.obj `if test -f 'src/dbUtils.c'; then $(CYGPATH_W) 'src/dbUtils.c'; else $(CYGPATH_W) '$(srcdir)/src/dbUtils.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-dbUtils.Tpo $(DEPDIR)/src_mpd-dbUtils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dbUtils.obj -MD -MP -MF "$(DEPDIR)/src_mpd-dbUtils.Tpo" -c -o src_mpd-dbUtils.obj `if test -f 'src/dbUtils.c'; then $(CYGPATH_W) 'src/dbUtils.c'; else $(CYGPATH_W) '$(srcdir)/src/dbUtils.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-dbUtils.Tpo" "$(DEPDIR)/src_mpd-dbUtils.Po"; else rm -f "$(DEPDIR)/src_mpd-dbUtils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dbUtils.c' object='src_mpd-dbUtils.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-dbUtils.obj `if test -f 'src/dbUtils.c'; then $(CYGPATH_W) 'src/dbUtils.c'; else $(CYGPATH_W) '$(srcdir)/src/dbUtils.c'; fi` + + src_mpd-decoder_thread.o: src/decoder_thread.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_thread.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_thread.Tpo -c -o src_mpd-decoder_thread.o `test -f 'src/decoder_thread.c' || echo '$(srcdir)/'`src/decoder_thread.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_thread.Tpo $(DEPDIR)/src_mpd-decoder_thread.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_thread.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_thread.Tpo" -c -o src_mpd-decoder_thread.o `test -f 'src/decoder_thread.c' || echo '$(srcdir)/'`src/decoder_thread.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_thread.Tpo" "$(DEPDIR)/src_mpd-decoder_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_thread.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_thread.c' object='src_mpd-decoder_thread.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_thread.o `test -f 'src/decoder_thread.c' || echo '$(srcdir)/'`src/decoder_thread.c + + src_mpd-decoder_thread.obj: src/decoder_thread.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_thread.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_thread.Tpo -c -o src_mpd-decoder_thread.obj `if test -f 'src/decoder_thread.c'; then $(CYGPATH_W) 'src/decoder_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_thread.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_thread.Tpo $(DEPDIR)/src_mpd-decoder_thread.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_thread.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_thread.Tpo" -c -o src_mpd-decoder_thread.obj `if test -f 'src/decoder_thread.c'; then $(CYGPATH_W) 'src/decoder_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_thread.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_thread.Tpo" "$(DEPDIR)/src_mpd-decoder_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_thread.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_thread.c' object='src_mpd-decoder_thread.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_thread.obj `if test -f 'src/decoder_thread.c'; then $(CYGPATH_W) 'src/decoder_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_thread.c'; fi` + + src_mpd-decoder_control.o: src/decoder_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_control.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_control.Tpo -c -o src_mpd-decoder_control.o `test -f 'src/decoder_control.c' || echo '$(srcdir)/'`src/decoder_control.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_control.Tpo $(DEPDIR)/src_mpd-decoder_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_control.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_control.Tpo" -c -o src_mpd-decoder_control.o `test -f 'src/decoder_control.c' || echo '$(srcdir)/'`src/decoder_control.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_control.Tpo" "$(DEPDIR)/src_mpd-decoder_control.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_control.c' object='src_mpd-decoder_control.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_control.o `test -f 'src/decoder_control.c' || echo '$(srcdir)/'`src/decoder_control.c + + src_mpd-decoder_control.obj: src/decoder_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_control.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_control.Tpo -c -o src_mpd-decoder_control.obj `if test -f 'src/decoder_control.c'; then $(CYGPATH_W) 'src/decoder_control.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_control.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_control.Tpo $(DEPDIR)/src_mpd-decoder_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_control.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_control.Tpo" -c -o src_mpd-decoder_control.obj `if test -f 'src/decoder_control.c'; then $(CYGPATH_W) 'src/decoder_control.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_control.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_control.Tpo" "$(DEPDIR)/src_mpd-decoder_control.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_control.c' object='src_mpd-decoder_control.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_control.obj `if test -f 'src/decoder_control.c'; then $(CYGPATH_W) 'src/decoder_control.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_control.c'; fi` + + src_mpd-decoder_api.o: src/decoder_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_api.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_api.Tpo -c -o src_mpd-decoder_api.o `test -f 'src/decoder_api.c' || echo '$(srcdir)/'`src/decoder_api.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_api.Tpo $(DEPDIR)/src_mpd-decoder_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_api.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_api.Tpo" -c -o src_mpd-decoder_api.o `test -f 'src/decoder_api.c' || echo '$(srcdir)/'`src/decoder_api.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_api.Tpo" "$(DEPDIR)/src_mpd-decoder_api.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_api.c' object='src_mpd-decoder_api.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_api.o `test -f 'src/decoder_api.c' || echo '$(srcdir)/'`src/decoder_api.c + + src_mpd-decoder_api.obj: src/decoder_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_api.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_api.Tpo -c -o src_mpd-decoder_api.obj `if test -f 'src/decoder_api.c'; then $(CYGPATH_W) 'src/decoder_api.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_api.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_api.Tpo $(DEPDIR)/src_mpd-decoder_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_api.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_api.Tpo" -c -o src_mpd-decoder_api.obj `if test -f 'src/decoder_api.c'; then $(CYGPATH_W) 'src/decoder_api.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_api.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_api.Tpo" "$(DEPDIR)/src_mpd-decoder_api.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_api.c' object='src_mpd-decoder_api.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_api.obj `if test -f 'src/decoder_api.c'; then $(CYGPATH_W) 'src/decoder_api.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_api.c'; fi` + + src_mpd-decoder_internal.o: src/decoder_internal.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_internal.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_internal.Tpo -c -o src_mpd-decoder_internal.o `test -f 'src/decoder_internal.c' || echo '$(srcdir)/'`src/decoder_internal.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_internal.Tpo $(DEPDIR)/src_mpd-decoder_internal.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_internal.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_internal.Tpo" -c -o src_mpd-decoder_internal.o `test -f 'src/decoder_internal.c' || echo '$(srcdir)/'`src/decoder_internal.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_internal.Tpo" "$(DEPDIR)/src_mpd-decoder_internal.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_internal.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_internal.c' object='src_mpd-decoder_internal.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_internal.o `test -f 'src/decoder_internal.c' || echo '$(srcdir)/'`src/decoder_internal.c + + src_mpd-decoder_internal.obj: src/decoder_internal.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_internal.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_internal.Tpo -c -o src_mpd-decoder_internal.obj `if test -f 'src/decoder_internal.c'; then $(CYGPATH_W) 'src/decoder_internal.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_internal.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_internal.Tpo $(DEPDIR)/src_mpd-decoder_internal.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_internal.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_internal.Tpo" -c -o src_mpd-decoder_internal.obj `if test -f 'src/decoder_internal.c'; then $(CYGPATH_W) 'src/decoder_internal.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_internal.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_internal.Tpo" "$(DEPDIR)/src_mpd-decoder_internal.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_internal.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_internal.c' object='src_mpd-decoder_internal.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_internal.obj `if test -f 'src/decoder_internal.c'; then $(CYGPATH_W) 'src/decoder_internal.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_internal.c'; fi` + + src_mpd-directory.o: src/directory.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory.o -MD -MP -MF $(DEPDIR)/src_mpd-directory.Tpo -c -o src_mpd-directory.o `test -f 'src/directory.c' || echo '$(srcdir)/'`src/directory.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory.Tpo $(DEPDIR)/src_mpd-directory.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory.o -MD -MP -MF "$(DEPDIR)/src_mpd-directory.Tpo" -c -o src_mpd-directory.o `test -f 'src/directory.c' || echo '$(srcdir)/'`src/directory.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory.Tpo" "$(DEPDIR)/src_mpd-directory.Po"; else rm -f "$(DEPDIR)/src_mpd-directory.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory.c' object='src_mpd-directory.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory.o `test -f 'src/directory.c' || echo '$(srcdir)/'`src/directory.c + + src_mpd-directory.obj: src/directory.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory.obj -MD -MP -MF $(DEPDIR)/src_mpd-directory.Tpo -c -o src_mpd-directory.obj `if test -f 'src/directory.c'; then $(CYGPATH_W) 'src/directory.c'; else $(CYGPATH_W) '$(srcdir)/src/directory.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory.Tpo $(DEPDIR)/src_mpd-directory.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory.obj -MD -MP -MF "$(DEPDIR)/src_mpd-directory.Tpo" -c -o src_mpd-directory.obj `if test -f 'src/directory.c'; then $(CYGPATH_W) 'src/directory.c'; else $(CYGPATH_W) '$(srcdir)/src/directory.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory.Tpo" "$(DEPDIR)/src_mpd-directory.Po"; else rm -f "$(DEPDIR)/src_mpd-directory.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory.c' object='src_mpd-directory.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory.obj `if test -f 'src/directory.c'; then $(CYGPATH_W) 'src/directory.c'; else $(CYGPATH_W) '$(srcdir)/src/directory.c'; fi` + + src_mpd-directory_save.o: src/directory_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_save.o -MD -MP -MF $(DEPDIR)/src_mpd-directory_save.Tpo -c -o src_mpd-directory_save.o `test -f 'src/directory_save.c' || echo '$(srcdir)/'`src/directory_save.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory_save.Tpo $(DEPDIR)/src_mpd-directory_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_save.o -MD -MP -MF "$(DEPDIR)/src_mpd-directory_save.Tpo" -c -o src_mpd-directory_save.o `test -f 'src/directory_save.c' || echo '$(srcdir)/'`src/directory_save.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory_save.Tpo" "$(DEPDIR)/src_mpd-directory_save.Po"; else rm -f "$(DEPDIR)/src_mpd-directory_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory_save.c' object='src_mpd-directory_save.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory_save.o `test -f 'src/directory_save.c' || echo '$(srcdir)/'`src/directory_save.c + + src_mpd-directory_save.obj: src/directory_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_save.obj -MD -MP -MF $(DEPDIR)/src_mpd-directory_save.Tpo -c -o src_mpd-directory_save.obj `if test -f 'src/directory_save.c'; then $(CYGPATH_W) 'src/directory_save.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_save.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory_save.Tpo $(DEPDIR)/src_mpd-directory_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_save.obj -MD -MP -MF "$(DEPDIR)/src_mpd-directory_save.Tpo" -c -o src_mpd-directory_save.obj `if test -f 'src/directory_save.c'; then $(CYGPATH_W) 'src/directory_save.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_save.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory_save.Tpo" "$(DEPDIR)/src_mpd-directory_save.Po"; else rm -f "$(DEPDIR)/src_mpd-directory_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory_save.c' object='src_mpd-directory_save.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory_save.obj `if test -f 'src/directory_save.c'; then $(CYGPATH_W) 'src/directory_save.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_save.c'; fi` + + src_mpd-directory_print.o: src/directory_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_print.o -MD -MP -MF $(DEPDIR)/src_mpd-directory_print.Tpo -c -o src_mpd-directory_print.o `test -f 'src/directory_print.c' || echo '$(srcdir)/'`src/directory_print.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory_print.Tpo $(DEPDIR)/src_mpd-directory_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-directory_print.Tpo" -c -o src_mpd-directory_print.o `test -f 'src/directory_print.c' || echo '$(srcdir)/'`src/directory_print.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory_print.Tpo" "$(DEPDIR)/src_mpd-directory_print.Po"; else rm -f "$(DEPDIR)/src_mpd-directory_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory_print.c' object='src_mpd-directory_print.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory_print.o `test -f 'src/directory_print.c' || echo '$(srcdir)/'`src/directory_print.c + + src_mpd-directory_print.obj: src/directory_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-directory_print.Tpo -c -o src_mpd-directory_print.obj `if test -f 'src/directory_print.c'; then $(CYGPATH_W) 'src/directory_print.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_print.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory_print.Tpo $(DEPDIR)/src_mpd-directory_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-directory_print.Tpo" -c -o src_mpd-directory_print.obj `if test -f 'src/directory_print.c'; then $(CYGPATH_W) 'src/directory_print.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_print.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory_print.Tpo" "$(DEPDIR)/src_mpd-directory_print.Po"; else rm -f "$(DEPDIR)/src_mpd-directory_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory_print.c' object='src_mpd-directory_print.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory_print.obj `if test -f 'src/directory_print.c'; then $(CYGPATH_W) 'src/directory_print.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_print.c'; fi` + + src_mpd-database.o: src/database.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-database.o -MD -MP -MF $(DEPDIR)/src_mpd-database.Tpo -c -o src_mpd-database.o `test -f 'src/database.c' || echo '$(srcdir)/'`src/database.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-database.Tpo $(DEPDIR)/src_mpd-database.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-database.o -MD -MP -MF "$(DEPDIR)/src_mpd-database.Tpo" -c -o src_mpd-database.o `test -f 'src/database.c' || echo '$(srcdir)/'`src/database.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-database.Tpo" "$(DEPDIR)/src_mpd-database.Po"; else rm -f "$(DEPDIR)/src_mpd-database.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/database.c' object='src_mpd-database.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-database.o `test -f 'src/database.c' || echo '$(srcdir)/'`src/database.c + + src_mpd-database.obj: src/database.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-database.obj -MD -MP -MF $(DEPDIR)/src_mpd-database.Tpo -c -o src_mpd-database.obj `if test -f 'src/database.c'; then $(CYGPATH_W) 'src/database.c'; else $(CYGPATH_W) '$(srcdir)/src/database.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-database.Tpo $(DEPDIR)/src_mpd-database.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-database.obj -MD -MP -MF "$(DEPDIR)/src_mpd-database.Tpo" -c -o src_mpd-database.obj `if test -f 'src/database.c'; then $(CYGPATH_W) 'src/database.c'; else $(CYGPATH_W) '$(srcdir)/src/database.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-database.Tpo" "$(DEPDIR)/src_mpd-database.Po"; else rm -f "$(DEPDIR)/src_mpd-database.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/database.c' object='src_mpd-database.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-database.obj `if test -f 'src/database.c'; then $(CYGPATH_W) 'src/database.c'; else $(CYGPATH_W) '$(srcdir)/src/database.c'; fi` + + src_mpd-dirvec.o: src/dirvec.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dirvec.o -MD -MP -MF $(DEPDIR)/src_mpd-dirvec.Tpo -c -o src_mpd-dirvec.o `test -f 'src/dirvec.c' || echo '$(srcdir)/'`src/dirvec.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-dirvec.Tpo $(DEPDIR)/src_mpd-dirvec.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dirvec.o -MD -MP -MF "$(DEPDIR)/src_mpd-dirvec.Tpo" -c -o src_mpd-dirvec.o `test -f 'src/dirvec.c' || echo '$(srcdir)/'`src/dirvec.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-dirvec.Tpo" "$(DEPDIR)/src_mpd-dirvec.Po"; else rm -f "$(DEPDIR)/src_mpd-dirvec.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dirvec.c' object='src_mpd-dirvec.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-dirvec.o `test -f 'src/dirvec.c' || echo '$(srcdir)/'`src/dirvec.c + + src_mpd-dirvec.obj: src/dirvec.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dirvec.obj -MD -MP -MF $(DEPDIR)/src_mpd-dirvec.Tpo -c -o src_mpd-dirvec.obj `if test -f 'src/dirvec.c'; then $(CYGPATH_W) 'src/dirvec.c'; else $(CYGPATH_W) '$(srcdir)/src/dirvec.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-dirvec.Tpo $(DEPDIR)/src_mpd-dirvec.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dirvec.obj -MD -MP -MF "$(DEPDIR)/src_mpd-dirvec.Tpo" -c -o src_mpd-dirvec.obj `if test -f 'src/dirvec.c'; then $(CYGPATH_W) 'src/dirvec.c'; else $(CYGPATH_W) '$(srcdir)/src/dirvec.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-dirvec.Tpo" "$(DEPDIR)/src_mpd-dirvec.Po"; else rm -f "$(DEPDIR)/src_mpd-dirvec.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dirvec.c' object='src_mpd-dirvec.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-dirvec.obj `if test -f 'src/dirvec.c'; then $(CYGPATH_W) 'src/dirvec.c'; else $(CYGPATH_W) '$(srcdir)/src/dirvec.c'; fi` + + src_mpd-fifo_buffer.o: src/fifo_buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_buffer.o -MD -MP -MF $(DEPDIR)/src_mpd-fifo_buffer.Tpo -c -o src_mpd-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fifo_buffer.Tpo $(DEPDIR)/src_mpd-fifo_buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_buffer.o -MD -MP -MF "$(DEPDIR)/src_mpd-fifo_buffer.Tpo" -c -o src_mpd-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fifo_buffer.Tpo" "$(DEPDIR)/src_mpd-fifo_buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-fifo_buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/fifo_buffer.c' object='src_mpd-fifo_buffer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c + + src_mpd-fifo_buffer.obj: src/fifo_buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_buffer.obj -MD -MP -MF $(DEPDIR)/src_mpd-fifo_buffer.Tpo -c -o src_mpd-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fifo_buffer.Tpo $(DEPDIR)/src_mpd-fifo_buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_buffer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-fifo_buffer.Tpo" -c -o src_mpd-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fifo_buffer.Tpo" "$(DEPDIR)/src_mpd-fifo_buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-fifo_buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/fifo_buffer.c' object='src_mpd-fifo_buffer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi` + + src_mpd-update.o: src/update.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-update.o -MD -MP -MF $(DEPDIR)/src_mpd-update.Tpo -c -o src_mpd-update.o `test -f 'src/update.c' || echo '$(srcdir)/'`src/update.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-update.Tpo $(DEPDIR)/src_mpd-update.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-update.o -MD -MP -MF "$(DEPDIR)/src_mpd-update.Tpo" -c -o src_mpd-update.o `test -f 'src/update.c' || echo '$(srcdir)/'`src/update.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-update.Tpo" "$(DEPDIR)/src_mpd-update.Po"; else rm -f "$(DEPDIR)/src_mpd-update.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/update.c' object='src_mpd-update.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-update.o `test -f 'src/update.c' || echo '$(srcdir)/'`src/update.c + + src_mpd-update.obj: src/update.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-update.obj -MD -MP -MF $(DEPDIR)/src_mpd-update.Tpo -c -o src_mpd-update.obj `if test -f 'src/update.c'; then $(CYGPATH_W) 'src/update.c'; else $(CYGPATH_W) '$(srcdir)/src/update.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-update.Tpo $(DEPDIR)/src_mpd-update.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-update.obj -MD -MP -MF "$(DEPDIR)/src_mpd-update.Tpo" -c -o src_mpd-update.obj `if test -f 'src/update.c'; then $(CYGPATH_W) 'src/update.c'; else $(CYGPATH_W) '$(srcdir)/src/update.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-update.Tpo" "$(DEPDIR)/src_mpd-update.Po"; else rm -f "$(DEPDIR)/src_mpd-update.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/update.c' object='src_mpd-update.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-update.obj `if test -f 'src/update.c'; then $(CYGPATH_W) 'src/update.c'; else $(CYGPATH_W) '$(srcdir)/src/update.c'; fi` + + src_mpd-client.o: src/client.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-client.o -MD -MP -MF $(DEPDIR)/src_mpd-client.Tpo -c -o src_mpd-client.o `test -f 'src/client.c' || echo '$(srcdir)/'`src/client.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-client.Tpo $(DEPDIR)/src_mpd-client.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-client.o -MD -MP -MF "$(DEPDIR)/src_mpd-client.Tpo" -c -o src_mpd-client.o `test -f 'src/client.c' || echo '$(srcdir)/'`src/client.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-client.Tpo" "$(DEPDIR)/src_mpd-client.Po"; else rm -f "$(DEPDIR)/src_mpd-client.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/client.c' object='src_mpd-client.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-client.o `test -f 'src/client.c' || echo '$(srcdir)/'`src/client.c + + src_mpd-client.obj: src/client.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-client.obj -MD -MP -MF $(DEPDIR)/src_mpd-client.Tpo -c -o src_mpd-client.obj `if test -f 'src/client.c'; then $(CYGPATH_W) 'src/client.c'; else $(CYGPATH_W) '$(srcdir)/src/client.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-client.Tpo $(DEPDIR)/src_mpd-client.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-client.obj -MD -MP -MF "$(DEPDIR)/src_mpd-client.Tpo" -c -o src_mpd-client.obj `if test -f 'src/client.c'; then $(CYGPATH_W) 'src/client.c'; else $(CYGPATH_W) '$(srcdir)/src/client.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-client.Tpo" "$(DEPDIR)/src_mpd-client.Po"; else rm -f "$(DEPDIR)/src_mpd-client.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/client.c' object='src_mpd-client.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-client.obj `if test -f 'src/client.c'; then $(CYGPATH_W) 'src/client.c'; else $(CYGPATH_W) '$(srcdir)/src/client.c'; fi` + + src_mpd-listen.o: src/listen.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-listen.o -MD -MP -MF $(DEPDIR)/src_mpd-listen.Tpo -c -o src_mpd-listen.o `test -f 'src/listen.c' || echo '$(srcdir)/'`src/listen.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-listen.Tpo $(DEPDIR)/src_mpd-listen.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-listen.o -MD -MP -MF "$(DEPDIR)/src_mpd-listen.Tpo" -c -o src_mpd-listen.o `test -f 'src/listen.c' || echo '$(srcdir)/'`src/listen.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-listen.Tpo" "$(DEPDIR)/src_mpd-listen.Po"; else rm -f "$(DEPDIR)/src_mpd-listen.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/listen.c' object='src_mpd-listen.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-listen.o `test -f 'src/listen.c' || echo '$(srcdir)/'`src/listen.c + + src_mpd-listen.obj: src/listen.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-listen.obj -MD -MP -MF $(DEPDIR)/src_mpd-listen.Tpo -c -o src_mpd-listen.obj `if test -f 'src/listen.c'; then $(CYGPATH_W) 'src/listen.c'; else $(CYGPATH_W) '$(srcdir)/src/listen.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-listen.Tpo $(DEPDIR)/src_mpd-listen.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-listen.obj -MD -MP -MF "$(DEPDIR)/src_mpd-listen.Tpo" -c -o src_mpd-listen.obj `if test -f 'src/listen.c'; then $(CYGPATH_W) 'src/listen.c'; else $(CYGPATH_W) '$(srcdir)/src/listen.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-listen.Tpo" "$(DEPDIR)/src_mpd-listen.Po"; else rm -f "$(DEPDIR)/src_mpd-listen.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/listen.c' object='src_mpd-listen.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-listen.obj `if test -f 'src/listen.c'; then $(CYGPATH_W) 'src/listen.c'; else $(CYGPATH_W) '$(srcdir)/src/listen.c'; fi` + + src_mpd-log.o: src/log.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-log.o -MD -MP -MF $(DEPDIR)/src_mpd-log.Tpo -c -o src_mpd-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-log.Tpo $(DEPDIR)/src_mpd-log.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-log.o -MD -MP -MF "$(DEPDIR)/src_mpd-log.Tpo" -c -o src_mpd-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-log.Tpo" "$(DEPDIR)/src_mpd-log.Po"; else rm -f "$(DEPDIR)/src_mpd-log.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='src_mpd-log.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c + + src_mpd-log.obj: src/log.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-log.obj -MD -MP -MF $(DEPDIR)/src_mpd-log.Tpo -c -o src_mpd-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-log.Tpo $(DEPDIR)/src_mpd-log.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-log.obj -MD -MP -MF "$(DEPDIR)/src_mpd-log.Tpo" -c -o src_mpd-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-log.Tpo" "$(DEPDIR)/src_mpd-log.Po"; else rm -f "$(DEPDIR)/src_mpd-log.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='src_mpd-log.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi` + + src_mpd-ls.o: src/ls.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ls.o -MD -MP -MF $(DEPDIR)/src_mpd-ls.Tpo -c -o src_mpd-ls.o `test -f 'src/ls.c' || echo '$(srcdir)/'`src/ls.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ls.Tpo $(DEPDIR)/src_mpd-ls.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ls.o -MD -MP -MF "$(DEPDIR)/src_mpd-ls.Tpo" -c -o src_mpd-ls.o `test -f 'src/ls.c' || echo '$(srcdir)/'`src/ls.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ls.Tpo" "$(DEPDIR)/src_mpd-ls.Po"; else rm -f "$(DEPDIR)/src_mpd-ls.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/ls.c' object='src_mpd-ls.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ls.o `test -f 'src/ls.c' || echo '$(srcdir)/'`src/ls.c + + src_mpd-ls.obj: src/ls.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ls.obj -MD -MP -MF $(DEPDIR)/src_mpd-ls.Tpo -c -o src_mpd-ls.obj `if test -f 'src/ls.c'; then $(CYGPATH_W) 'src/ls.c'; else $(CYGPATH_W) '$(srcdir)/src/ls.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ls.Tpo $(DEPDIR)/src_mpd-ls.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ls.obj -MD -MP -MF "$(DEPDIR)/src_mpd-ls.Tpo" -c -o src_mpd-ls.obj `if test -f 'src/ls.c'; then $(CYGPATH_W) 'src/ls.c'; else $(CYGPATH_W) '$(srcdir)/src/ls.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ls.Tpo" "$(DEPDIR)/src_mpd-ls.Po"; else rm -f "$(DEPDIR)/src_mpd-ls.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/ls.c' object='src_mpd-ls.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ls.obj `if test -f 'src/ls.c'; then $(CYGPATH_W) 'src/ls.c'; else $(CYGPATH_W) '$(srcdir)/src/ls.c'; fi` + + src_mpd-main.o: src/main.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-main.o -MD -MP -MF $(DEPDIR)/src_mpd-main.Tpo -c -o src_mpd-main.o `test -f 'src/main.c' || echo '$(srcdir)/'`src/main.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-main.Tpo $(DEPDIR)/src_mpd-main.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-main.o -MD -MP -MF "$(DEPDIR)/src_mpd-main.Tpo" -c -o src_mpd-main.o `test -f 'src/main.c' || echo '$(srcdir)/'`src/main.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-main.Tpo" "$(DEPDIR)/src_mpd-main.Po"; else rm -f "$(DEPDIR)/src_mpd-main.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/main.c' object='src_mpd-main.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-main.o `test -f 'src/main.c' || echo '$(srcdir)/'`src/main.c + + src_mpd-main.obj: src/main.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-main.obj -MD -MP -MF $(DEPDIR)/src_mpd-main.Tpo -c -o src_mpd-main.obj `if test -f 'src/main.c'; then $(CYGPATH_W) 'src/main.c'; else $(CYGPATH_W) '$(srcdir)/src/main.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-main.Tpo $(DEPDIR)/src_mpd-main.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-main.obj -MD -MP -MF "$(DEPDIR)/src_mpd-main.Tpo" -c -o src_mpd-main.obj `if test -f 'src/main.c'; then $(CYGPATH_W) 'src/main.c'; else $(CYGPATH_W) '$(srcdir)/src/main.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-main.Tpo" "$(DEPDIR)/src_mpd-main.Po"; else rm -f "$(DEPDIR)/src_mpd-main.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/main.c' object='src_mpd-main.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-main.obj `if test -f 'src/main.c'; then $(CYGPATH_W) 'src/main.c'; else $(CYGPATH_W) '$(srcdir)/src/main.c'; fi` + + src_mpd-event_pipe.o: src/event_pipe.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-event_pipe.o -MD -MP -MF $(DEPDIR)/src_mpd-event_pipe.Tpo -c -o src_mpd-event_pipe.o `test -f 'src/event_pipe.c' || echo '$(srcdir)/'`src/event_pipe.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-event_pipe.Tpo $(DEPDIR)/src_mpd-event_pipe.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-event_pipe.o -MD -MP -MF "$(DEPDIR)/src_mpd-event_pipe.Tpo" -c -o src_mpd-event_pipe.o `test -f 'src/event_pipe.c' || echo '$(srcdir)/'`src/event_pipe.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-event_pipe.Tpo" "$(DEPDIR)/src_mpd-event_pipe.Po"; else rm -f "$(DEPDIR)/src_mpd-event_pipe.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/event_pipe.c' object='src_mpd-event_pipe.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-event_pipe.o `test -f 'src/event_pipe.c' || echo '$(srcdir)/'`src/event_pipe.c + + src_mpd-event_pipe.obj: src/event_pipe.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-event_pipe.obj -MD -MP -MF $(DEPDIR)/src_mpd-event_pipe.Tpo -c -o src_mpd-event_pipe.obj `if test -f 'src/event_pipe.c'; then $(CYGPATH_W) 'src/event_pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/event_pipe.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-event_pipe.Tpo $(DEPDIR)/src_mpd-event_pipe.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-event_pipe.obj -MD -MP -MF "$(DEPDIR)/src_mpd-event_pipe.Tpo" -c -o src_mpd-event_pipe.obj `if test -f 'src/event_pipe.c'; then $(CYGPATH_W) 'src/event_pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/event_pipe.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-event_pipe.Tpo" "$(DEPDIR)/src_mpd-event_pipe.Po"; else rm -f "$(DEPDIR)/src_mpd-event_pipe.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/event_pipe.c' object='src_mpd-event_pipe.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-event_pipe.obj `if test -f 'src/event_pipe.c'; then $(CYGPATH_W) 'src/event_pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/event_pipe.c'; fi` + + src_mpd-daemon.o: src/daemon.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-daemon.o -MD -MP -MF $(DEPDIR)/src_mpd-daemon.Tpo -c -o src_mpd-daemon.o `test -f 'src/daemon.c' || echo '$(srcdir)/'`src/daemon.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-daemon.Tpo $(DEPDIR)/src_mpd-daemon.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-daemon.o -MD -MP -MF "$(DEPDIR)/src_mpd-daemon.Tpo" -c -o src_mpd-daemon.o `test -f 'src/daemon.c' || echo '$(srcdir)/'`src/daemon.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-daemon.Tpo" "$(DEPDIR)/src_mpd-daemon.Po"; else rm -f "$(DEPDIR)/src_mpd-daemon.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/daemon.c' object='src_mpd-daemon.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-daemon.o `test -f 'src/daemon.c' || echo '$(srcdir)/'`src/daemon.c + + src_mpd-daemon.obj: src/daemon.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-daemon.obj -MD -MP -MF $(DEPDIR)/src_mpd-daemon.Tpo -c -o src_mpd-daemon.obj `if test -f 'src/daemon.c'; then $(CYGPATH_W) 'src/daemon.c'; else $(CYGPATH_W) '$(srcdir)/src/daemon.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-daemon.Tpo $(DEPDIR)/src_mpd-daemon.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-daemon.obj -MD -MP -MF "$(DEPDIR)/src_mpd-daemon.Tpo" -c -o src_mpd-daemon.obj `if test -f 'src/daemon.c'; then $(CYGPATH_W) 'src/daemon.c'; else $(CYGPATH_W) '$(srcdir)/src/daemon.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-daemon.Tpo" "$(DEPDIR)/src_mpd-daemon.Po"; else rm -f "$(DEPDIR)/src_mpd-daemon.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/daemon.c' object='src_mpd-daemon.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-daemon.obj `if test -f 'src/daemon.c'; then $(CYGPATH_W) 'src/daemon.c'; else $(CYGPATH_W) '$(srcdir)/src/daemon.c'; fi` + + src_mpd-normalize.o: src/normalize.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-normalize.o -MD -MP -MF $(DEPDIR)/src_mpd-normalize.Tpo -c -o src_mpd-normalize.o `test -f 'src/normalize.c' || echo '$(srcdir)/'`src/normalize.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-normalize.Tpo $(DEPDIR)/src_mpd-normalize.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-normalize.o -MD -MP -MF "$(DEPDIR)/src_mpd-normalize.Tpo" -c -o src_mpd-normalize.o `test -f 'src/normalize.c' || echo '$(srcdir)/'`src/normalize.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-normalize.Tpo" "$(DEPDIR)/src_mpd-normalize.Po"; else rm -f "$(DEPDIR)/src_mpd-normalize.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/normalize.c' object='src_mpd-normalize.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-normalize.o `test -f 'src/normalize.c' || echo '$(srcdir)/'`src/normalize.c + + src_mpd-normalize.obj: src/normalize.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-normalize.obj -MD -MP -MF $(DEPDIR)/src_mpd-normalize.Tpo -c -o src_mpd-normalize.obj `if test -f 'src/normalize.c'; then $(CYGPATH_W) 'src/normalize.c'; else $(CYGPATH_W) '$(srcdir)/src/normalize.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-normalize.Tpo $(DEPDIR)/src_mpd-normalize.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-normalize.obj -MD -MP -MF "$(DEPDIR)/src_mpd-normalize.Tpo" -c -o src_mpd-normalize.obj `if test -f 'src/normalize.c'; then $(CYGPATH_W) 'src/normalize.c'; else $(CYGPATH_W) '$(srcdir)/src/normalize.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-normalize.Tpo" "$(DEPDIR)/src_mpd-normalize.Po"; else rm -f "$(DEPDIR)/src_mpd-normalize.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/normalize.c' object='src_mpd-normalize.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-normalize.obj `if test -f 'src/normalize.c'; then $(CYGPATH_W) 'src/normalize.c'; else $(CYGPATH_W) '$(srcdir)/src/normalize.c'; fi` + + src_mpd-compress.o: src/compress.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-compress.o -MD -MP -MF $(DEPDIR)/src_mpd-compress.Tpo -c -o src_mpd-compress.o `test -f 'src/compress.c' || echo '$(srcdir)/'`src/compress.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-compress.Tpo $(DEPDIR)/src_mpd-compress.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-compress.o -MD -MP -MF "$(DEPDIR)/src_mpd-compress.Tpo" -c -o src_mpd-compress.o `test -f 'src/compress.c' || echo '$(srcdir)/'`src/compress.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-compress.Tpo" "$(DEPDIR)/src_mpd-compress.Po"; else rm -f "$(DEPDIR)/src_mpd-compress.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/compress.c' object='src_mpd-compress.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-compress.o `test -f 'src/compress.c' || echo '$(srcdir)/'`src/compress.c + + src_mpd-compress.obj: src/compress.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-compress.obj -MD -MP -MF $(DEPDIR)/src_mpd-compress.Tpo -c -o src_mpd-compress.obj `if test -f 'src/compress.c'; then $(CYGPATH_W) 'src/compress.c'; else $(CYGPATH_W) '$(srcdir)/src/compress.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-compress.Tpo $(DEPDIR)/src_mpd-compress.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-compress.obj -MD -MP -MF "$(DEPDIR)/src_mpd-compress.Tpo" -c -o src_mpd-compress.obj `if test -f 'src/compress.c'; then $(CYGPATH_W) 'src/compress.c'; else $(CYGPATH_W) '$(srcdir)/src/compress.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-compress.Tpo" "$(DEPDIR)/src_mpd-compress.Po"; else rm -f "$(DEPDIR)/src_mpd-compress.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/compress.c' object='src_mpd-compress.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-compress.obj `if test -f 'src/compress.c'; then $(CYGPATH_W) 'src/compress.c'; else $(CYGPATH_W) '$(srcdir)/src/compress.c'; fi` + + src_mpd-buffer.o: src/buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer.o -MD -MP -MF $(DEPDIR)/src_mpd-buffer.Tpo -c -o src_mpd-buffer.o `test -f 'src/buffer.c' || echo '$(srcdir)/'`src/buffer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-buffer.Tpo $(DEPDIR)/src_mpd-buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer.o -MD -MP -MF "$(DEPDIR)/src_mpd-buffer.Tpo" -c -o src_mpd-buffer.o `test -f 'src/buffer.c' || echo '$(srcdir)/'`src/buffer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-buffer.Tpo" "$(DEPDIR)/src_mpd-buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer.c' object='src_mpd-buffer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-buffer.o `test -f 'src/buffer.c' || echo '$(srcdir)/'`src/buffer.c + + src_mpd-buffer.obj: src/buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer.obj -MD -MP -MF $(DEPDIR)/src_mpd-buffer.Tpo -c -o src_mpd-buffer.obj `if test -f 'src/buffer.c'; then $(CYGPATH_W) 'src/buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-buffer.Tpo $(DEPDIR)/src_mpd-buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-buffer.Tpo" -c -o src_mpd-buffer.obj `if test -f 'src/buffer.c'; then $(CYGPATH_W) 'src/buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-buffer.Tpo" "$(DEPDIR)/src_mpd-buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer.c' object='src_mpd-buffer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-buffer.obj `if test -f 'src/buffer.c'; then $(CYGPATH_W) 'src/buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer.c'; fi` + + src_mpd-pipe.o: src/pipe.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe.o -MD -MP -MF $(DEPDIR)/src_mpd-pipe.Tpo -c -o src_mpd-pipe.o `test -f 'src/pipe.c' || echo '$(srcdir)/'`src/pipe.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pipe.Tpo $(DEPDIR)/src_mpd-pipe.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe.o -MD -MP -MF "$(DEPDIR)/src_mpd-pipe.Tpo" -c -o src_mpd-pipe.o `test -f 'src/pipe.c' || echo '$(srcdir)/'`src/pipe.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pipe.Tpo" "$(DEPDIR)/src_mpd-pipe.Po"; else rm -f "$(DEPDIR)/src_mpd-pipe.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pipe.c' object='src_mpd-pipe.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pipe.o `test -f 'src/pipe.c' || echo '$(srcdir)/'`src/pipe.c + + src_mpd-pipe.obj: src/pipe.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe.obj -MD -MP -MF $(DEPDIR)/src_mpd-pipe.Tpo -c -o src_mpd-pipe.obj `if test -f 'src/pipe.c'; then $(CYGPATH_W) 'src/pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/pipe.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pipe.Tpo $(DEPDIR)/src_mpd-pipe.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pipe.Tpo" -c -o src_mpd-pipe.obj `if test -f 'src/pipe.c'; then $(CYGPATH_W) 'src/pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/pipe.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pipe.Tpo" "$(DEPDIR)/src_mpd-pipe.Po"; else rm -f "$(DEPDIR)/src_mpd-pipe.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pipe.c' object='src_mpd-pipe.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pipe.obj `if test -f 'src/pipe.c'; then $(CYGPATH_W) 'src/pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/pipe.c'; fi` + + src_mpd-chunk.o: src/chunk.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-chunk.o -MD -MP -MF $(DEPDIR)/src_mpd-chunk.Tpo -c -o src_mpd-chunk.o `test -f 'src/chunk.c' || echo '$(srcdir)/'`src/chunk.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-chunk.Tpo $(DEPDIR)/src_mpd-chunk.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-chunk.o -MD -MP -MF "$(DEPDIR)/src_mpd-chunk.Tpo" -c -o src_mpd-chunk.o `test -f 'src/chunk.c' || echo '$(srcdir)/'`src/chunk.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-chunk.Tpo" "$(DEPDIR)/src_mpd-chunk.Po"; else rm -f "$(DEPDIR)/src_mpd-chunk.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/chunk.c' object='src_mpd-chunk.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-chunk.o `test -f 'src/chunk.c' || echo '$(srcdir)/'`src/chunk.c + + src_mpd-chunk.obj: src/chunk.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-chunk.obj -MD -MP -MF $(DEPDIR)/src_mpd-chunk.Tpo -c -o src_mpd-chunk.obj `if test -f 'src/chunk.c'; then $(CYGPATH_W) 'src/chunk.c'; else $(CYGPATH_W) '$(srcdir)/src/chunk.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-chunk.Tpo $(DEPDIR)/src_mpd-chunk.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-chunk.obj -MD -MP -MF "$(DEPDIR)/src_mpd-chunk.Tpo" -c -o src_mpd-chunk.obj `if test -f 'src/chunk.c'; then $(CYGPATH_W) 'src/chunk.c'; else $(CYGPATH_W) '$(srcdir)/src/chunk.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-chunk.Tpo" "$(DEPDIR)/src_mpd-chunk.Po"; else rm -f "$(DEPDIR)/src_mpd-chunk.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/chunk.c' object='src_mpd-chunk.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-chunk.obj `if test -f 'src/chunk.c'; then $(CYGPATH_W) 'src/chunk.c'; else $(CYGPATH_W) '$(srcdir)/src/chunk.c'; fi` + + src_mpd-path.o: src/path.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-path.o -MD -MP -MF $(DEPDIR)/src_mpd-path.Tpo -c -o src_mpd-path.o `test -f 'src/path.c' || echo '$(srcdir)/'`src/path.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-path.Tpo $(DEPDIR)/src_mpd-path.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-path.o -MD -MP -MF "$(DEPDIR)/src_mpd-path.Tpo" -c -o src_mpd-path.o `test -f 'src/path.c' || echo '$(srcdir)/'`src/path.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-path.Tpo" "$(DEPDIR)/src_mpd-path.Po"; else rm -f "$(DEPDIR)/src_mpd-path.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/path.c' object='src_mpd-path.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-path.o `test -f 'src/path.c' || echo '$(srcdir)/'`src/path.c + + src_mpd-path.obj: src/path.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-path.obj -MD -MP -MF $(DEPDIR)/src_mpd-path.Tpo -c -o src_mpd-path.obj `if test -f 'src/path.c'; then $(CYGPATH_W) 'src/path.c'; else $(CYGPATH_W) '$(srcdir)/src/path.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-path.Tpo $(DEPDIR)/src_mpd-path.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-path.obj -MD -MP -MF "$(DEPDIR)/src_mpd-path.Tpo" -c -o src_mpd-path.obj `if test -f 'src/path.c'; then $(CYGPATH_W) 'src/path.c'; else $(CYGPATH_W) '$(srcdir)/src/path.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-path.Tpo" "$(DEPDIR)/src_mpd-path.Po"; else rm -f "$(DEPDIR)/src_mpd-path.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/path.c' object='src_mpd-path.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-path.obj `if test -f 'src/path.c'; then $(CYGPATH_W) 'src/path.c'; else $(CYGPATH_W) '$(srcdir)/src/path.c'; fi` + + src_mpd-mapper.o: src/mapper.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mapper.o -MD -MP -MF $(DEPDIR)/src_mpd-mapper.Tpo -c -o src_mpd-mapper.o `test -f 'src/mapper.c' || echo '$(srcdir)/'`src/mapper.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mapper.Tpo $(DEPDIR)/src_mpd-mapper.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mapper.o -MD -MP -MF "$(DEPDIR)/src_mpd-mapper.Tpo" -c -o src_mpd-mapper.o `test -f 'src/mapper.c' || echo '$(srcdir)/'`src/mapper.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mapper.Tpo" "$(DEPDIR)/src_mpd-mapper.Po"; else rm -f "$(DEPDIR)/src_mpd-mapper.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mapper.c' object='src_mpd-mapper.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mapper.o `test -f 'src/mapper.c' || echo '$(srcdir)/'`src/mapper.c + + src_mpd-mapper.obj: src/mapper.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mapper.obj -MD -MP -MF $(DEPDIR)/src_mpd-mapper.Tpo -c -o src_mpd-mapper.obj `if test -f 'src/mapper.c'; then $(CYGPATH_W) 'src/mapper.c'; else $(CYGPATH_W) '$(srcdir)/src/mapper.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mapper.Tpo $(DEPDIR)/src_mpd-mapper.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mapper.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mapper.Tpo" -c -o src_mpd-mapper.obj `if test -f 'src/mapper.c'; then $(CYGPATH_W) 'src/mapper.c'; else $(CYGPATH_W) '$(srcdir)/src/mapper.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mapper.Tpo" "$(DEPDIR)/src_mpd-mapper.Po"; else rm -f "$(DEPDIR)/src_mpd-mapper.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mapper.c' object='src_mpd-mapper.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mapper.obj `if test -f 'src/mapper.c'; then $(CYGPATH_W) 'src/mapper.c'; else $(CYGPATH_W) '$(srcdir)/src/mapper.c'; fi` + + src_mpd-page.o: src/page.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-page.o -MD -MP -MF $(DEPDIR)/src_mpd-page.Tpo -c -o src_mpd-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-page.Tpo $(DEPDIR)/src_mpd-page.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-page.o -MD -MP -MF "$(DEPDIR)/src_mpd-page.Tpo" -c -o src_mpd-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-page.Tpo" "$(DEPDIR)/src_mpd-page.Po"; else rm -f "$(DEPDIR)/src_mpd-page.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/page.c' object='src_mpd-page.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c + + src_mpd-page.obj: src/page.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-page.obj -MD -MP -MF $(DEPDIR)/src_mpd-page.Tpo -c -o src_mpd-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-page.Tpo $(DEPDIR)/src_mpd-page.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-page.obj -MD -MP -MF "$(DEPDIR)/src_mpd-page.Tpo" -c -o src_mpd-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-page.Tpo" "$(DEPDIR)/src_mpd-page.Po"; else rm -f "$(DEPDIR)/src_mpd-page.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/page.c' object='src_mpd-page.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi` + + src_mpd-pcm_convert.o: src/pcm_convert.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_convert.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_convert.Tpo -c -o src_mpd-pcm_convert.o `test -f 'src/pcm_convert.c' || echo '$(srcdir)/'`src/pcm_convert.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_convert.Tpo $(DEPDIR)/src_mpd-pcm_convert.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_convert.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_convert.Tpo" -c -o src_mpd-pcm_convert.o `test -f 'src/pcm_convert.c' || echo '$(srcdir)/'`src/pcm_convert.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_convert.Tpo" "$(DEPDIR)/src_mpd-pcm_convert.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_convert.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_convert.c' object='src_mpd-pcm_convert.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_convert.o `test -f 'src/pcm_convert.c' || echo '$(srcdir)/'`src/pcm_convert.c + + src_mpd-pcm_convert.obj: src/pcm_convert.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_convert.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_convert.Tpo -c -o src_mpd-pcm_convert.obj `if test -f 'src/pcm_convert.c'; then $(CYGPATH_W) 'src/pcm_convert.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_convert.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_convert.Tpo $(DEPDIR)/src_mpd-pcm_convert.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_convert.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_convert.Tpo" -c -o src_mpd-pcm_convert.obj `if test -f 'src/pcm_convert.c'; then $(CYGPATH_W) 'src/pcm_convert.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_convert.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_convert.Tpo" "$(DEPDIR)/src_mpd-pcm_convert.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_convert.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_convert.c' object='src_mpd-pcm_convert.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_convert.obj `if test -f 'src/pcm_convert.c'; then $(CYGPATH_W) 'src/pcm_convert.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_convert.c'; fi` + + src_mpd-pcm_volume.o: src/pcm_volume.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_volume.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_volume.Tpo -c -o src_mpd-pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_volume.Tpo $(DEPDIR)/src_mpd-pcm_volume.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_volume.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_volume.Tpo" -c -o src_mpd-pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_volume.Tpo" "$(DEPDIR)/src_mpd-pcm_volume.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_volume.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_volume.c' object='src_mpd-pcm_volume.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c + + src_mpd-pcm_volume.obj: src/pcm_volume.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_volume.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_volume.Tpo -c -o src_mpd-pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_volume.Tpo $(DEPDIR)/src_mpd-pcm_volume.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_volume.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_volume.Tpo" -c -o src_mpd-pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_volume.Tpo" "$(DEPDIR)/src_mpd-pcm_volume.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_volume.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_volume.c' object='src_mpd-pcm_volume.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi` + + src_mpd-pcm_mix.o: src/pcm_mix.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_mix.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_mix.Tpo -c -o src_mpd-pcm_mix.o `test -f 'src/pcm_mix.c' || echo '$(srcdir)/'`src/pcm_mix.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_mix.Tpo $(DEPDIR)/src_mpd-pcm_mix.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_mix.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_mix.Tpo" -c -o src_mpd-pcm_mix.o `test -f 'src/pcm_mix.c' || echo '$(srcdir)/'`src/pcm_mix.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_mix.Tpo" "$(DEPDIR)/src_mpd-pcm_mix.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_mix.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_mix.c' object='src_mpd-pcm_mix.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_mix.o `test -f 'src/pcm_mix.c' || echo '$(srcdir)/'`src/pcm_mix.c + + src_mpd-pcm_mix.obj: src/pcm_mix.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_mix.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_mix.Tpo -c -o src_mpd-pcm_mix.obj `if test -f 'src/pcm_mix.c'; then $(CYGPATH_W) 'src/pcm_mix.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_mix.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_mix.Tpo $(DEPDIR)/src_mpd-pcm_mix.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_mix.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_mix.Tpo" -c -o src_mpd-pcm_mix.obj `if test -f 'src/pcm_mix.c'; then $(CYGPATH_W) 'src/pcm_mix.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_mix.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_mix.Tpo" "$(DEPDIR)/src_mpd-pcm_mix.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_mix.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_mix.c' object='src_mpd-pcm_mix.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_mix.obj `if test -f 'src/pcm_mix.c'; then $(CYGPATH_W) 'src/pcm_mix.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_mix.c'; fi` + + src_mpd-pcm_channels.o: src/pcm_channels.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_channels.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_channels.Tpo -c -o src_mpd-pcm_channels.o `test -f 'src/pcm_channels.c' || echo '$(srcdir)/'`src/pcm_channels.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_channels.Tpo $(DEPDIR)/src_mpd-pcm_channels.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_channels.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_channels.Tpo" -c -o src_mpd-pcm_channels.o `test -f 'src/pcm_channels.c' || echo '$(srcdir)/'`src/pcm_channels.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_channels.Tpo" "$(DEPDIR)/src_mpd-pcm_channels.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_channels.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_channels.c' object='src_mpd-pcm_channels.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_channels.o `test -f 'src/pcm_channels.c' || echo '$(srcdir)/'`src/pcm_channels.c + + src_mpd-pcm_channels.obj: src/pcm_channels.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_channels.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_channels.Tpo -c -o src_mpd-pcm_channels.obj `if test -f 'src/pcm_channels.c'; then $(CYGPATH_W) 'src/pcm_channels.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_channels.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_channels.Tpo $(DEPDIR)/src_mpd-pcm_channels.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_channels.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_channels.Tpo" -c -o src_mpd-pcm_channels.obj `if test -f 'src/pcm_channels.c'; then $(CYGPATH_W) 'src/pcm_channels.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_channels.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_channels.Tpo" "$(DEPDIR)/src_mpd-pcm_channels.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_channels.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_channels.c' object='src_mpd-pcm_channels.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_channels.obj `if test -f 'src/pcm_channels.c'; then $(CYGPATH_W) 'src/pcm_channels.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_channels.c'; fi` + + src_mpd-pcm_format.o: src/pcm_format.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_format.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_format.Tpo -c -o src_mpd-pcm_format.o `test -f 'src/pcm_format.c' || echo '$(srcdir)/'`src/pcm_format.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_format.Tpo $(DEPDIR)/src_mpd-pcm_format.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_format.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_format.Tpo" -c -o src_mpd-pcm_format.o `test -f 'src/pcm_format.c' || echo '$(srcdir)/'`src/pcm_format.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_format.Tpo" "$(DEPDIR)/src_mpd-pcm_format.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_format.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_format.c' object='src_mpd-pcm_format.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_format.o `test -f 'src/pcm_format.c' || echo '$(srcdir)/'`src/pcm_format.c + + src_mpd-pcm_format.obj: src/pcm_format.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_format.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_format.Tpo -c -o src_mpd-pcm_format.obj `if test -f 'src/pcm_format.c'; then $(CYGPATH_W) 'src/pcm_format.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_format.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_format.Tpo $(DEPDIR)/src_mpd-pcm_format.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_format.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_format.Tpo" -c -o src_mpd-pcm_format.obj `if test -f 'src/pcm_format.c'; then $(CYGPATH_W) 'src/pcm_format.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_format.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_format.Tpo" "$(DEPDIR)/src_mpd-pcm_format.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_format.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_format.c' object='src_mpd-pcm_format.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_format.obj `if test -f 'src/pcm_format.c'; then $(CYGPATH_W) 'src/pcm_format.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_format.c'; fi` + + src_mpd-pcm_resample.o: src/pcm_resample.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample.Tpo -c -o src_mpd-pcm_resample.o `test -f 'src/pcm_resample.c' || echo '$(srcdir)/'`src/pcm_resample.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample.Tpo $(DEPDIR)/src_mpd-pcm_resample.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample.Tpo" -c -o src_mpd-pcm_resample.o `test -f 'src/pcm_resample.c' || echo '$(srcdir)/'`src/pcm_resample.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample.Tpo" "$(DEPDIR)/src_mpd-pcm_resample.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample.c' object='src_mpd-pcm_resample.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample.o `test -f 'src/pcm_resample.c' || echo '$(srcdir)/'`src/pcm_resample.c + + src_mpd-pcm_resample.obj: src/pcm_resample.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample.Tpo -c -o src_mpd-pcm_resample.obj `if test -f 'src/pcm_resample.c'; then $(CYGPATH_W) 'src/pcm_resample.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample.Tpo $(DEPDIR)/src_mpd-pcm_resample.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample.Tpo" -c -o src_mpd-pcm_resample.obj `if test -f 'src/pcm_resample.c'; then $(CYGPATH_W) 'src/pcm_resample.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample.Tpo" "$(DEPDIR)/src_mpd-pcm_resample.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample.c' object='src_mpd-pcm_resample.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample.obj `if test -f 'src/pcm_resample.c'; then $(CYGPATH_W) 'src/pcm_resample.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample.c'; fi` + + src_mpd-pcm_resample_fallback.o: src/pcm_resample_fallback.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_fallback.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo -c -o src_mpd-pcm_resample_fallback.o `test -f 'src/pcm_resample_fallback.c' || echo '$(srcdir)/'`src/pcm_resample_fallback.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo $(DEPDIR)/src_mpd-pcm_resample_fallback.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_fallback.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo" -c -o src_mpd-pcm_resample_fallback.o `test -f 'src/pcm_resample_fallback.c' || echo '$(srcdir)/'`src/pcm_resample_fallback.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo" "$(DEPDIR)/src_mpd-pcm_resample_fallback.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample_fallback.c' object='src_mpd-pcm_resample_fallback.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample_fallback.o `test -f 'src/pcm_resample_fallback.c' || echo '$(srcdir)/'`src/pcm_resample_fallback.c + + src_mpd-pcm_resample_fallback.obj: src/pcm_resample_fallback.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_fallback.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo -c -o src_mpd-pcm_resample_fallback.obj `if test -f 'src/pcm_resample_fallback.c'; then $(CYGPATH_W) 'src/pcm_resample_fallback.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_fallback.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo $(DEPDIR)/src_mpd-pcm_resample_fallback.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_fallback.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo" -c -o src_mpd-pcm_resample_fallback.obj `if test -f 'src/pcm_resample_fallback.c'; then $(CYGPATH_W) 'src/pcm_resample_fallback.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_fallback.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo" "$(DEPDIR)/src_mpd-pcm_resample_fallback.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample_fallback.c' object='src_mpd-pcm_resample_fallback.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample_fallback.obj `if test -f 'src/pcm_resample_fallback.c'; then $(CYGPATH_W) 'src/pcm_resample_fallback.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_fallback.c'; fi` + + src_mpd-pcm_dither.o: src/pcm_dither.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_dither.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_dither.Tpo -c -o src_mpd-pcm_dither.o `test -f 'src/pcm_dither.c' || echo '$(srcdir)/'`src/pcm_dither.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_dither.Tpo $(DEPDIR)/src_mpd-pcm_dither.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_dither.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_dither.Tpo" -c -o src_mpd-pcm_dither.o `test -f 'src/pcm_dither.c' || echo '$(srcdir)/'`src/pcm_dither.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_dither.Tpo" "$(DEPDIR)/src_mpd-pcm_dither.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_dither.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_dither.c' object='src_mpd-pcm_dither.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_dither.o `test -f 'src/pcm_dither.c' || echo '$(srcdir)/'`src/pcm_dither.c + + src_mpd-pcm_dither.obj: src/pcm_dither.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_dither.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_dither.Tpo -c -o src_mpd-pcm_dither.obj `if test -f 'src/pcm_dither.c'; then $(CYGPATH_W) 'src/pcm_dither.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_dither.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_dither.Tpo $(DEPDIR)/src_mpd-pcm_dither.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_dither.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_dither.Tpo" -c -o src_mpd-pcm_dither.obj `if test -f 'src/pcm_dither.c'; then $(CYGPATH_W) 'src/pcm_dither.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_dither.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_dither.Tpo" "$(DEPDIR)/src_mpd-pcm_dither.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_dither.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_dither.c' object='src_mpd-pcm_dither.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_dither.obj `if test -f 'src/pcm_dither.c'; then $(CYGPATH_W) 'src/pcm_dither.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_dither.c'; fi` + + src_mpd-permission.o: src/permission.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-permission.o -MD -MP -MF $(DEPDIR)/src_mpd-permission.Tpo -c -o src_mpd-permission.o `test -f 'src/permission.c' || echo '$(srcdir)/'`src/permission.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-permission.Tpo $(DEPDIR)/src_mpd-permission.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-permission.o -MD -MP -MF "$(DEPDIR)/src_mpd-permission.Tpo" -c -o src_mpd-permission.o `test -f 'src/permission.c' || echo '$(srcdir)/'`src/permission.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-permission.Tpo" "$(DEPDIR)/src_mpd-permission.Po"; else rm -f "$(DEPDIR)/src_mpd-permission.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/permission.c' object='src_mpd-permission.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-permission.o `test -f 'src/permission.c' || echo '$(srcdir)/'`src/permission.c + + src_mpd-permission.obj: src/permission.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-permission.obj -MD -MP -MF $(DEPDIR)/src_mpd-permission.Tpo -c -o src_mpd-permission.obj `if test -f 'src/permission.c'; then $(CYGPATH_W) 'src/permission.c'; else $(CYGPATH_W) '$(srcdir)/src/permission.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-permission.Tpo $(DEPDIR)/src_mpd-permission.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-permission.obj -MD -MP -MF "$(DEPDIR)/src_mpd-permission.Tpo" -c -o src_mpd-permission.obj `if test -f 'src/permission.c'; then $(CYGPATH_W) 'src/permission.c'; else $(CYGPATH_W) '$(srcdir)/src/permission.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-permission.Tpo" "$(DEPDIR)/src_mpd-permission.Po"; else rm -f "$(DEPDIR)/src_mpd-permission.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/permission.c' object='src_mpd-permission.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-permission.obj `if test -f 'src/permission.c'; then $(CYGPATH_W) 'src/permission.c'; else $(CYGPATH_W) '$(srcdir)/src/permission.c'; fi` + + src_mpd-player_thread.o: src/player_thread.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_thread.o -MD -MP -MF $(DEPDIR)/src_mpd-player_thread.Tpo -c -o src_mpd-player_thread.o `test -f 'src/player_thread.c' || echo '$(srcdir)/'`src/player_thread.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-player_thread.Tpo $(DEPDIR)/src_mpd-player_thread.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_thread.o -MD -MP -MF "$(DEPDIR)/src_mpd-player_thread.Tpo" -c -o src_mpd-player_thread.o `test -f 'src/player_thread.c' || echo '$(srcdir)/'`src/player_thread.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-player_thread.Tpo" "$(DEPDIR)/src_mpd-player_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-player_thread.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/player_thread.c' object='src_mpd-player_thread.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-player_thread.o `test -f 'src/player_thread.c' || echo '$(srcdir)/'`src/player_thread.c + + src_mpd-player_thread.obj: src/player_thread.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_thread.obj -MD -MP -MF $(DEPDIR)/src_mpd-player_thread.Tpo -c -o src_mpd-player_thread.obj `if test -f 'src/player_thread.c'; then $(CYGPATH_W) 'src/player_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/player_thread.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-player_thread.Tpo $(DEPDIR)/src_mpd-player_thread.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_thread.obj -MD -MP -MF "$(DEPDIR)/src_mpd-player_thread.Tpo" -c -o src_mpd-player_thread.obj `if test -f 'src/player_thread.c'; then $(CYGPATH_W) 'src/player_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/player_thread.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-player_thread.Tpo" "$(DEPDIR)/src_mpd-player_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-player_thread.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/player_thread.c' object='src_mpd-player_thread.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-player_thread.obj `if test -f 'src/player_thread.c'; then $(CYGPATH_W) 'src/player_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/player_thread.c'; fi` + + src_mpd-player_control.o: src/player_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_control.o -MD -MP -MF $(DEPDIR)/src_mpd-player_control.Tpo -c -o src_mpd-player_control.o `test -f 'src/player_control.c' || echo '$(srcdir)/'`src/player_control.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-player_control.Tpo $(DEPDIR)/src_mpd-player_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_control.o -MD -MP -MF "$(DEPDIR)/src_mpd-player_control.Tpo" -c -o src_mpd-player_control.o `test -f 'src/player_control.c' || echo '$(srcdir)/'`src/player_control.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-player_control.Tpo" "$(DEPDIR)/src_mpd-player_control.Po"; else rm -f "$(DEPDIR)/src_mpd-player_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/player_control.c' object='src_mpd-player_control.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-player_control.o `test -f 'src/player_control.c' || echo '$(srcdir)/'`src/player_control.c + + src_mpd-player_control.obj: src/player_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_control.obj -MD -MP -MF $(DEPDIR)/src_mpd-player_control.Tpo -c -o src_mpd-player_control.obj `if test -f 'src/player_control.c'; then $(CYGPATH_W) 'src/player_control.c'; else $(CYGPATH_W) '$(srcdir)/src/player_control.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-player_control.Tpo $(DEPDIR)/src_mpd-player_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_control.obj -MD -MP -MF "$(DEPDIR)/src_mpd-player_control.Tpo" -c -o src_mpd-player_control.obj `if test -f 'src/player_control.c'; then $(CYGPATH_W) 'src/player_control.c'; else $(CYGPATH_W) '$(srcdir)/src/player_control.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-player_control.Tpo" "$(DEPDIR)/src_mpd-player_control.Po"; else rm -f "$(DEPDIR)/src_mpd-player_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/player_control.c' object='src_mpd-player_control.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-player_control.obj `if test -f 'src/player_control.c'; then $(CYGPATH_W) 'src/player_control.c'; else $(CYGPATH_W) '$(srcdir)/src/player_control.c'; fi` + + src_mpd-playlist.o: src/playlist.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist.Tpo -c -o src_mpd-playlist.o `test -f 'src/playlist.c' || echo '$(srcdir)/'`src/playlist.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist.Tpo $(DEPDIR)/src_mpd-playlist.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist.Tpo" -c -o src_mpd-playlist.o `test -f 'src/playlist.c' || echo '$(srcdir)/'`src/playlist.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist.Tpo" "$(DEPDIR)/src_mpd-playlist.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist.c' object='src_mpd-playlist.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist.o `test -f 'src/playlist.c' || echo '$(srcdir)/'`src/playlist.c + + src_mpd-playlist.obj: src/playlist.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist.Tpo -c -o src_mpd-playlist.obj `if test -f 'src/playlist.c'; then $(CYGPATH_W) 'src/playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist.Tpo $(DEPDIR)/src_mpd-playlist.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist.Tpo" -c -o src_mpd-playlist.obj `if test -f 'src/playlist.c'; then $(CYGPATH_W) 'src/playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist.Tpo" "$(DEPDIR)/src_mpd-playlist.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist.c' object='src_mpd-playlist.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist.obj `if test -f 'src/playlist.c'; then $(CYGPATH_W) 'src/playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist.c'; fi` + + src_mpd-playlist_global.o: src/playlist_global.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_global.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_global.Tpo -c -o src_mpd-playlist_global.o `test -f 'src/playlist_global.c' || echo '$(srcdir)/'`src/playlist_global.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_global.Tpo $(DEPDIR)/src_mpd-playlist_global.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_global.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_global.Tpo" -c -o src_mpd-playlist_global.o `test -f 'src/playlist_global.c' || echo '$(srcdir)/'`src/playlist_global.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_global.Tpo" "$(DEPDIR)/src_mpd-playlist_global.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_global.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_global.c' object='src_mpd-playlist_global.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_global.o `test -f 'src/playlist_global.c' || echo '$(srcdir)/'`src/playlist_global.c + + src_mpd-playlist_global.obj: src/playlist_global.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_global.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_global.Tpo -c -o src_mpd-playlist_global.obj `if test -f 'src/playlist_global.c'; then $(CYGPATH_W) 'src/playlist_global.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_global.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_global.Tpo $(DEPDIR)/src_mpd-playlist_global.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_global.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_global.Tpo" -c -o src_mpd-playlist_global.obj `if test -f 'src/playlist_global.c'; then $(CYGPATH_W) 'src/playlist_global.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_global.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_global.Tpo" "$(DEPDIR)/src_mpd-playlist_global.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_global.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_global.c' object='src_mpd-playlist_global.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_global.obj `if test -f 'src/playlist_global.c'; then $(CYGPATH_W) 'src/playlist_global.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_global.c'; fi` + + src_mpd-playlist_control.o: src/playlist_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_control.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_control.Tpo -c -o src_mpd-playlist_control.o `test -f 'src/playlist_control.c' || echo '$(srcdir)/'`src/playlist_control.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_control.Tpo $(DEPDIR)/src_mpd-playlist_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_control.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_control.Tpo" -c -o src_mpd-playlist_control.o `test -f 'src/playlist_control.c' || echo '$(srcdir)/'`src/playlist_control.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_control.Tpo" "$(DEPDIR)/src_mpd-playlist_control.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_control.c' object='src_mpd-playlist_control.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_control.o `test -f 'src/playlist_control.c' || echo '$(srcdir)/'`src/playlist_control.c + + src_mpd-playlist_control.obj: src/playlist_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_control.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_control.Tpo -c -o src_mpd-playlist_control.obj `if test -f 'src/playlist_control.c'; then $(CYGPATH_W) 'src/playlist_control.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_control.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_control.Tpo $(DEPDIR)/src_mpd-playlist_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_control.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_control.Tpo" -c -o src_mpd-playlist_control.obj `if test -f 'src/playlist_control.c'; then $(CYGPATH_W) 'src/playlist_control.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_control.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_control.Tpo" "$(DEPDIR)/src_mpd-playlist_control.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_control.c' object='src_mpd-playlist_control.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_control.obj `if test -f 'src/playlist_control.c'; then $(CYGPATH_W) 'src/playlist_control.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_control.c'; fi` + + src_mpd-playlist_edit.o: src/playlist_edit.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_edit.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_edit.Tpo -c -o src_mpd-playlist_edit.o `test -f 'src/playlist_edit.c' || echo '$(srcdir)/'`src/playlist_edit.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_edit.Tpo $(DEPDIR)/src_mpd-playlist_edit.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_edit.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_edit.Tpo" -c -o src_mpd-playlist_edit.o `test -f 'src/playlist_edit.c' || echo '$(srcdir)/'`src/playlist_edit.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_edit.Tpo" "$(DEPDIR)/src_mpd-playlist_edit.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_edit.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_edit.c' object='src_mpd-playlist_edit.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_edit.o `test -f 'src/playlist_edit.c' || echo '$(srcdir)/'`src/playlist_edit.c + + src_mpd-playlist_edit.obj: src/playlist_edit.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_edit.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_edit.Tpo -c -o src_mpd-playlist_edit.obj `if test -f 'src/playlist_edit.c'; then $(CYGPATH_W) 'src/playlist_edit.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_edit.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_edit.Tpo $(DEPDIR)/src_mpd-playlist_edit.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_edit.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_edit.Tpo" -c -o src_mpd-playlist_edit.obj `if test -f 'src/playlist_edit.c'; then $(CYGPATH_W) 'src/playlist_edit.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_edit.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_edit.Tpo" "$(DEPDIR)/src_mpd-playlist_edit.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_edit.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_edit.c' object='src_mpd-playlist_edit.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_edit.obj `if test -f 'src/playlist_edit.c'; then $(CYGPATH_W) 'src/playlist_edit.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_edit.c'; fi` + + src_mpd-playlist_print.o: src/playlist_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_print.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_print.Tpo -c -o src_mpd-playlist_print.o `test -f 'src/playlist_print.c' || echo '$(srcdir)/'`src/playlist_print.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_print.Tpo $(DEPDIR)/src_mpd-playlist_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_print.Tpo" -c -o src_mpd-playlist_print.o `test -f 'src/playlist_print.c' || echo '$(srcdir)/'`src/playlist_print.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_print.Tpo" "$(DEPDIR)/src_mpd-playlist_print.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_print.c' object='src_mpd-playlist_print.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_print.o `test -f 'src/playlist_print.c' || echo '$(srcdir)/'`src/playlist_print.c + + src_mpd-playlist_print.obj: src/playlist_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_print.Tpo -c -o src_mpd-playlist_print.obj `if test -f 'src/playlist_print.c'; then $(CYGPATH_W) 'src/playlist_print.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_print.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_print.Tpo $(DEPDIR)/src_mpd-playlist_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_print.Tpo" -c -o src_mpd-playlist_print.obj `if test -f 'src/playlist_print.c'; then $(CYGPATH_W) 'src/playlist_print.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_print.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_print.Tpo" "$(DEPDIR)/src_mpd-playlist_print.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_print.c' object='src_mpd-playlist_print.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_print.obj `if test -f 'src/playlist_print.c'; then $(CYGPATH_W) 'src/playlist_print.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_print.c'; fi` + + src_mpd-playlist_save.o: src/playlist_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_save.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_save.Tpo -c -o src_mpd-playlist_save.o `test -f 'src/playlist_save.c' || echo '$(srcdir)/'`src/playlist_save.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_save.Tpo $(DEPDIR)/src_mpd-playlist_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_save.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_save.Tpo" -c -o src_mpd-playlist_save.o `test -f 'src/playlist_save.c' || echo '$(srcdir)/'`src/playlist_save.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_save.Tpo" "$(DEPDIR)/src_mpd-playlist_save.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_save.c' object='src_mpd-playlist_save.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_save.o `test -f 'src/playlist_save.c' || echo '$(srcdir)/'`src/playlist_save.c + + src_mpd-playlist_save.obj: src/playlist_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_save.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_save.Tpo -c -o src_mpd-playlist_save.obj `if test -f 'src/playlist_save.c'; then $(CYGPATH_W) 'src/playlist_save.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_save.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_save.Tpo $(DEPDIR)/src_mpd-playlist_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_save.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_save.Tpo" -c -o src_mpd-playlist_save.obj `if test -f 'src/playlist_save.c'; then $(CYGPATH_W) 'src/playlist_save.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_save.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_save.Tpo" "$(DEPDIR)/src_mpd-playlist_save.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_save.c' object='src_mpd-playlist_save.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_save.obj `if test -f 'src/playlist_save.c'; then $(CYGPATH_W) 'src/playlist_save.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_save.c'; fi` + + src_mpd-playlist_state.o: src/playlist_state.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_state.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_state.Tpo -c -o src_mpd-playlist_state.o `test -f 'src/playlist_state.c' || echo '$(srcdir)/'`src/playlist_state.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_state.Tpo $(DEPDIR)/src_mpd-playlist_state.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_state.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_state.Tpo" -c -o src_mpd-playlist_state.o `test -f 'src/playlist_state.c' || echo '$(srcdir)/'`src/playlist_state.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_state.Tpo" "$(DEPDIR)/src_mpd-playlist_state.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_state.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_state.c' object='src_mpd-playlist_state.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_state.o `test -f 'src/playlist_state.c' || echo '$(srcdir)/'`src/playlist_state.c + + src_mpd-playlist_state.obj: src/playlist_state.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_state.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_state.Tpo -c -o src_mpd-playlist_state.obj `if test -f 'src/playlist_state.c'; then $(CYGPATH_W) 'src/playlist_state.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_state.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_state.Tpo $(DEPDIR)/src_mpd-playlist_state.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_state.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_state.Tpo" -c -o src_mpd-playlist_state.obj `if test -f 'src/playlist_state.c'; then $(CYGPATH_W) 'src/playlist_state.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_state.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_state.Tpo" "$(DEPDIR)/src_mpd-playlist_state.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_state.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_state.c' object='src_mpd-playlist_state.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_state.obj `if test -f 'src/playlist_state.c'; then $(CYGPATH_W) 'src/playlist_state.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_state.c'; fi` + + src_mpd-queue.o: src/queue.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue.o -MD -MP -MF $(DEPDIR)/src_mpd-queue.Tpo -c -o src_mpd-queue.o `test -f 'src/queue.c' || echo '$(srcdir)/'`src/queue.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue.Tpo $(DEPDIR)/src_mpd-queue.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue.o -MD -MP -MF "$(DEPDIR)/src_mpd-queue.Tpo" -c -o src_mpd-queue.o `test -f 'src/queue.c' || echo '$(srcdir)/'`src/queue.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue.Tpo" "$(DEPDIR)/src_mpd-queue.Po"; else rm -f "$(DEPDIR)/src_mpd-queue.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue.c' object='src_mpd-queue.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue.o `test -f 'src/queue.c' || echo '$(srcdir)/'`src/queue.c + + src_mpd-queue.obj: src/queue.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue.obj -MD -MP -MF $(DEPDIR)/src_mpd-queue.Tpo -c -o src_mpd-queue.obj `if test -f 'src/queue.c'; then $(CYGPATH_W) 'src/queue.c'; else $(CYGPATH_W) '$(srcdir)/src/queue.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue.Tpo $(DEPDIR)/src_mpd-queue.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue.obj -MD -MP -MF "$(DEPDIR)/src_mpd-queue.Tpo" -c -o src_mpd-queue.obj `if test -f 'src/queue.c'; then $(CYGPATH_W) 'src/queue.c'; else $(CYGPATH_W) '$(srcdir)/src/queue.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue.Tpo" "$(DEPDIR)/src_mpd-queue.Po"; else rm -f "$(DEPDIR)/src_mpd-queue.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue.c' object='src_mpd-queue.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue.obj `if test -f 'src/queue.c'; then $(CYGPATH_W) 'src/queue.c'; else $(CYGPATH_W) '$(srcdir)/src/queue.c'; fi` + + src_mpd-queue_print.o: src/queue_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_print.o -MD -MP -MF $(DEPDIR)/src_mpd-queue_print.Tpo -c -o src_mpd-queue_print.o `test -f 'src/queue_print.c' || echo '$(srcdir)/'`src/queue_print.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue_print.Tpo $(DEPDIR)/src_mpd-queue_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-queue_print.Tpo" -c -o src_mpd-queue_print.o `test -f 'src/queue_print.c' || echo '$(srcdir)/'`src/queue_print.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue_print.Tpo" "$(DEPDIR)/src_mpd-queue_print.Po"; else rm -f "$(DEPDIR)/src_mpd-queue_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue_print.c' object='src_mpd-queue_print.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue_print.o `test -f 'src/queue_print.c' || echo '$(srcdir)/'`src/queue_print.c + + src_mpd-queue_print.obj: src/queue_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-queue_print.Tpo -c -o src_mpd-queue_print.obj `if test -f 'src/queue_print.c'; then $(CYGPATH_W) 'src/queue_print.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_print.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue_print.Tpo $(DEPDIR)/src_mpd-queue_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-queue_print.Tpo" -c -o src_mpd-queue_print.obj `if test -f 'src/queue_print.c'; then $(CYGPATH_W) 'src/queue_print.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_print.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue_print.Tpo" "$(DEPDIR)/src_mpd-queue_print.Po"; else rm -f "$(DEPDIR)/src_mpd-queue_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue_print.c' object='src_mpd-queue_print.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue_print.obj `if test -f 'src/queue_print.c'; then $(CYGPATH_W) 'src/queue_print.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_print.c'; fi` + + src_mpd-queue_save.o: src/queue_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_save.o -MD -MP -MF $(DEPDIR)/src_mpd-queue_save.Tpo -c -o src_mpd-queue_save.o `test -f 'src/queue_save.c' || echo '$(srcdir)/'`src/queue_save.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue_save.Tpo $(DEPDIR)/src_mpd-queue_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_save.o -MD -MP -MF "$(DEPDIR)/src_mpd-queue_save.Tpo" -c -o src_mpd-queue_save.o `test -f 'src/queue_save.c' || echo '$(srcdir)/'`src/queue_save.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue_save.Tpo" "$(DEPDIR)/src_mpd-queue_save.Po"; else rm -f "$(DEPDIR)/src_mpd-queue_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue_save.c' object='src_mpd-queue_save.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue_save.o `test -f 'src/queue_save.c' || echo '$(srcdir)/'`src/queue_save.c + + src_mpd-queue_save.obj: src/queue_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_save.obj -MD -MP -MF $(DEPDIR)/src_mpd-queue_save.Tpo -c -o src_mpd-queue_save.obj `if test -f 'src/queue_save.c'; then $(CYGPATH_W) 'src/queue_save.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_save.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue_save.Tpo $(DEPDIR)/src_mpd-queue_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_save.obj -MD -MP -MF "$(DEPDIR)/src_mpd-queue_save.Tpo" -c -o src_mpd-queue_save.obj `if test -f 'src/queue_save.c'; then $(CYGPATH_W) 'src/queue_save.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_save.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue_save.Tpo" "$(DEPDIR)/src_mpd-queue_save.Po"; else rm -f "$(DEPDIR)/src_mpd-queue_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue_save.c' object='src_mpd-queue_save.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue_save.obj `if test -f 'src/queue_save.c'; then $(CYGPATH_W) 'src/queue_save.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_save.c'; fi` + + src_mpd-replay_gain.o: src/replay_gain.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-replay_gain.o -MD -MP -MF $(DEPDIR)/src_mpd-replay_gain.Tpo -c -o src_mpd-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-replay_gain.Tpo $(DEPDIR)/src_mpd-replay_gain.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-replay_gain.o -MD -MP -MF "$(DEPDIR)/src_mpd-replay_gain.Tpo" -c -o src_mpd-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-replay_gain.Tpo" "$(DEPDIR)/src_mpd-replay_gain.Po"; else rm -f "$(DEPDIR)/src_mpd-replay_gain.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='src_mpd-replay_gain.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c + + src_mpd-replay_gain.obj: src/replay_gain.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-replay_gain.obj -MD -MP -MF $(DEPDIR)/src_mpd-replay_gain.Tpo -c -o src_mpd-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-replay_gain.Tpo $(DEPDIR)/src_mpd-replay_gain.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-replay_gain.obj -MD -MP -MF "$(DEPDIR)/src_mpd-replay_gain.Tpo" -c -o src_mpd-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-replay_gain.Tpo" "$(DEPDIR)/src_mpd-replay_gain.Po"; else rm -f "$(DEPDIR)/src_mpd-replay_gain.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='src_mpd-replay_gain.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi` + + src_mpd-sig_handlers.o: src/sig_handlers.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sig_handlers.o -MD -MP -MF $(DEPDIR)/src_mpd-sig_handlers.Tpo -c -o src_mpd-sig_handlers.o `test -f 'src/sig_handlers.c' || echo '$(srcdir)/'`src/sig_handlers.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sig_handlers.Tpo $(DEPDIR)/src_mpd-sig_handlers.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sig_handlers.o -MD -MP -MF "$(DEPDIR)/src_mpd-sig_handlers.Tpo" -c -o src_mpd-sig_handlers.o `test -f 'src/sig_handlers.c' || echo '$(srcdir)/'`src/sig_handlers.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sig_handlers.Tpo" "$(DEPDIR)/src_mpd-sig_handlers.Po"; else rm -f "$(DEPDIR)/src_mpd-sig_handlers.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sig_handlers.c' object='src_mpd-sig_handlers.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sig_handlers.o `test -f 'src/sig_handlers.c' || echo '$(srcdir)/'`src/sig_handlers.c + + src_mpd-sig_handlers.obj: src/sig_handlers.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sig_handlers.obj -MD -MP -MF $(DEPDIR)/src_mpd-sig_handlers.Tpo -c -o src_mpd-sig_handlers.obj `if test -f 'src/sig_handlers.c'; then $(CYGPATH_W) 'src/sig_handlers.c'; else $(CYGPATH_W) '$(srcdir)/src/sig_handlers.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sig_handlers.Tpo $(DEPDIR)/src_mpd-sig_handlers.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sig_handlers.obj -MD -MP -MF "$(DEPDIR)/src_mpd-sig_handlers.Tpo" -c -o src_mpd-sig_handlers.obj `if test -f 'src/sig_handlers.c'; then $(CYGPATH_W) 'src/sig_handlers.c'; else $(CYGPATH_W) '$(srcdir)/src/sig_handlers.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sig_handlers.Tpo" "$(DEPDIR)/src_mpd-sig_handlers.Po"; else rm -f "$(DEPDIR)/src_mpd-sig_handlers.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sig_handlers.c' object='src_mpd-sig_handlers.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sig_handlers.obj `if test -f 'src/sig_handlers.c'; then $(CYGPATH_W) 'src/sig_handlers.c'; else $(CYGPATH_W) '$(srcdir)/src/sig_handlers.c'; fi` + + src_mpd-song.o: src/song.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song.o -MD -MP -MF $(DEPDIR)/src_mpd-song.Tpo -c -o src_mpd-song.o `test -f 'src/song.c' || echo '$(srcdir)/'`src/song.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song.Tpo $(DEPDIR)/src_mpd-song.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song.o -MD -MP -MF "$(DEPDIR)/src_mpd-song.Tpo" -c -o src_mpd-song.o `test -f 'src/song.c' || echo '$(srcdir)/'`src/song.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song.Tpo" "$(DEPDIR)/src_mpd-song.Po"; else rm -f "$(DEPDIR)/src_mpd-song.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song.c' object='src_mpd-song.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song.o `test -f 'src/song.c' || echo '$(srcdir)/'`src/song.c + + src_mpd-song.obj: src/song.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song.obj -MD -MP -MF $(DEPDIR)/src_mpd-song.Tpo -c -o src_mpd-song.obj `if test -f 'src/song.c'; then $(CYGPATH_W) 'src/song.c'; else $(CYGPATH_W) '$(srcdir)/src/song.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song.Tpo $(DEPDIR)/src_mpd-song.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song.obj -MD -MP -MF "$(DEPDIR)/src_mpd-song.Tpo" -c -o src_mpd-song.obj `if test -f 'src/song.c'; then $(CYGPATH_W) 'src/song.c'; else $(CYGPATH_W) '$(srcdir)/src/song.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song.Tpo" "$(DEPDIR)/src_mpd-song.Po"; else rm -f "$(DEPDIR)/src_mpd-song.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song.c' object='src_mpd-song.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song.obj `if test -f 'src/song.c'; then $(CYGPATH_W) 'src/song.c'; else $(CYGPATH_W) '$(srcdir)/src/song.c'; fi` + + src_mpd-song_print.o: src/song_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_print.o -MD -MP -MF $(DEPDIR)/src_mpd-song_print.Tpo -c -o src_mpd-song_print.o `test -f 'src/song_print.c' || echo '$(srcdir)/'`src/song_print.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_print.Tpo $(DEPDIR)/src_mpd-song_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-song_print.Tpo" -c -o src_mpd-song_print.o `test -f 'src/song_print.c' || echo '$(srcdir)/'`src/song_print.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_print.Tpo" "$(DEPDIR)/src_mpd-song_print.Po"; else rm -f "$(DEPDIR)/src_mpd-song_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_print.c' object='src_mpd-song_print.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_print.o `test -f 'src/song_print.c' || echo '$(srcdir)/'`src/song_print.c + + src_mpd-song_print.obj: src/song_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-song_print.Tpo -c -o src_mpd-song_print.obj `if test -f 'src/song_print.c'; then $(CYGPATH_W) 'src/song_print.c'; else $(CYGPATH_W) '$(srcdir)/src/song_print.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_print.Tpo $(DEPDIR)/src_mpd-song_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-song_print.Tpo" -c -o src_mpd-song_print.obj `if test -f 'src/song_print.c'; then $(CYGPATH_W) 'src/song_print.c'; else $(CYGPATH_W) '$(srcdir)/src/song_print.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_print.Tpo" "$(DEPDIR)/src_mpd-song_print.Po"; else rm -f "$(DEPDIR)/src_mpd-song_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_print.c' object='src_mpd-song_print.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_print.obj `if test -f 'src/song_print.c'; then $(CYGPATH_W) 'src/song_print.c'; else $(CYGPATH_W) '$(srcdir)/src/song_print.c'; fi` + + src_mpd-song_save.o: src/song_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_save.o -MD -MP -MF $(DEPDIR)/src_mpd-song_save.Tpo -c -o src_mpd-song_save.o `test -f 'src/song_save.c' || echo '$(srcdir)/'`src/song_save.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_save.Tpo $(DEPDIR)/src_mpd-song_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_save.o -MD -MP -MF "$(DEPDIR)/src_mpd-song_save.Tpo" -c -o src_mpd-song_save.o `test -f 'src/song_save.c' || echo '$(srcdir)/'`src/song_save.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_save.Tpo" "$(DEPDIR)/src_mpd-song_save.Po"; else rm -f "$(DEPDIR)/src_mpd-song_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_save.c' object='src_mpd-song_save.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_save.o `test -f 'src/song_save.c' || echo '$(srcdir)/'`src/song_save.c + + src_mpd-song_save.obj: src/song_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_save.obj -MD -MP -MF $(DEPDIR)/src_mpd-song_save.Tpo -c -o src_mpd-song_save.obj `if test -f 'src/song_save.c'; then $(CYGPATH_W) 'src/song_save.c'; else $(CYGPATH_W) '$(srcdir)/src/song_save.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_save.Tpo $(DEPDIR)/src_mpd-song_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_save.obj -MD -MP -MF "$(DEPDIR)/src_mpd-song_save.Tpo" -c -o src_mpd-song_save.obj `if test -f 'src/song_save.c'; then $(CYGPATH_W) 'src/song_save.c'; else $(CYGPATH_W) '$(srcdir)/src/song_save.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_save.Tpo" "$(DEPDIR)/src_mpd-song_save.Po"; else rm -f "$(DEPDIR)/src_mpd-song_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_save.c' object='src_mpd-song_save.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_save.obj `if test -f 'src/song_save.c'; then $(CYGPATH_W) 'src/song_save.c'; else $(CYGPATH_W) '$(srcdir)/src/song_save.c'; fi` + + src_mpd-songvec.o: src/songvec.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-songvec.o -MD -MP -MF $(DEPDIR)/src_mpd-songvec.Tpo -c -o src_mpd-songvec.o `test -f 'src/songvec.c' || echo '$(srcdir)/'`src/songvec.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-songvec.Tpo $(DEPDIR)/src_mpd-songvec.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-songvec.o -MD -MP -MF "$(DEPDIR)/src_mpd-songvec.Tpo" -c -o src_mpd-songvec.o `test -f 'src/songvec.c' || echo '$(srcdir)/'`src/songvec.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-songvec.Tpo" "$(DEPDIR)/src_mpd-songvec.Po"; else rm -f "$(DEPDIR)/src_mpd-songvec.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/songvec.c' object='src_mpd-songvec.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-songvec.o `test -f 'src/songvec.c' || echo '$(srcdir)/'`src/songvec.c + + src_mpd-songvec.obj: src/songvec.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-songvec.obj -MD -MP -MF $(DEPDIR)/src_mpd-songvec.Tpo -c -o src_mpd-songvec.obj `if test -f 'src/songvec.c'; then $(CYGPATH_W) 'src/songvec.c'; else $(CYGPATH_W) '$(srcdir)/src/songvec.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-songvec.Tpo $(DEPDIR)/src_mpd-songvec.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-songvec.obj -MD -MP -MF "$(DEPDIR)/src_mpd-songvec.Tpo" -c -o src_mpd-songvec.obj `if test -f 'src/songvec.c'; then $(CYGPATH_W) 'src/songvec.c'; else $(CYGPATH_W) '$(srcdir)/src/songvec.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-songvec.Tpo" "$(DEPDIR)/src_mpd-songvec.Po"; else rm -f "$(DEPDIR)/src_mpd-songvec.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/songvec.c' object='src_mpd-songvec.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-songvec.obj `if test -f 'src/songvec.c'; then $(CYGPATH_W) 'src/songvec.c'; else $(CYGPATH_W) '$(srcdir)/src/songvec.c'; fi` + + src_mpd-socket_util.o: src/socket_util.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-socket_util.o -MD -MP -MF $(DEPDIR)/src_mpd-socket_util.Tpo -c -o src_mpd-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-socket_util.Tpo $(DEPDIR)/src_mpd-socket_util.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-socket_util.o -MD -MP -MF "$(DEPDIR)/src_mpd-socket_util.Tpo" -c -o src_mpd-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-socket_util.Tpo" "$(DEPDIR)/src_mpd-socket_util.Po"; else rm -f "$(DEPDIR)/src_mpd-socket_util.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/socket_util.c' object='src_mpd-socket_util.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c + + src_mpd-socket_util.obj: src/socket_util.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-socket_util.obj -MD -MP -MF $(DEPDIR)/src_mpd-socket_util.Tpo -c -o src_mpd-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-socket_util.Tpo $(DEPDIR)/src_mpd-socket_util.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-socket_util.obj -MD -MP -MF "$(DEPDIR)/src_mpd-socket_util.Tpo" -c -o src_mpd-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-socket_util.Tpo" "$(DEPDIR)/src_mpd-socket_util.Po"; else rm -f "$(DEPDIR)/src_mpd-socket_util.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/socket_util.c' object='src_mpd-socket_util.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi` + + src_mpd-state_file.o: src/state_file.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-state_file.o -MD -MP -MF $(DEPDIR)/src_mpd-state_file.Tpo -c -o src_mpd-state_file.o `test -f 'src/state_file.c' || echo '$(srcdir)/'`src/state_file.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-state_file.Tpo $(DEPDIR)/src_mpd-state_file.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-state_file.o -MD -MP -MF "$(DEPDIR)/src_mpd-state_file.Tpo" -c -o src_mpd-state_file.o `test -f 'src/state_file.c' || echo '$(srcdir)/'`src/state_file.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-state_file.Tpo" "$(DEPDIR)/src_mpd-state_file.Po"; else rm -f "$(DEPDIR)/src_mpd-state_file.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/state_file.c' object='src_mpd-state_file.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-state_file.o `test -f 'src/state_file.c' || echo '$(srcdir)/'`src/state_file.c + + src_mpd-state_file.obj: src/state_file.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-state_file.obj -MD -MP -MF $(DEPDIR)/src_mpd-state_file.Tpo -c -o src_mpd-state_file.obj `if test -f 'src/state_file.c'; then $(CYGPATH_W) 'src/state_file.c'; else $(CYGPATH_W) '$(srcdir)/src/state_file.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-state_file.Tpo $(DEPDIR)/src_mpd-state_file.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-state_file.obj -MD -MP -MF "$(DEPDIR)/src_mpd-state_file.Tpo" -c -o src_mpd-state_file.obj `if test -f 'src/state_file.c'; then $(CYGPATH_W) 'src/state_file.c'; else $(CYGPATH_W) '$(srcdir)/src/state_file.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-state_file.Tpo" "$(DEPDIR)/src_mpd-state_file.Po"; else rm -f "$(DEPDIR)/src_mpd-state_file.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/state_file.c' object='src_mpd-state_file.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-state_file.obj `if test -f 'src/state_file.c'; then $(CYGPATH_W) 'src/state_file.c'; else $(CYGPATH_W) '$(srcdir)/src/state_file.c'; fi` + + src_mpd-stats.o: src/stats.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stats.o -MD -MP -MF $(DEPDIR)/src_mpd-stats.Tpo -c -o src_mpd-stats.o `test -f 'src/stats.c' || echo '$(srcdir)/'`src/stats.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-stats.Tpo $(DEPDIR)/src_mpd-stats.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stats.o -MD -MP -MF "$(DEPDIR)/src_mpd-stats.Tpo" -c -o src_mpd-stats.o `test -f 'src/stats.c' || echo '$(srcdir)/'`src/stats.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-stats.Tpo" "$(DEPDIR)/src_mpd-stats.Po"; else rm -f "$(DEPDIR)/src_mpd-stats.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/stats.c' object='src_mpd-stats.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-stats.o `test -f 'src/stats.c' || echo '$(srcdir)/'`src/stats.c + + src_mpd-stats.obj: src/stats.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stats.obj -MD -MP -MF $(DEPDIR)/src_mpd-stats.Tpo -c -o src_mpd-stats.obj `if test -f 'src/stats.c'; then $(CYGPATH_W) 'src/stats.c'; else $(CYGPATH_W) '$(srcdir)/src/stats.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-stats.Tpo $(DEPDIR)/src_mpd-stats.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stats.obj -MD -MP -MF "$(DEPDIR)/src_mpd-stats.Tpo" -c -o src_mpd-stats.obj `if test -f 'src/stats.c'; then $(CYGPATH_W) 'src/stats.c'; else $(CYGPATH_W) '$(srcdir)/src/stats.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-stats.Tpo" "$(DEPDIR)/src_mpd-stats.Po"; else rm -f "$(DEPDIR)/src_mpd-stats.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/stats.c' object='src_mpd-stats.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-stats.obj `if test -f 'src/stats.c'; then $(CYGPATH_W) 'src/stats.c'; else $(CYGPATH_W) '$(srcdir)/src/stats.c'; fi` + + src_mpd-tag.o: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag.o -MD -MP -MF $(DEPDIR)/src_mpd-tag.Tpo -c -o src_mpd-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag.Tpo $(DEPDIR)/src_mpd-tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag.Tpo" -c -o src_mpd-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag.Tpo" "$(DEPDIR)/src_mpd-tag.Po"; else rm -f "$(DEPDIR)/src_mpd-tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='src_mpd-tag.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c + + src_mpd-tag.obj: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag.Tpo -c -o src_mpd-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag.Tpo $(DEPDIR)/src_mpd-tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag.Tpo" -c -o src_mpd-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag.Tpo" "$(DEPDIR)/src_mpd-tag.Po"; else rm -f "$(DEPDIR)/src_mpd-tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='src_mpd-tag.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` + + src_mpd-tag_pool.o: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_pool.o -MD -MP -MF $(DEPDIR)/src_mpd-tag_pool.Tpo -c -o src_mpd-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_pool.Tpo $(DEPDIR)/src_mpd-tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_pool.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag_pool.Tpo" -c -o src_mpd-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_pool.Tpo" "$(DEPDIR)/src_mpd-tag_pool.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='src_mpd-tag_pool.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c + + src_mpd-tag_pool.obj: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_pool.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag_pool.Tpo -c -o src_mpd-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_pool.Tpo $(DEPDIR)/src_mpd-tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_pool.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag_pool.Tpo" -c -o src_mpd-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_pool.Tpo" "$(DEPDIR)/src_mpd-tag_pool.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='src_mpd-tag_pool.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` + + src_mpd-tag_print.o: src/tag_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_print.o -MD -MP -MF $(DEPDIR)/src_mpd-tag_print.Tpo -c -o src_mpd-tag_print.o `test -f 'src/tag_print.c' || echo '$(srcdir)/'`src/tag_print.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_print.Tpo $(DEPDIR)/src_mpd-tag_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag_print.Tpo" -c -o src_mpd-tag_print.o `test -f 'src/tag_print.c' || echo '$(srcdir)/'`src/tag_print.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_print.Tpo" "$(DEPDIR)/src_mpd-tag_print.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_print.c' object='src_mpd-tag_print.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_print.o `test -f 'src/tag_print.c' || echo '$(srcdir)/'`src/tag_print.c + + src_mpd-tag_print.obj: src/tag_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag_print.Tpo -c -o src_mpd-tag_print.obj `if test -f 'src/tag_print.c'; then $(CYGPATH_W) 'src/tag_print.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_print.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_print.Tpo $(DEPDIR)/src_mpd-tag_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag_print.Tpo" -c -o src_mpd-tag_print.obj `if test -f 'src/tag_print.c'; then $(CYGPATH_W) 'src/tag_print.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_print.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_print.Tpo" "$(DEPDIR)/src_mpd-tag_print.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_print.c' object='src_mpd-tag_print.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_print.obj `if test -f 'src/tag_print.c'; then $(CYGPATH_W) 'src/tag_print.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_print.c'; fi` + + src_mpd-tag_save.o: src/tag_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_save.o -MD -MP -MF $(DEPDIR)/src_mpd-tag_save.Tpo -c -o src_mpd-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_save.Tpo $(DEPDIR)/src_mpd-tag_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_save.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag_save.Tpo" -c -o src_mpd-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_save.Tpo" "$(DEPDIR)/src_mpd-tag_save.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_save.c' object='src_mpd-tag_save.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c + + src_mpd-tag_save.obj: src/tag_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_save.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag_save.Tpo -c -o src_mpd-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_save.Tpo $(DEPDIR)/src_mpd-tag_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_save.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag_save.Tpo" -c -o src_mpd-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_save.Tpo" "$(DEPDIR)/src_mpd-tag_save.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_save.c' object='src_mpd-tag_save.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi` + + src_mpd-strset.o: src/strset.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-strset.o -MD -MP -MF $(DEPDIR)/src_mpd-strset.Tpo -c -o src_mpd-strset.o `test -f 'src/strset.c' || echo '$(srcdir)/'`src/strset.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-strset.Tpo $(DEPDIR)/src_mpd-strset.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-strset.o -MD -MP -MF "$(DEPDIR)/src_mpd-strset.Tpo" -c -o src_mpd-strset.o `test -f 'src/strset.c' || echo '$(srcdir)/'`src/strset.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-strset.Tpo" "$(DEPDIR)/src_mpd-strset.Po"; else rm -f "$(DEPDIR)/src_mpd-strset.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/strset.c' object='src_mpd-strset.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-strset.o `test -f 'src/strset.c' || echo '$(srcdir)/'`src/strset.c + + src_mpd-strset.obj: src/strset.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-strset.obj -MD -MP -MF $(DEPDIR)/src_mpd-strset.Tpo -c -o src_mpd-strset.obj `if test -f 'src/strset.c'; then $(CYGPATH_W) 'src/strset.c'; else $(CYGPATH_W) '$(srcdir)/src/strset.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-strset.Tpo $(DEPDIR)/src_mpd-strset.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-strset.obj -MD -MP -MF "$(DEPDIR)/src_mpd-strset.Tpo" -c -o src_mpd-strset.obj `if test -f 'src/strset.c'; then $(CYGPATH_W) 'src/strset.c'; else $(CYGPATH_W) '$(srcdir)/src/strset.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-strset.Tpo" "$(DEPDIR)/src_mpd-strset.Po"; else rm -f "$(DEPDIR)/src_mpd-strset.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/strset.c' object='src_mpd-strset.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-strset.obj `if test -f 'src/strset.c'; then $(CYGPATH_W) 'src/strset.c'; else $(CYGPATH_W) '$(srcdir)/src/strset.c'; fi` + + src_mpd-uri.o: src/uri.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-uri.o -MD -MP -MF $(DEPDIR)/src_mpd-uri.Tpo -c -o src_mpd-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-uri.Tpo $(DEPDIR)/src_mpd-uri.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-uri.o -MD -MP -MF "$(DEPDIR)/src_mpd-uri.Tpo" -c -o src_mpd-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-uri.Tpo" "$(DEPDIR)/src_mpd-uri.Po"; else rm -f "$(DEPDIR)/src_mpd-uri.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='src_mpd-uri.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c + + src_mpd-uri.obj: src/uri.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-uri.obj -MD -MP -MF $(DEPDIR)/src_mpd-uri.Tpo -c -o src_mpd-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-uri.Tpo $(DEPDIR)/src_mpd-uri.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-uri.obj -MD -MP -MF "$(DEPDIR)/src_mpd-uri.Tpo" -c -o src_mpd-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-uri.Tpo" "$(DEPDIR)/src_mpd-uri.Po"; else rm -f "$(DEPDIR)/src_mpd-uri.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='src_mpd-uri.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi` + + src_mpd-utils.o: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-utils.o -MD -MP -MF $(DEPDIR)/src_mpd-utils.Tpo -c -o src_mpd-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-utils.Tpo $(DEPDIR)/src_mpd-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-utils.o -MD -MP -MF "$(DEPDIR)/src_mpd-utils.Tpo" -c -o src_mpd-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-utils.Tpo" "$(DEPDIR)/src_mpd-utils.Po"; else rm -f "$(DEPDIR)/src_mpd-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='src_mpd-utils.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c + + src_mpd-utils.obj: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-utils.obj -MD -MP -MF $(DEPDIR)/src_mpd-utils.Tpo -c -o src_mpd-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-utils.Tpo $(DEPDIR)/src_mpd-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-utils.obj -MD -MP -MF "$(DEPDIR)/src_mpd-utils.Tpo" -c -o src_mpd-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-utils.Tpo" "$(DEPDIR)/src_mpd-utils.Po"; else rm -f "$(DEPDIR)/src_mpd-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='src_mpd-utils.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` + + src_mpd-volume.o: src/volume.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-volume.o -MD -MP -MF $(DEPDIR)/src_mpd-volume.Tpo -c -o src_mpd-volume.o `test -f 'src/volume.c' || echo '$(srcdir)/'`src/volume.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-volume.Tpo $(DEPDIR)/src_mpd-volume.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-volume.o -MD -MP -MF "$(DEPDIR)/src_mpd-volume.Tpo" -c -o src_mpd-volume.o `test -f 'src/volume.c' || echo '$(srcdir)/'`src/volume.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-volume.Tpo" "$(DEPDIR)/src_mpd-volume.Po"; else rm -f "$(DEPDIR)/src_mpd-volume.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/volume.c' object='src_mpd-volume.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-volume.o `test -f 'src/volume.c' || echo '$(srcdir)/'`src/volume.c + + src_mpd-volume.obj: src/volume.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-volume.obj -MD -MP -MF $(DEPDIR)/src_mpd-volume.Tpo -c -o src_mpd-volume.obj `if test -f 'src/volume.c'; then $(CYGPATH_W) 'src/volume.c'; else $(CYGPATH_W) '$(srcdir)/src/volume.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-volume.Tpo $(DEPDIR)/src_mpd-volume.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-volume.obj -MD -MP -MF "$(DEPDIR)/src_mpd-volume.Tpo" -c -o src_mpd-volume.obj `if test -f 'src/volume.c'; then $(CYGPATH_W) 'src/volume.c'; else $(CYGPATH_W) '$(srcdir)/src/volume.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-volume.Tpo" "$(DEPDIR)/src_mpd-volume.Po"; else rm -f "$(DEPDIR)/src_mpd-volume.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/volume.c' object='src_mpd-volume.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-volume.obj `if test -f 'src/volume.c'; then $(CYGPATH_W) 'src/volume.c'; else $(CYGPATH_W) '$(srcdir)/src/volume.c'; fi` + + src_mpd-locate.o: src/locate.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-locate.o -MD -MP -MF $(DEPDIR)/src_mpd-locate.Tpo -c -o src_mpd-locate.o `test -f 'src/locate.c' || echo '$(srcdir)/'`src/locate.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-locate.Tpo $(DEPDIR)/src_mpd-locate.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-locate.o -MD -MP -MF "$(DEPDIR)/src_mpd-locate.Tpo" -c -o src_mpd-locate.o `test -f 'src/locate.c' || echo '$(srcdir)/'`src/locate.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-locate.Tpo" "$(DEPDIR)/src_mpd-locate.Po"; else rm -f "$(DEPDIR)/src_mpd-locate.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/locate.c' object='src_mpd-locate.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-locate.o `test -f 'src/locate.c' || echo '$(srcdir)/'`src/locate.c + + src_mpd-locate.obj: src/locate.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-locate.obj -MD -MP -MF $(DEPDIR)/src_mpd-locate.Tpo -c -o src_mpd-locate.obj `if test -f 'src/locate.c'; then $(CYGPATH_W) 'src/locate.c'; else $(CYGPATH_W) '$(srcdir)/src/locate.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-locate.Tpo $(DEPDIR)/src_mpd-locate.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-locate.obj -MD -MP -MF "$(DEPDIR)/src_mpd-locate.Tpo" -c -o src_mpd-locate.obj `if test -f 'src/locate.c'; then $(CYGPATH_W) 'src/locate.c'; else $(CYGPATH_W) '$(srcdir)/src/locate.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-locate.Tpo" "$(DEPDIR)/src_mpd-locate.Po"; else rm -f "$(DEPDIR)/src_mpd-locate.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/locate.c' object='src_mpd-locate.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-locate.obj `if test -f 'src/locate.c'; then $(CYGPATH_W) 'src/locate.c'; else $(CYGPATH_W) '$(srcdir)/src/locate.c'; fi` + + src_mpd-stored_playlist.o: src/stored_playlist.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stored_playlist.o -MD -MP -MF $(DEPDIR)/src_mpd-stored_playlist.Tpo -c -o src_mpd-stored_playlist.o `test -f 'src/stored_playlist.c' || echo '$(srcdir)/'`src/stored_playlist.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-stored_playlist.Tpo $(DEPDIR)/src_mpd-stored_playlist.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stored_playlist.o -MD -MP -MF "$(DEPDIR)/src_mpd-stored_playlist.Tpo" -c -o src_mpd-stored_playlist.o `test -f 'src/stored_playlist.c' || echo '$(srcdir)/'`src/stored_playlist.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-stored_playlist.Tpo" "$(DEPDIR)/src_mpd-stored_playlist.Po"; else rm -f "$(DEPDIR)/src_mpd-stored_playlist.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/stored_playlist.c' object='src_mpd-stored_playlist.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-stored_playlist.o `test -f 'src/stored_playlist.c' || echo '$(srcdir)/'`src/stored_playlist.c + + src_mpd-stored_playlist.obj: src/stored_playlist.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stored_playlist.obj -MD -MP -MF $(DEPDIR)/src_mpd-stored_playlist.Tpo -c -o src_mpd-stored_playlist.obj `if test -f 'src/stored_playlist.c'; then $(CYGPATH_W) 'src/stored_playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/stored_playlist.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-stored_playlist.Tpo $(DEPDIR)/src_mpd-stored_playlist.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stored_playlist.obj -MD -MP -MF "$(DEPDIR)/src_mpd-stored_playlist.Tpo" -c -o src_mpd-stored_playlist.obj `if test -f 'src/stored_playlist.c'; then $(CYGPATH_W) 'src/stored_playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/stored_playlist.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-stored_playlist.Tpo" "$(DEPDIR)/src_mpd-stored_playlist.Po"; else rm -f "$(DEPDIR)/src_mpd-stored_playlist.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/stored_playlist.c' object='src_mpd-stored_playlist.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-stored_playlist.obj `if test -f 'src/stored_playlist.c'; then $(CYGPATH_W) 'src/stored_playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/stored_playlist.c'; fi` + + src_mpd-timer.o: src/timer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-timer.o -MD -MP -MF $(DEPDIR)/src_mpd-timer.Tpo -c -o src_mpd-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-timer.Tpo $(DEPDIR)/src_mpd-timer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-timer.o -MD -MP -MF "$(DEPDIR)/src_mpd-timer.Tpo" -c -o src_mpd-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-timer.Tpo" "$(DEPDIR)/src_mpd-timer.Po"; else rm -f "$(DEPDIR)/src_mpd-timer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='src_mpd-timer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c + + src_mpd-timer.obj: src/timer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-timer.obj -MD -MP -MF $(DEPDIR)/src_mpd-timer.Tpo -c -o src_mpd-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-timer.Tpo $(DEPDIR)/src_mpd-timer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-timer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-timer.Tpo" -c -o src_mpd-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-timer.Tpo" "$(DEPDIR)/src_mpd-timer.Po"; else rm -f "$(DEPDIR)/src_mpd-timer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='src_mpd-timer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi` + + src_mpd-sticker.o: src/sticker.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker.o -MD -MP -MF $(DEPDIR)/src_mpd-sticker.Tpo -c -o src_mpd-sticker.o `test -f 'src/sticker.c' || echo '$(srcdir)/'`src/sticker.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sticker.Tpo $(DEPDIR)/src_mpd-sticker.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker.o -MD -MP -MF "$(DEPDIR)/src_mpd-sticker.Tpo" -c -o src_mpd-sticker.o `test -f 'src/sticker.c' || echo '$(srcdir)/'`src/sticker.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sticker.Tpo" "$(DEPDIR)/src_mpd-sticker.Po"; else rm -f "$(DEPDIR)/src_mpd-sticker.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sticker.c' object='src_mpd-sticker.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sticker.o `test -f 'src/sticker.c' || echo '$(srcdir)/'`src/sticker.c + + src_mpd-sticker.obj: src/sticker.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker.obj -MD -MP -MF $(DEPDIR)/src_mpd-sticker.Tpo -c -o src_mpd-sticker.obj `if test -f 'src/sticker.c'; then $(CYGPATH_W) 'src/sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sticker.Tpo $(DEPDIR)/src_mpd-sticker.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker.obj -MD -MP -MF "$(DEPDIR)/src_mpd-sticker.Tpo" -c -o src_mpd-sticker.obj `if test -f 'src/sticker.c'; then $(CYGPATH_W) 'src/sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sticker.Tpo" "$(DEPDIR)/src_mpd-sticker.Po"; else rm -f "$(DEPDIR)/src_mpd-sticker.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sticker.c' object='src_mpd-sticker.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sticker.obj `if test -f 'src/sticker.c'; then $(CYGPATH_W) 'src/sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker.c'; fi` + + src_mpd-sticker_print.o: src/sticker_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker_print.o -MD -MP -MF $(DEPDIR)/src_mpd-sticker_print.Tpo -c -o src_mpd-sticker_print.o `test -f 'src/sticker_print.c' || echo '$(srcdir)/'`src/sticker_print.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sticker_print.Tpo $(DEPDIR)/src_mpd-sticker_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-sticker_print.Tpo" -c -o src_mpd-sticker_print.o `test -f 'src/sticker_print.c' || echo '$(srcdir)/'`src/sticker_print.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sticker_print.Tpo" "$(DEPDIR)/src_mpd-sticker_print.Po"; else rm -f "$(DEPDIR)/src_mpd-sticker_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sticker_print.c' object='src_mpd-sticker_print.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sticker_print.o `test -f 'src/sticker_print.c' || echo '$(srcdir)/'`src/sticker_print.c + + src_mpd-sticker_print.obj: src/sticker_print.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-sticker_print.Tpo -c -o src_mpd-sticker_print.obj `if test -f 'src/sticker_print.c'; then $(CYGPATH_W) 'src/sticker_print.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker_print.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sticker_print.Tpo $(DEPDIR)/src_mpd-sticker_print.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-sticker_print.Tpo" -c -o src_mpd-sticker_print.obj `if test -f 'src/sticker_print.c'; then $(CYGPATH_W) 'src/sticker_print.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker_print.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sticker_print.Tpo" "$(DEPDIR)/src_mpd-sticker_print.Po"; else rm -f "$(DEPDIR)/src_mpd-sticker_print.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sticker_print.c' object='src_mpd-sticker_print.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sticker_print.obj `if test -f 'src/sticker_print.c'; then $(CYGPATH_W) 'src/sticker_print.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker_print.c'; fi` + + src_mpd-song_sticker.o: src/song_sticker.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_sticker.o -MD -MP -MF $(DEPDIR)/src_mpd-song_sticker.Tpo -c -o src_mpd-song_sticker.o `test -f 'src/song_sticker.c' || echo '$(srcdir)/'`src/song_sticker.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_sticker.Tpo $(DEPDIR)/src_mpd-song_sticker.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_sticker.o -MD -MP -MF "$(DEPDIR)/src_mpd-song_sticker.Tpo" -c -o src_mpd-song_sticker.o `test -f 'src/song_sticker.c' || echo '$(srcdir)/'`src/song_sticker.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_sticker.Tpo" "$(DEPDIR)/src_mpd-song_sticker.Po"; else rm -f "$(DEPDIR)/src_mpd-song_sticker.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_sticker.c' object='src_mpd-song_sticker.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_sticker.o `test -f 'src/song_sticker.c' || echo '$(srcdir)/'`src/song_sticker.c + + src_mpd-song_sticker.obj: src/song_sticker.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_sticker.obj -MD -MP -MF $(DEPDIR)/src_mpd-song_sticker.Tpo -c -o src_mpd-song_sticker.obj `if test -f 'src/song_sticker.c'; then $(CYGPATH_W) 'src/song_sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/song_sticker.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_sticker.Tpo $(DEPDIR)/src_mpd-song_sticker.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_sticker.obj -MD -MP -MF "$(DEPDIR)/src_mpd-song_sticker.Tpo" -c -o src_mpd-song_sticker.obj `if test -f 'src/song_sticker.c'; then $(CYGPATH_W) 'src/song_sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/song_sticker.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_sticker.Tpo" "$(DEPDIR)/src_mpd-song_sticker.Po"; else rm -f "$(DEPDIR)/src_mpd-song_sticker.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_sticker.c' object='src_mpd-song_sticker.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_sticker.obj `if test -f 'src/song_sticker.c'; then $(CYGPATH_W) 'src/song_sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/song_sticker.c'; fi` + + src_mpd-pcm_resample_libsamplerate.o: src/pcm_resample_libsamplerate.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_libsamplerate.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo -c -o src_mpd-pcm_resample_libsamplerate.o `test -f 'src/pcm_resample_libsamplerate.c' || echo '$(srcdir)/'`src/pcm_resample_libsamplerate.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_libsamplerate.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo" -c -o src_mpd-pcm_resample_libsamplerate.o `test -f 'src/pcm_resample_libsamplerate.c' || echo '$(srcdir)/'`src/pcm_resample_libsamplerate.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo" "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample_libsamplerate.c' object='src_mpd-pcm_resample_libsamplerate.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample_libsamplerate.o `test -f 'src/pcm_resample_libsamplerate.c' || echo '$(srcdir)/'`src/pcm_resample_libsamplerate.c + + src_mpd-pcm_resample_libsamplerate.obj: src/pcm_resample_libsamplerate.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_libsamplerate.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo -c -o src_mpd-pcm_resample_libsamplerate.obj `if test -f 'src/pcm_resample_libsamplerate.c'; then $(CYGPATH_W) 'src/pcm_resample_libsamplerate.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_libsamplerate.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_libsamplerate.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo" -c -o src_mpd-pcm_resample_libsamplerate.obj `if test -f 'src/pcm_resample_libsamplerate.c'; then $(CYGPATH_W) 'src/pcm_resample_libsamplerate.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_libsamplerate.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo" "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample_libsamplerate.c' object='src_mpd-pcm_resample_libsamplerate.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample_libsamplerate.obj `if test -f 'src/pcm_resample_libsamplerate.c'; then $(CYGPATH_W) 'src/pcm_resample_libsamplerate.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_libsamplerate.c'; fi` + + src_mpd-zeroconf.o: src/zeroconf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf.o -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf.Tpo -c -o src_mpd-zeroconf.o `test -f 'src/zeroconf.c' || echo '$(srcdir)/'`src/zeroconf.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf.Tpo $(DEPDIR)/src_mpd-zeroconf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf.o -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf.Tpo" -c -o src_mpd-zeroconf.o `test -f 'src/zeroconf.c' || echo '$(srcdir)/'`src/zeroconf.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf.Tpo" "$(DEPDIR)/src_mpd-zeroconf.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf.c' object='src_mpd-zeroconf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf.o `test -f 'src/zeroconf.c' || echo '$(srcdir)/'`src/zeroconf.c + + src_mpd-zeroconf.obj: src/zeroconf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf.obj -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf.Tpo -c -o src_mpd-zeroconf.obj `if test -f 'src/zeroconf.c'; then $(CYGPATH_W) 'src/zeroconf.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf.Tpo $(DEPDIR)/src_mpd-zeroconf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf.obj -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf.Tpo" -c -o src_mpd-zeroconf.obj `if test -f 'src/zeroconf.c'; then $(CYGPATH_W) 'src/zeroconf.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf.Tpo" "$(DEPDIR)/src_mpd-zeroconf.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf.c' object='src_mpd-zeroconf.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf.obj `if test -f 'src/zeroconf.c'; then $(CYGPATH_W) 'src/zeroconf.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf.c'; fi` + + src_mpd-zeroconf-avahi.o: src/zeroconf-avahi.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-avahi.o -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf-avahi.Tpo -c -o src_mpd-zeroconf-avahi.o `test -f 'src/zeroconf-avahi.c' || echo '$(srcdir)/'`src/zeroconf-avahi.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf-avahi.Tpo $(DEPDIR)/src_mpd-zeroconf-avahi.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-avahi.o -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo" -c -o src_mpd-zeroconf-avahi.o `test -f 'src/zeroconf-avahi.c' || echo '$(srcdir)/'`src/zeroconf-avahi.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo" "$(DEPDIR)/src_mpd-zeroconf-avahi.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf-avahi.c' object='src_mpd-zeroconf-avahi.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf-avahi.o `test -f 'src/zeroconf-avahi.c' || echo '$(srcdir)/'`src/zeroconf-avahi.c + + src_mpd-zeroconf-avahi.obj: src/zeroconf-avahi.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-avahi.obj -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf-avahi.Tpo -c -o src_mpd-zeroconf-avahi.obj `if test -f 'src/zeroconf-avahi.c'; then $(CYGPATH_W) 'src/zeroconf-avahi.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-avahi.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf-avahi.Tpo $(DEPDIR)/src_mpd-zeroconf-avahi.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-avahi.obj -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo" -c -o src_mpd-zeroconf-avahi.obj `if test -f 'src/zeroconf-avahi.c'; then $(CYGPATH_W) 'src/zeroconf-avahi.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-avahi.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo" "$(DEPDIR)/src_mpd-zeroconf-avahi.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf-avahi.c' object='src_mpd-zeroconf-avahi.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf-avahi.obj `if test -f 'src/zeroconf-avahi.c'; then $(CYGPATH_W) 'src/zeroconf-avahi.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-avahi.c'; fi` + + src_mpd-zeroconf-bonjour.o: src/zeroconf-bonjour.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-bonjour.o -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo -c -o src_mpd-zeroconf-bonjour.o `test -f 'src/zeroconf-bonjour.c' || echo '$(srcdir)/'`src/zeroconf-bonjour.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo $(DEPDIR)/src_mpd-zeroconf-bonjour.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-bonjour.o -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo" -c -o src_mpd-zeroconf-bonjour.o `test -f 'src/zeroconf-bonjour.c' || echo '$(srcdir)/'`src/zeroconf-bonjour.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo" "$(DEPDIR)/src_mpd-zeroconf-bonjour.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf-bonjour.c' object='src_mpd-zeroconf-bonjour.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf-bonjour.o `test -f 'src/zeroconf-bonjour.c' || echo '$(srcdir)/'`src/zeroconf-bonjour.c + + src_mpd-zeroconf-bonjour.obj: src/zeroconf-bonjour.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-bonjour.obj -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo -c -o src_mpd-zeroconf-bonjour.obj `if test -f 'src/zeroconf-bonjour.c'; then $(CYGPATH_W) 'src/zeroconf-bonjour.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-bonjour.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo $(DEPDIR)/src_mpd-zeroconf-bonjour.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-bonjour.obj -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo" -c -o src_mpd-zeroconf-bonjour.obj `if test -f 'src/zeroconf-bonjour.c'; then $(CYGPATH_W) 'src/zeroconf-bonjour.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-bonjour.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo" "$(DEPDIR)/src_mpd-zeroconf-bonjour.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf-bonjour.c' object='src_mpd-zeroconf-bonjour.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf-bonjour.obj `if test -f 'src/zeroconf-bonjour.c'; then $(CYGPATH_W) 'src/zeroconf-bonjour.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-bonjour.c'; fi` + + test_read_conf-read_conf.o: test/read_conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-read_conf.o -MD -MP -MF $(DEPDIR)/test_read_conf-read_conf.Tpo -c -o test_read_conf-read_conf.o `test -f 'test/read_conf.c' || echo '$(srcdir)/'`test/read_conf.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-read_conf.Tpo $(DEPDIR)/test_read_conf-read_conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-read_conf.o -MD -MP -MF "$(DEPDIR)/test_read_conf-read_conf.Tpo" -c -o test_read_conf-read_conf.o `test -f 'test/read_conf.c' || echo '$(srcdir)/'`test/read_conf.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-read_conf.Tpo" "$(DEPDIR)/test_read_conf-read_conf.Po"; else rm -f "$(DEPDIR)/test_read_conf-read_conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_conf.c' object='test_read_conf-read_conf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-read_conf.o `test -f 'test/read_conf.c' || echo '$(srcdir)/'`test/read_conf.c + + test_read_conf-read_conf.obj: test/read_conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-read_conf.obj -MD -MP -MF $(DEPDIR)/test_read_conf-read_conf.Tpo -c -o test_read_conf-read_conf.obj `if test -f 'test/read_conf.c'; then $(CYGPATH_W) 'test/read_conf.c'; else $(CYGPATH_W) '$(srcdir)/test/read_conf.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-read_conf.Tpo $(DEPDIR)/test_read_conf-read_conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-read_conf.obj -MD -MP -MF "$(DEPDIR)/test_read_conf-read_conf.Tpo" -c -o test_read_conf-read_conf.obj `if test -f 'test/read_conf.c'; then $(CYGPATH_W) 'test/read_conf.c'; else $(CYGPATH_W) '$(srcdir)/test/read_conf.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-read_conf.Tpo" "$(DEPDIR)/test_read_conf-read_conf.Po"; else rm -f "$(DEPDIR)/test_read_conf-read_conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_conf.c' object='test_read_conf-read_conf.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-read_conf.obj `if test -f 'test/read_conf.c'; then $(CYGPATH_W) 'test/read_conf.c'; else $(CYGPATH_W) '$(srcdir)/test/read_conf.c'; fi` + + test_read_conf-conf.o: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-conf.o -MD -MP -MF $(DEPDIR)/test_read_conf-conf.Tpo -c -o test_read_conf-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-conf.Tpo $(DEPDIR)/test_read_conf-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-conf.o -MD -MP -MF "$(DEPDIR)/test_read_conf-conf.Tpo" -c -o test_read_conf-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-conf.Tpo" "$(DEPDIR)/test_read_conf-conf.Po"; else rm -f "$(DEPDIR)/test_read_conf-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_conf-conf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c + + test_read_conf-conf.obj: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-conf.obj -MD -MP -MF $(DEPDIR)/test_read_conf-conf.Tpo -c -o test_read_conf-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-conf.Tpo $(DEPDIR)/test_read_conf-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-conf.obj -MD -MP -MF "$(DEPDIR)/test_read_conf-conf.Tpo" -c -o test_read_conf-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-conf.Tpo" "$(DEPDIR)/test_read_conf-conf.Po"; else rm -f "$(DEPDIR)/test_read_conf-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_conf-conf.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` + + test_read_conf-buffer2array.o: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-buffer2array.o -MD -MP -MF $(DEPDIR)/test_read_conf-buffer2array.Tpo -c -o test_read_conf-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-buffer2array.Tpo $(DEPDIR)/test_read_conf-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_read_conf-buffer2array.Tpo" -c -o test_read_conf-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-buffer2array.Tpo" "$(DEPDIR)/test_read_conf-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_conf-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_conf-buffer2array.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c + + test_read_conf-buffer2array.obj: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_read_conf-buffer2array.Tpo -c -o test_read_conf-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-buffer2array.Tpo $(DEPDIR)/test_read_conf-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_read_conf-buffer2array.Tpo" -c -o test_read_conf-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-buffer2array.Tpo" "$(DEPDIR)/test_read_conf-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_conf-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_conf-buffer2array.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` + + test_read_conf-utils.o: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-utils.o -MD -MP -MF $(DEPDIR)/test_read_conf-utils.Tpo -c -o test_read_conf-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-utils.Tpo $(DEPDIR)/test_read_conf-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-utils.o -MD -MP -MF "$(DEPDIR)/test_read_conf-utils.Tpo" -c -o test_read_conf-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-utils.Tpo" "$(DEPDIR)/test_read_conf-utils.Po"; else rm -f "$(DEPDIR)/test_read_conf-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_conf-utils.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c + + test_read_conf-utils.obj: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-utils.obj -MD -MP -MF $(DEPDIR)/test_read_conf-utils.Tpo -c -o test_read_conf-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-utils.Tpo $(DEPDIR)/test_read_conf-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-utils.obj -MD -MP -MF "$(DEPDIR)/test_read_conf-utils.Tpo" -c -o test_read_conf-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-utils.Tpo" "$(DEPDIR)/test_read_conf-utils.Po"; else rm -f "$(DEPDIR)/test_read_conf-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_conf-utils.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` + + test_read_mixer-read_mixer.o: test/read_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-read_mixer.o -MD -MP -MF $(DEPDIR)/test_read_mixer-read_mixer.Tpo -c -o test_read_mixer-read_mixer.o `test -f 'test/read_mixer.c' || echo '$(srcdir)/'`test/read_mixer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-read_mixer.Tpo $(DEPDIR)/test_read_mixer-read_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-read_mixer.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-read_mixer.Tpo" -c -o test_read_mixer-read_mixer.o `test -f 'test/read_mixer.c' || echo '$(srcdir)/'`test/read_mixer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-read_mixer.Tpo" "$(DEPDIR)/test_read_mixer-read_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-read_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_mixer.c' object='test_read_mixer-read_mixer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-read_mixer.o `test -f 'test/read_mixer.c' || echo '$(srcdir)/'`test/read_mixer.c + + test_read_mixer-read_mixer.obj: test/read_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-read_mixer.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-read_mixer.Tpo -c -o test_read_mixer-read_mixer.obj `if test -f 'test/read_mixer.c'; then $(CYGPATH_W) 'test/read_mixer.c'; else $(CYGPATH_W) '$(srcdir)/test/read_mixer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-read_mixer.Tpo $(DEPDIR)/test_read_mixer-read_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-read_mixer.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-read_mixer.Tpo" -c -o test_read_mixer-read_mixer.obj `if test -f 'test/read_mixer.c'; then $(CYGPATH_W) 'test/read_mixer.c'; else $(CYGPATH_W) '$(srcdir)/test/read_mixer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-read_mixer.Tpo" "$(DEPDIR)/test_read_mixer-read_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-read_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_mixer.c' object='test_read_mixer-read_mixer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-read_mixer.obj `if test -f 'test/read_mixer.c'; then $(CYGPATH_W) 'test/read_mixer.c'; else $(CYGPATH_W) '$(srcdir)/test/read_mixer.c'; fi` + + test_read_mixer-conf.o: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-conf.o -MD -MP -MF $(DEPDIR)/test_read_mixer-conf.Tpo -c -o test_read_mixer-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-conf.Tpo $(DEPDIR)/test_read_mixer-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-conf.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-conf.Tpo" -c -o test_read_mixer-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-conf.Tpo" "$(DEPDIR)/test_read_mixer-conf.Po"; else rm -f "$(DEPDIR)/test_read_mixer-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_mixer-conf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c + + test_read_mixer-conf.obj: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-conf.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-conf.Tpo -c -o test_read_mixer-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-conf.Tpo $(DEPDIR)/test_read_mixer-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-conf.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-conf.Tpo" -c -o test_read_mixer-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-conf.Tpo" "$(DEPDIR)/test_read_mixer-conf.Po"; else rm -f "$(DEPDIR)/test_read_mixer-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_mixer-conf.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` + + test_read_mixer-buffer2array.o: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-buffer2array.o -MD -MP -MF $(DEPDIR)/test_read_mixer-buffer2array.Tpo -c -o test_read_mixer-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-buffer2array.Tpo $(DEPDIR)/test_read_mixer-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-buffer2array.Tpo" -c -o test_read_mixer-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-buffer2array.Tpo" "$(DEPDIR)/test_read_mixer-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_mixer-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_mixer-buffer2array.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c + + test_read_mixer-buffer2array.obj: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-buffer2array.Tpo -c -o test_read_mixer-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-buffer2array.Tpo $(DEPDIR)/test_read_mixer-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-buffer2array.Tpo" -c -o test_read_mixer-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-buffer2array.Tpo" "$(DEPDIR)/test_read_mixer-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_mixer-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_mixer-buffer2array.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` + + test_read_mixer-utils.o: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-utils.o -MD -MP -MF $(DEPDIR)/test_read_mixer-utils.Tpo -c -o test_read_mixer-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-utils.Tpo $(DEPDIR)/test_read_mixer-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-utils.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-utils.Tpo" -c -o test_read_mixer-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-utils.Tpo" "$(DEPDIR)/test_read_mixer-utils.Po"; else rm -f "$(DEPDIR)/test_read_mixer-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_mixer-utils.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c + + test_read_mixer-utils.obj: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-utils.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-utils.Tpo -c -o test_read_mixer-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-utils.Tpo $(DEPDIR)/test_read_mixer-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-utils.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-utils.Tpo" -c -o test_read_mixer-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-utils.Tpo" "$(DEPDIR)/test_read_mixer-utils.Po"; else rm -f "$(DEPDIR)/test_read_mixer-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_mixer-utils.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` + + test_read_mixer-log.o: src/log.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-log.o -MD -MP -MF $(DEPDIR)/test_read_mixer-log.Tpo -c -o test_read_mixer-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-log.Tpo $(DEPDIR)/test_read_mixer-log.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-log.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-log.Tpo" -c -o test_read_mixer-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-log.Tpo" "$(DEPDIR)/test_read_mixer-log.Po"; else rm -f "$(DEPDIR)/test_read_mixer-log.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_read_mixer-log.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c + + test_read_mixer-log.obj: src/log.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-log.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-log.Tpo -c -o test_read_mixer-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-log.Tpo $(DEPDIR)/test_read_mixer-log.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-log.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-log.Tpo" -c -o test_read_mixer-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-log.Tpo" "$(DEPDIR)/test_read_mixer-log.Po"; else rm -f "$(DEPDIR)/test_read_mixer-log.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_read_mixer-log.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi` + + test_read_mixer-mixer_control.o: src/mixer_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_control.o -MD -MP -MF $(DEPDIR)/test_read_mixer-mixer_control.Tpo -c -o test_read_mixer-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-mixer_control.Tpo $(DEPDIR)/test_read_mixer-mixer_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_control.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-mixer_control.Tpo" -c -o test_read_mixer-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-mixer_control.Tpo" "$(DEPDIR)/test_read_mixer-mixer_control.Po"; else rm -f "$(DEPDIR)/test_read_mixer-mixer_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='test_read_mixer-mixer_control.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c + + test_read_mixer-mixer_control.obj: src/mixer_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_control.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-mixer_control.Tpo -c -o test_read_mixer-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-mixer_control.Tpo $(DEPDIR)/test_read_mixer-mixer_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_control.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-mixer_control.Tpo" -c -o test_read_mixer-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-mixer_control.Tpo" "$(DEPDIR)/test_read_mixer-mixer_control.Po"; else rm -f "$(DEPDIR)/test_read_mixer-mixer_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='test_read_mixer-mixer_control.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi` + + test_read_mixer-mixer_api.o: src/mixer_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_api.o -MD -MP -MF $(DEPDIR)/test_read_mixer-mixer_api.Tpo -c -o test_read_mixer-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-mixer_api.Tpo $(DEPDIR)/test_read_mixer-mixer_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_api.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-mixer_api.Tpo" -c -o test_read_mixer-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-mixer_api.Tpo" "$(DEPDIR)/test_read_mixer-mixer_api.Po"; else rm -f "$(DEPDIR)/test_read_mixer-mixer_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='test_read_mixer-mixer_api.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c + + test_read_mixer-mixer_api.obj: src/mixer_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_api.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-mixer_api.Tpo -c -o test_read_mixer-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-mixer_api.Tpo $(DEPDIR)/test_read_mixer-mixer_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_api.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-mixer_api.Tpo" -c -o test_read_mixer-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-mixer_api.Tpo" "$(DEPDIR)/test_read_mixer-mixer_api.Po"; else rm -f "$(DEPDIR)/test_read_mixer-mixer_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='test_read_mixer-mixer_api.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi` + + test_read_mixer-alsa_mixer.o: src/mixer/alsa_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-alsa_mixer.o -MD -MP -MF $(DEPDIR)/test_read_mixer-alsa_mixer.Tpo -c -o test_read_mixer-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-alsa_mixer.Tpo $(DEPDIR)/test_read_mixer-alsa_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-alsa_mixer.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo" -c -o test_read_mixer-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo" "$(DEPDIR)/test_read_mixer-alsa_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='test_read_mixer-alsa_mixer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c + + test_read_mixer-alsa_mixer.obj: src/mixer/alsa_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-alsa_mixer.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-alsa_mixer.Tpo -c -o test_read_mixer-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-alsa_mixer.Tpo $(DEPDIR)/test_read_mixer-alsa_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-alsa_mixer.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo" -c -o test_read_mixer-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo" "$(DEPDIR)/test_read_mixer-alsa_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='test_read_mixer-alsa_mixer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi` + + test_read_mixer-oss_mixer.o: src/mixer/oss_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-oss_mixer.o -MD -MP -MF $(DEPDIR)/test_read_mixer-oss_mixer.Tpo -c -o test_read_mixer-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-oss_mixer.Tpo $(DEPDIR)/test_read_mixer-oss_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-oss_mixer.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo" -c -o test_read_mixer-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo" "$(DEPDIR)/test_read_mixer-oss_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='test_read_mixer-oss_mixer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c + + test_read_mixer-oss_mixer.obj: src/mixer/oss_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-oss_mixer.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-oss_mixer.Tpo -c -o test_read_mixer-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-oss_mixer.Tpo $(DEPDIR)/test_read_mixer-oss_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-oss_mixer.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo" -c -o test_read_mixer-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo" "$(DEPDIR)/test_read_mixer-oss_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='test_read_mixer-oss_mixer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi` + + test_read_mixer-pulse_mixer.o: src/mixer/pulse_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-pulse_mixer.o -MD -MP -MF $(DEPDIR)/test_read_mixer-pulse_mixer.Tpo -c -o test_read_mixer-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-pulse_mixer.Tpo $(DEPDIR)/test_read_mixer-pulse_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-pulse_mixer.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo" -c -o test_read_mixer-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo" "$(DEPDIR)/test_read_mixer-pulse_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='test_read_mixer-pulse_mixer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c + + test_read_mixer-pulse_mixer.obj: src/mixer/pulse_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-pulse_mixer.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-pulse_mixer.Tpo -c -o test_read_mixer-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-pulse_mixer.Tpo $(DEPDIR)/test_read_mixer-pulse_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-pulse_mixer.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo" -c -o test_read_mixer-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo" "$(DEPDIR)/test_read_mixer-pulse_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='test_read_mixer-pulse_mixer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi` + + test_read_tags-read_tags.o: test/read_tags.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-read_tags.o -MD -MP -MF $(DEPDIR)/test_read_tags-read_tags.Tpo -c -o test_read_tags-read_tags.o `test -f 'test/read_tags.c' || echo '$(srcdir)/'`test/read_tags.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-read_tags.Tpo $(DEPDIR)/test_read_tags-read_tags.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-read_tags.o -MD -MP -MF "$(DEPDIR)/test_read_tags-read_tags.Tpo" -c -o test_read_tags-read_tags.o `test -f 'test/read_tags.c' || echo '$(srcdir)/'`test/read_tags.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-read_tags.Tpo" "$(DEPDIR)/test_read_tags-read_tags.Po"; else rm -f "$(DEPDIR)/test_read_tags-read_tags.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_tags.c' object='test_read_tags-read_tags.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-read_tags.o `test -f 'test/read_tags.c' || echo '$(srcdir)/'`test/read_tags.c + + test_read_tags-read_tags.obj: test/read_tags.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-read_tags.obj -MD -MP -MF $(DEPDIR)/test_read_tags-read_tags.Tpo -c -o test_read_tags-read_tags.obj `if test -f 'test/read_tags.c'; then $(CYGPATH_W) 'test/read_tags.c'; else $(CYGPATH_W) '$(srcdir)/test/read_tags.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-read_tags.Tpo $(DEPDIR)/test_read_tags-read_tags.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-read_tags.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-read_tags.Tpo" -c -o test_read_tags-read_tags.obj `if test -f 'test/read_tags.c'; then $(CYGPATH_W) 'test/read_tags.c'; else $(CYGPATH_W) '$(srcdir)/test/read_tags.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-read_tags.Tpo" "$(DEPDIR)/test_read_tags-read_tags.Po"; else rm -f "$(DEPDIR)/test_read_tags-read_tags.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_tags.c' object='test_read_tags-read_tags.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-read_tags.obj `if test -f 'test/read_tags.c'; then $(CYGPATH_W) 'test/read_tags.c'; else $(CYGPATH_W) '$(srcdir)/test/read_tags.c'; fi` + + test_read_tags-conf.o: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-conf.o -MD -MP -MF $(DEPDIR)/test_read_tags-conf.Tpo -c -o test_read_tags-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-conf.Tpo $(DEPDIR)/test_read_tags-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-conf.o -MD -MP -MF "$(DEPDIR)/test_read_tags-conf.Tpo" -c -o test_read_tags-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-conf.Tpo" "$(DEPDIR)/test_read_tags-conf.Po"; else rm -f "$(DEPDIR)/test_read_tags-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_tags-conf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c + + test_read_tags-conf.obj: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-conf.obj -MD -MP -MF $(DEPDIR)/test_read_tags-conf.Tpo -c -o test_read_tags-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-conf.Tpo $(DEPDIR)/test_read_tags-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-conf.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-conf.Tpo" -c -o test_read_tags-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-conf.Tpo" "$(DEPDIR)/test_read_tags-conf.Po"; else rm -f "$(DEPDIR)/test_read_tags-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_tags-conf.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` + + test_read_tags-buffer2array.o: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-buffer2array.o -MD -MP -MF $(DEPDIR)/test_read_tags-buffer2array.Tpo -c -o test_read_tags-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-buffer2array.Tpo $(DEPDIR)/test_read_tags-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_read_tags-buffer2array.Tpo" -c -o test_read_tags-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-buffer2array.Tpo" "$(DEPDIR)/test_read_tags-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_tags-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_tags-buffer2array.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c + + test_read_tags-buffer2array.obj: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_read_tags-buffer2array.Tpo -c -o test_read_tags-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-buffer2array.Tpo $(DEPDIR)/test_read_tags-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-buffer2array.Tpo" -c -o test_read_tags-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-buffer2array.Tpo" "$(DEPDIR)/test_read_tags-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_tags-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_tags-buffer2array.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` + + test_read_tags-utils.o: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-utils.o -MD -MP -MF $(DEPDIR)/test_read_tags-utils.Tpo -c -o test_read_tags-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-utils.Tpo $(DEPDIR)/test_read_tags-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-utils.o -MD -MP -MF "$(DEPDIR)/test_read_tags-utils.Tpo" -c -o test_read_tags-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-utils.Tpo" "$(DEPDIR)/test_read_tags-utils.Po"; else rm -f "$(DEPDIR)/test_read_tags-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_tags-utils.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c + + test_read_tags-utils.obj: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-utils.obj -MD -MP -MF $(DEPDIR)/test_read_tags-utils.Tpo -c -o test_read_tags-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-utils.Tpo $(DEPDIR)/test_read_tags-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-utils.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-utils.Tpo" -c -o test_read_tags-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-utils.Tpo" "$(DEPDIR)/test_read_tags-utils.Po"; else rm -f "$(DEPDIR)/test_read_tags-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_tags-utils.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` + + test_read_tags-log.o: src/log.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-log.o -MD -MP -MF $(DEPDIR)/test_read_tags-log.Tpo -c -o test_read_tags-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-log.Tpo $(DEPDIR)/test_read_tags-log.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-log.o -MD -MP -MF "$(DEPDIR)/test_read_tags-log.Tpo" -c -o test_read_tags-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-log.Tpo" "$(DEPDIR)/test_read_tags-log.Po"; else rm -f "$(DEPDIR)/test_read_tags-log.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_read_tags-log.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c + + test_read_tags-log.obj: src/log.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-log.obj -MD -MP -MF $(DEPDIR)/test_read_tags-log.Tpo -c -o test_read_tags-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-log.Tpo $(DEPDIR)/test_read_tags-log.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-log.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-log.Tpo" -c -o test_read_tags-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-log.Tpo" "$(DEPDIR)/test_read_tags-log.Po"; else rm -f "$(DEPDIR)/test_read_tags-log.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_read_tags-log.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi` + + test_read_tags-tag.o: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag.o -MD -MP -MF $(DEPDIR)/test_read_tags-tag.Tpo -c -o test_read_tags-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag.Tpo $(DEPDIR)/test_read_tags-tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag.o -MD -MP -MF "$(DEPDIR)/test_read_tags-tag.Tpo" -c -o test_read_tags-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag.Tpo" "$(DEPDIR)/test_read_tags-tag.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_read_tags-tag.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c + + test_read_tags-tag.obj: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag.obj -MD -MP -MF $(DEPDIR)/test_read_tags-tag.Tpo -c -o test_read_tags-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag.Tpo $(DEPDIR)/test_read_tags-tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-tag.Tpo" -c -o test_read_tags-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag.Tpo" "$(DEPDIR)/test_read_tags-tag.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_read_tags-tag.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` + + test_read_tags-tag_pool.o: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_pool.o -MD -MP -MF $(DEPDIR)/test_read_tags-tag_pool.Tpo -c -o test_read_tags-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_pool.Tpo $(DEPDIR)/test_read_tags-tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_pool.o -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_pool.Tpo" -c -o test_read_tags-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_pool.Tpo" "$(DEPDIR)/test_read_tags-tag_pool.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_read_tags-tag_pool.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c + + test_read_tags-tag_pool.obj: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_pool.obj -MD -MP -MF $(DEPDIR)/test_read_tags-tag_pool.Tpo -c -o test_read_tags-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_pool.Tpo $(DEPDIR)/test_read_tags-tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_pool.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_pool.Tpo" -c -o test_read_tags-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_pool.Tpo" "$(DEPDIR)/test_read_tags-tag_pool.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_read_tags-tag_pool.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` + + test_read_tags-replay_gain.o: src/replay_gain.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-replay_gain.o -MD -MP -MF $(DEPDIR)/test_read_tags-replay_gain.Tpo -c -o test_read_tags-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-replay_gain.Tpo $(DEPDIR)/test_read_tags-replay_gain.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-replay_gain.o -MD -MP -MF "$(DEPDIR)/test_read_tags-replay_gain.Tpo" -c -o test_read_tags-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-replay_gain.Tpo" "$(DEPDIR)/test_read_tags-replay_gain.Po"; else rm -f "$(DEPDIR)/test_read_tags-replay_gain.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='test_read_tags-replay_gain.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c + + test_read_tags-replay_gain.obj: src/replay_gain.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-replay_gain.obj -MD -MP -MF $(DEPDIR)/test_read_tags-replay_gain.Tpo -c -o test_read_tags-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-replay_gain.Tpo $(DEPDIR)/test_read_tags-replay_gain.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-replay_gain.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-replay_gain.Tpo" -c -o test_read_tags-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-replay_gain.Tpo" "$(DEPDIR)/test_read_tags-replay_gain.Po"; else rm -f "$(DEPDIR)/test_read_tags-replay_gain.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='test_read_tags-replay_gain.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi` + + test_read_tags-uri.o: src/uri.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-uri.o -MD -MP -MF $(DEPDIR)/test_read_tags-uri.Tpo -c -o test_read_tags-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-uri.Tpo $(DEPDIR)/test_read_tags-uri.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-uri.o -MD -MP -MF "$(DEPDIR)/test_read_tags-uri.Tpo" -c -o test_read_tags-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-uri.Tpo" "$(DEPDIR)/test_read_tags-uri.Po"; else rm -f "$(DEPDIR)/test_read_tags-uri.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='test_read_tags-uri.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c + + test_read_tags-uri.obj: src/uri.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-uri.obj -MD -MP -MF $(DEPDIR)/test_read_tags-uri.Tpo -c -o test_read_tags-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-uri.Tpo $(DEPDIR)/test_read_tags-uri.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-uri.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-uri.Tpo" -c -o test_read_tags-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-uri.Tpo" "$(DEPDIR)/test_read_tags-uri.Po"; else rm -f "$(DEPDIR)/test_read_tags-uri.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='test_read_tags-uri.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi` + + test_read_tags-timer.o: src/timer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-timer.o -MD -MP -MF $(DEPDIR)/test_read_tags-timer.Tpo -c -o test_read_tags-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-timer.Tpo $(DEPDIR)/test_read_tags-timer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-timer.o -MD -MP -MF "$(DEPDIR)/test_read_tags-timer.Tpo" -c -o test_read_tags-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-timer.Tpo" "$(DEPDIR)/test_read_tags-timer.Po"; else rm -f "$(DEPDIR)/test_read_tags-timer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_read_tags-timer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c + + test_read_tags-timer.obj: src/timer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-timer.obj -MD -MP -MF $(DEPDIR)/test_read_tags-timer.Tpo -c -o test_read_tags-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-timer.Tpo $(DEPDIR)/test_read_tags-timer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-timer.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-timer.Tpo" -c -o test_read_tags-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-timer.Tpo" "$(DEPDIR)/test_read_tags-timer.Po"; else rm -f "$(DEPDIR)/test_read_tags-timer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_read_tags-timer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi` + + test_read_tags-bz2_plugin.o: src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-bz2_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-bz2_plugin.Tpo -c -o test_read_tags-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-bz2_plugin.Tpo $(DEPDIR)/test_read_tags-bz2_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-bz2_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo" -c -o test_read_tags-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo" "$(DEPDIR)/test_read_tags-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_read_tags-bz2_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c + + test_read_tags-bz2_plugin.obj: src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-bz2_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-bz2_plugin.Tpo -c -o test_read_tags-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-bz2_plugin.Tpo $(DEPDIR)/test_read_tags-bz2_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-bz2_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo" -c -o test_read_tags-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo" "$(DEPDIR)/test_read_tags-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_read_tags-bz2_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi` + + test_read_tags-zip_plugin.o: src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-zip_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-zip_plugin.Tpo -c -o test_read_tags-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-zip_plugin.Tpo $(DEPDIR)/test_read_tags-zip_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-zip_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-zip_plugin.Tpo" -c -o test_read_tags-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-zip_plugin.Tpo" "$(DEPDIR)/test_read_tags-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-zip_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_read_tags-zip_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c + + test_read_tags-zip_plugin.obj: src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-zip_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-zip_plugin.Tpo -c -o test_read_tags-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-zip_plugin.Tpo $(DEPDIR)/test_read_tags-zip_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-zip_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-zip_plugin.Tpo" -c -o test_read_tags-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-zip_plugin.Tpo" "$(DEPDIR)/test_read_tags-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-zip_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_read_tags-zip_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi` + + test_read_tags-iso_plugin.o: src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-iso_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-iso_plugin.Tpo -c -o test_read_tags-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-iso_plugin.Tpo $(DEPDIR)/test_read_tags-iso_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-iso_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-iso_plugin.Tpo" -c -o test_read_tags-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-iso_plugin.Tpo" "$(DEPDIR)/test_read_tags-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-iso_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_read_tags-iso_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c + + test_read_tags-iso_plugin.obj: src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-iso_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-iso_plugin.Tpo -c -o test_read_tags-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-iso_plugin.Tpo $(DEPDIR)/test_read_tags-iso_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-iso_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-iso_plugin.Tpo" -c -o test_read_tags-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-iso_plugin.Tpo" "$(DEPDIR)/test_read_tags-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-iso_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_read_tags-iso_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi` + + test_read_tags-archive_api.o: src/archive_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_api.o -MD -MP -MF $(DEPDIR)/test_read_tags-archive_api.Tpo -c -o test_read_tags-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_api.Tpo $(DEPDIR)/test_read_tags-archive_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_api.o -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_api.Tpo" -c -o test_read_tags-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_api.Tpo" "$(DEPDIR)/test_read_tags-archive_api.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_read_tags-archive_api.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c + + test_read_tags-archive_api.obj: src/archive_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_api.obj -MD -MP -MF $(DEPDIR)/test_read_tags-archive_api.Tpo -c -o test_read_tags-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_api.Tpo $(DEPDIR)/test_read_tags-archive_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_api.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_api.Tpo" -c -o test_read_tags-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_api.Tpo" "$(DEPDIR)/test_read_tags-archive_api.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_read_tags-archive_api.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi` + + test_read_tags-archive_list.o: src/archive_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_list.o -MD -MP -MF $(DEPDIR)/test_read_tags-archive_list.Tpo -c -o test_read_tags-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_list.Tpo $(DEPDIR)/test_read_tags-archive_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_list.o -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_list.Tpo" -c -o test_read_tags-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_list.Tpo" "$(DEPDIR)/test_read_tags-archive_list.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_read_tags-archive_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c + + test_read_tags-archive_list.obj: src/archive_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_list.obj -MD -MP -MF $(DEPDIR)/test_read_tags-archive_list.Tpo -c -o test_read_tags-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_list.Tpo $(DEPDIR)/test_read_tags-archive_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_list.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_list.Tpo" -c -o test_read_tags-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_list.Tpo" "$(DEPDIR)/test_read_tags-archive_list.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_read_tags-archive_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi` + + test_read_tags-archive_input_plugin.o: src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-archive_input_plugin.Tpo -c -o test_read_tags-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_input_plugin.Tpo $(DEPDIR)/test_read_tags-archive_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo" -c -o test_read_tags-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_read_tags-archive_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c + + test_read_tags-archive_input_plugin.obj: src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-archive_input_plugin.Tpo -c -o test_read_tags-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_input_plugin.Tpo $(DEPDIR)/test_read_tags-archive_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo" -c -o test_read_tags-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_read_tags-archive_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi` + + test_read_tags-input_stream.o: src/input_stream.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-input_stream.o -MD -MP -MF $(DEPDIR)/test_read_tags-input_stream.Tpo -c -o test_read_tags-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-input_stream.Tpo $(DEPDIR)/test_read_tags-input_stream.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-input_stream.o -MD -MP -MF "$(DEPDIR)/test_read_tags-input_stream.Tpo" -c -o test_read_tags-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-input_stream.Tpo" "$(DEPDIR)/test_read_tags-input_stream.Po"; else rm -f "$(DEPDIR)/test_read_tags-input_stream.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_read_tags-input_stream.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c + + test_read_tags-input_stream.obj: src/input_stream.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-input_stream.obj -MD -MP -MF $(DEPDIR)/test_read_tags-input_stream.Tpo -c -o test_read_tags-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-input_stream.Tpo $(DEPDIR)/test_read_tags-input_stream.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-input_stream.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-input_stream.Tpo" -c -o test_read_tags-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-input_stream.Tpo" "$(DEPDIR)/test_read_tags-input_stream.Po"; else rm -f "$(DEPDIR)/test_read_tags-input_stream.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_read_tags-input_stream.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi` + + test_read_tags-file_input_plugin.o: src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-file_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-file_input_plugin.Tpo -c -o test_read_tags-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-file_input_plugin.Tpo $(DEPDIR)/test_read_tags-file_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-file_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo" -c -o test_read_tags-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_read_tags-file_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c + + test_read_tags-file_input_plugin.obj: src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-file_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-file_input_plugin.Tpo -c -o test_read_tags-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-file_input_plugin.Tpo $(DEPDIR)/test_read_tags-file_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-file_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo" -c -o test_read_tags-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_read_tags-file_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi` + + test_read_tags-curl_input_plugin.o: src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-curl_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-curl_input_plugin.Tpo -c -o test_read_tags-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-curl_input_plugin.Tpo $(DEPDIR)/test_read_tags-curl_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-curl_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo" -c -o test_read_tags-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_read_tags-curl_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c + + test_read_tags-curl_input_plugin.obj: src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-curl_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-curl_input_plugin.Tpo -c -o test_read_tags-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-curl_input_plugin.Tpo $(DEPDIR)/test_read_tags-curl_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-curl_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo" -c -o test_read_tags-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_read_tags-curl_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi` + + test_read_tags-rewind_input_plugin.o: src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-rewind_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo -c -o test_read_tags-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo $(DEPDIR)/test_read_tags-rewind_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-rewind_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo" -c -o test_read_tags-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_read_tags-rewind_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c + + test_read_tags-rewind_input_plugin.obj: src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-rewind_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo -c -o test_read_tags-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo $(DEPDIR)/test_read_tags-rewind_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-rewind_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo" -c -o test_read_tags-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_read_tags-rewind_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi` + + test_read_tags-icy_metadata.o: src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-icy_metadata.o -MD -MP -MF $(DEPDIR)/test_read_tags-icy_metadata.Tpo -c -o test_read_tags-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-icy_metadata.Tpo $(DEPDIR)/test_read_tags-icy_metadata.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-icy_metadata.o -MD -MP -MF "$(DEPDIR)/test_read_tags-icy_metadata.Tpo" -c -o test_read_tags-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-icy_metadata.Tpo" "$(DEPDIR)/test_read_tags-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_read_tags-icy_metadata.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_read_tags-icy_metadata.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c + + test_read_tags-icy_metadata.obj: src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-icy_metadata.obj -MD -MP -MF $(DEPDIR)/test_read_tags-icy_metadata.Tpo -c -o test_read_tags-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-icy_metadata.Tpo $(DEPDIR)/test_read_tags-icy_metadata.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-icy_metadata.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-icy_metadata.Tpo" -c -o test_read_tags-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-icy_metadata.Tpo" "$(DEPDIR)/test_read_tags-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_read_tags-icy_metadata.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_read_tags-icy_metadata.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi` + + test_read_tags-lastfm_input_plugin.o: src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-lastfm_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo -c -o test_read_tags-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo $(DEPDIR)/test_read_tags-lastfm_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-lastfm_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo" -c -o test_read_tags-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_read_tags-lastfm_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c + + test_read_tags-lastfm_input_plugin.obj: src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-lastfm_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo -c -o test_read_tags-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo $(DEPDIR)/test_read_tags-lastfm_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-lastfm_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo" -c -o test_read_tags-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_read_tags-lastfm_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi` + + test_read_tags-mms_input_plugin.o: src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mms_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-mms_input_plugin.Tpo -c -o test_read_tags-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mms_input_plugin.Tpo $(DEPDIR)/test_read_tags-mms_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mms_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo" -c -o test_read_tags-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_read_tags-mms_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c + + test_read_tags-mms_input_plugin.obj: src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mms_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-mms_input_plugin.Tpo -c -o test_read_tags-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mms_input_plugin.Tpo $(DEPDIR)/test_read_tags-mms_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mms_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo" -c -o test_read_tags-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_read_tags-mms_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi` + + test_read_tags-tag_ape.o: src/tag_ape.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_ape.o -MD -MP -MF $(DEPDIR)/test_read_tags-tag_ape.Tpo -c -o test_read_tags-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_ape.Tpo $(DEPDIR)/test_read_tags-tag_ape.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_ape.o -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_ape.Tpo" -c -o test_read_tags-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_ape.Tpo" "$(DEPDIR)/test_read_tags-tag_ape.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_ape.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='test_read_tags-tag_ape.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c + + test_read_tags-tag_ape.obj: src/tag_ape.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_ape.obj -MD -MP -MF $(DEPDIR)/test_read_tags-tag_ape.Tpo -c -o test_read_tags-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_ape.Tpo $(DEPDIR)/test_read_tags-tag_ape.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_ape.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_ape.Tpo" -c -o test_read_tags-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_ape.Tpo" "$(DEPDIR)/test_read_tags-tag_ape.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_ape.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='test_read_tags-tag_ape.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi` + + test_read_tags-tag_id3.o: src/tag_id3.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_id3.o -MD -MP -MF $(DEPDIR)/test_read_tags-tag_id3.Tpo -c -o test_read_tags-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_id3.Tpo $(DEPDIR)/test_read_tags-tag_id3.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_id3.o -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_id3.Tpo" -c -o test_read_tags-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_id3.Tpo" "$(DEPDIR)/test_read_tags-tag_id3.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_id3.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='test_read_tags-tag_id3.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c + + test_read_tags-tag_id3.obj: src/tag_id3.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_id3.obj -MD -MP -MF $(DEPDIR)/test_read_tags-tag_id3.Tpo -c -o test_read_tags-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_id3.Tpo $(DEPDIR)/test_read_tags-tag_id3.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_id3.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_id3.Tpo" -c -o test_read_tags-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_id3.Tpo" "$(DEPDIR)/test_read_tags-tag_id3.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_id3.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='test_read_tags-tag_id3.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi` + + test_read_tags-riff.o: src/riff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-riff.o -MD -MP -MF $(DEPDIR)/test_read_tags-riff.Tpo -c -o test_read_tags-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-riff.Tpo $(DEPDIR)/test_read_tags-riff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-riff.o -MD -MP -MF "$(DEPDIR)/test_read_tags-riff.Tpo" -c -o test_read_tags-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-riff.Tpo" "$(DEPDIR)/test_read_tags-riff.Po"; else rm -f "$(DEPDIR)/test_read_tags-riff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='test_read_tags-riff.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c + + test_read_tags-riff.obj: src/riff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-riff.obj -MD -MP -MF $(DEPDIR)/test_read_tags-riff.Tpo -c -o test_read_tags-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-riff.Tpo $(DEPDIR)/test_read_tags-riff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-riff.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-riff.Tpo" -c -o test_read_tags-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-riff.Tpo" "$(DEPDIR)/test_read_tags-riff.Po"; else rm -f "$(DEPDIR)/test_read_tags-riff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='test_read_tags-riff.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi` + + test_read_tags-aiff.o: src/aiff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-aiff.o -MD -MP -MF $(DEPDIR)/test_read_tags-aiff.Tpo -c -o test_read_tags-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-aiff.Tpo $(DEPDIR)/test_read_tags-aiff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-aiff.o -MD -MP -MF "$(DEPDIR)/test_read_tags-aiff.Tpo" -c -o test_read_tags-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-aiff.Tpo" "$(DEPDIR)/test_read_tags-aiff.Po"; else rm -f "$(DEPDIR)/test_read_tags-aiff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='test_read_tags-aiff.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c + + test_read_tags-aiff.obj: src/aiff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-aiff.obj -MD -MP -MF $(DEPDIR)/test_read_tags-aiff.Tpo -c -o test_read_tags-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-aiff.Tpo $(DEPDIR)/test_read_tags-aiff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-aiff.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-aiff.Tpo" -c -o test_read_tags-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-aiff.Tpo" "$(DEPDIR)/test_read_tags-aiff.Po"; else rm -f "$(DEPDIR)/test_read_tags-aiff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='test_read_tags-aiff.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi` + + test_read_tags-decoder_buffer.o: src/decoder_buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_buffer.o -MD -MP -MF $(DEPDIR)/test_read_tags-decoder_buffer.Tpo -c -o test_read_tags-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-decoder_buffer.Tpo $(DEPDIR)/test_read_tags-decoder_buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_buffer.o -MD -MP -MF "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo" -c -o test_read_tags-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo" "$(DEPDIR)/test_read_tags-decoder_buffer.Po"; else rm -f "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='test_read_tags-decoder_buffer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c + + test_read_tags-decoder_buffer.obj: src/decoder_buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_buffer.obj -MD -MP -MF $(DEPDIR)/test_read_tags-decoder_buffer.Tpo -c -o test_read_tags-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-decoder_buffer.Tpo $(DEPDIR)/test_read_tags-decoder_buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_buffer.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo" -c -o test_read_tags-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo" "$(DEPDIR)/test_read_tags-decoder_buffer.Po"; else rm -f "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='test_read_tags-decoder_buffer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi` + + test_read_tags-decoder_list.o: src/decoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_list.o -MD -MP -MF $(DEPDIR)/test_read_tags-decoder_list.Tpo -c -o test_read_tags-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-decoder_list.Tpo $(DEPDIR)/test_read_tags-decoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_list.o -MD -MP -MF "$(DEPDIR)/test_read_tags-decoder_list.Tpo" -c -o test_read_tags-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-decoder_list.Tpo" "$(DEPDIR)/test_read_tags-decoder_list.Po"; else rm -f "$(DEPDIR)/test_read_tags-decoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='test_read_tags-decoder_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c + + test_read_tags-decoder_list.obj: src/decoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_list.obj -MD -MP -MF $(DEPDIR)/test_read_tags-decoder_list.Tpo -c -o test_read_tags-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-decoder_list.Tpo $(DEPDIR)/test_read_tags-decoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_list.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-decoder_list.Tpo" -c -o test_read_tags-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-decoder_list.Tpo" "$(DEPDIR)/test_read_tags-decoder_list.Po"; else rm -f "$(DEPDIR)/test_read_tags-decoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='test_read_tags-decoder_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi` + + test_read_tags-mad_plugin.o: src/decoder/mad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mad_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-mad_plugin.Tpo -c -o test_read_tags-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mad_plugin.Tpo $(DEPDIR)/test_read_tags-mad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mad_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-mad_plugin.Tpo" -c -o test_read_tags-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mad_plugin.Tpo" "$(DEPDIR)/test_read_tags-mad_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='test_read_tags-mad_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c + + test_read_tags-mad_plugin.obj: src/decoder/mad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mad_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-mad_plugin.Tpo -c -o test_read_tags-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mad_plugin.Tpo $(DEPDIR)/test_read_tags-mad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mad_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-mad_plugin.Tpo" -c -o test_read_tags-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mad_plugin.Tpo" "$(DEPDIR)/test_read_tags-mad_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='test_read_tags-mad_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi` + + test_read_tags-mpcdec_plugin.o: src/decoder/mpcdec_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mpcdec_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo -c -o test_read_tags-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo $(DEPDIR)/test_read_tags-mpcdec_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mpcdec_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo" -c -o test_read_tags-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo" "$(DEPDIR)/test_read_tags-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='test_read_tags-mpcdec_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c + + test_read_tags-mpcdec_plugin.obj: src/decoder/mpcdec_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mpcdec_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo -c -o test_read_tags-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo $(DEPDIR)/test_read_tags-mpcdec_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mpcdec_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo" -c -o test_read_tags-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo" "$(DEPDIR)/test_read_tags-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='test_read_tags-mpcdec_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi` + + test_read_tags-wavpack_plugin.o: src/decoder/wavpack_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wavpack_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-wavpack_plugin.Tpo -c -o test_read_tags-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-wavpack_plugin.Tpo $(DEPDIR)/test_read_tags-wavpack_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wavpack_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo" -c -o test_read_tags-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo" "$(DEPDIR)/test_read_tags-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='test_read_tags-wavpack_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c + + test_read_tags-wavpack_plugin.obj: src/decoder/wavpack_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wavpack_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-wavpack_plugin.Tpo -c -o test_read_tags-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-wavpack_plugin.Tpo $(DEPDIR)/test_read_tags-wavpack_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wavpack_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo" -c -o test_read_tags-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo" "$(DEPDIR)/test_read_tags-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='test_read_tags-wavpack_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi` + + test_read_tags-faad_plugin.o: src/decoder/faad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-faad_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-faad_plugin.Tpo -c -o test_read_tags-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-faad_plugin.Tpo $(DEPDIR)/test_read_tags-faad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-faad_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-faad_plugin.Tpo" -c -o test_read_tags-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-faad_plugin.Tpo" "$(DEPDIR)/test_read_tags-faad_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-faad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='test_read_tags-faad_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c + + test_read_tags-faad_plugin.obj: src/decoder/faad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-faad_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-faad_plugin.Tpo -c -o test_read_tags-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-faad_plugin.Tpo $(DEPDIR)/test_read_tags-faad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-faad_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-faad_plugin.Tpo" -c -o test_read_tags-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-faad_plugin.Tpo" "$(DEPDIR)/test_read_tags-faad_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-faad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='test_read_tags-faad_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi` + + test_read_tags-mp4ff_plugin.o: src/decoder/mp4ff_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mp4ff_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo -c -o test_read_tags-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo $(DEPDIR)/test_read_tags-mp4ff_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mp4ff_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo" -c -o test_read_tags-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo" "$(DEPDIR)/test_read_tags-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='test_read_tags-mp4ff_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c + + test_read_tags-mp4ff_plugin.obj: src/decoder/mp4ff_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mp4ff_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo -c -o test_read_tags-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo $(DEPDIR)/test_read_tags-mp4ff_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mp4ff_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo" -c -o test_read_tags-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo" "$(DEPDIR)/test_read_tags-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='test_read_tags-mp4ff_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi` + + test_read_tags-_ogg_common.o: src/decoder/_ogg_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_ogg_common.o -MD -MP -MF $(DEPDIR)/test_read_tags-_ogg_common.Tpo -c -o test_read_tags-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-_ogg_common.Tpo $(DEPDIR)/test_read_tags-_ogg_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_ogg_common.o -MD -MP -MF "$(DEPDIR)/test_read_tags-_ogg_common.Tpo" -c -o test_read_tags-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-_ogg_common.Tpo" "$(DEPDIR)/test_read_tags-_ogg_common.Po"; else rm -f "$(DEPDIR)/test_read_tags-_ogg_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='test_read_tags-_ogg_common.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c + + test_read_tags-_ogg_common.obj: src/decoder/_ogg_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_ogg_common.obj -MD -MP -MF $(DEPDIR)/test_read_tags-_ogg_common.Tpo -c -o test_read_tags-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-_ogg_common.Tpo $(DEPDIR)/test_read_tags-_ogg_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_ogg_common.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-_ogg_common.Tpo" -c -o test_read_tags-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-_ogg_common.Tpo" "$(DEPDIR)/test_read_tags-_ogg_common.Po"; else rm -f "$(DEPDIR)/test_read_tags-_ogg_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='test_read_tags-_ogg_common.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi` + + test_read_tags-_flac_common.o: src/decoder/_flac_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_flac_common.o -MD -MP -MF $(DEPDIR)/test_read_tags-_flac_common.Tpo -c -o test_read_tags-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-_flac_common.Tpo $(DEPDIR)/test_read_tags-_flac_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_flac_common.o -MD -MP -MF "$(DEPDIR)/test_read_tags-_flac_common.Tpo" -c -o test_read_tags-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-_flac_common.Tpo" "$(DEPDIR)/test_read_tags-_flac_common.Po"; else rm -f "$(DEPDIR)/test_read_tags-_flac_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='test_read_tags-_flac_common.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c + + test_read_tags-_flac_common.obj: src/decoder/_flac_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_flac_common.obj -MD -MP -MF $(DEPDIR)/test_read_tags-_flac_common.Tpo -c -o test_read_tags-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-_flac_common.Tpo $(DEPDIR)/test_read_tags-_flac_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_flac_common.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-_flac_common.Tpo" -c -o test_read_tags-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-_flac_common.Tpo" "$(DEPDIR)/test_read_tags-_flac_common.Po"; else rm -f "$(DEPDIR)/test_read_tags-_flac_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='test_read_tags-_flac_common.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi` + + test_read_tags-vorbis_plugin.o: src/decoder/vorbis_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-vorbis_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-vorbis_plugin.Tpo -c -o test_read_tags-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-vorbis_plugin.Tpo $(DEPDIR)/test_read_tags-vorbis_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-vorbis_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo" -c -o test_read_tags-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo" "$(DEPDIR)/test_read_tags-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='test_read_tags-vorbis_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c + + test_read_tags-vorbis_plugin.obj: src/decoder/vorbis_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-vorbis_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-vorbis_plugin.Tpo -c -o test_read_tags-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-vorbis_plugin.Tpo $(DEPDIR)/test_read_tags-vorbis_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-vorbis_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo" -c -o test_read_tags-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo" "$(DEPDIR)/test_read_tags-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='test_read_tags-vorbis_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi` + + test_read_tags-flac_plugin.o: src/decoder/flac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-flac_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-flac_plugin.Tpo -c -o test_read_tags-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-flac_plugin.Tpo $(DEPDIR)/test_read_tags-flac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-flac_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-flac_plugin.Tpo" -c -o test_read_tags-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-flac_plugin.Tpo" "$(DEPDIR)/test_read_tags-flac_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-flac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='test_read_tags-flac_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c + + test_read_tags-flac_plugin.obj: src/decoder/flac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-flac_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-flac_plugin.Tpo -c -o test_read_tags-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-flac_plugin.Tpo $(DEPDIR)/test_read_tags-flac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-flac_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-flac_plugin.Tpo" -c -o test_read_tags-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-flac_plugin.Tpo" "$(DEPDIR)/test_read_tags-flac_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-flac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='test_read_tags-flac_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi` + + test_read_tags-oggflac_plugin.o: src/decoder/oggflac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-oggflac_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-oggflac_plugin.Tpo -c -o test_read_tags-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-oggflac_plugin.Tpo $(DEPDIR)/test_read_tags-oggflac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-oggflac_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo" -c -o test_read_tags-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo" "$(DEPDIR)/test_read_tags-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='test_read_tags-oggflac_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c + + test_read_tags-oggflac_plugin.obj: src/decoder/oggflac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-oggflac_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-oggflac_plugin.Tpo -c -o test_read_tags-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-oggflac_plugin.Tpo $(DEPDIR)/test_read_tags-oggflac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-oggflac_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo" -c -o test_read_tags-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo" "$(DEPDIR)/test_read_tags-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='test_read_tags-oggflac_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi` + + test_read_tags-audiofile_plugin.o: src/decoder/audiofile_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-audiofile_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-audiofile_plugin.Tpo -c -o test_read_tags-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-audiofile_plugin.Tpo $(DEPDIR)/test_read_tags-audiofile_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-audiofile_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo" -c -o test_read_tags-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo" "$(DEPDIR)/test_read_tags-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='test_read_tags-audiofile_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c + + test_read_tags-audiofile_plugin.obj: src/decoder/audiofile_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-audiofile_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-audiofile_plugin.Tpo -c -o test_read_tags-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-audiofile_plugin.Tpo $(DEPDIR)/test_read_tags-audiofile_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-audiofile_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo" -c -o test_read_tags-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo" "$(DEPDIR)/test_read_tags-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='test_read_tags-audiofile_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi` + + test_read_tags-mikmod_plugin.o: src/decoder/mikmod_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mikmod_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-mikmod_plugin.Tpo -c -o test_read_tags-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mikmod_plugin.Tpo $(DEPDIR)/test_read_tags-mikmod_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mikmod_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo" -c -o test_read_tags-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo" "$(DEPDIR)/test_read_tags-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='test_read_tags-mikmod_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c + + test_read_tags-mikmod_plugin.obj: src/decoder/mikmod_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mikmod_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-mikmod_plugin.Tpo -c -o test_read_tags-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mikmod_plugin.Tpo $(DEPDIR)/test_read_tags-mikmod_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mikmod_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo" -c -o test_read_tags-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo" "$(DEPDIR)/test_read_tags-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='test_read_tags-mikmod_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi` + + test_read_tags-modplug_plugin.o: src/decoder/modplug_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-modplug_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-modplug_plugin.Tpo -c -o test_read_tags-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-modplug_plugin.Tpo $(DEPDIR)/test_read_tags-modplug_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-modplug_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo" -c -o test_read_tags-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo" "$(DEPDIR)/test_read_tags-modplug_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='test_read_tags-modplug_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c + + test_read_tags-modplug_plugin.obj: src/decoder/modplug_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-modplug_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-modplug_plugin.Tpo -c -o test_read_tags-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-modplug_plugin.Tpo $(DEPDIR)/test_read_tags-modplug_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-modplug_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo" -c -o test_read_tags-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo" "$(DEPDIR)/test_read_tags-modplug_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='test_read_tags-modplug_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi` + + test_read_tags-fluidsynth_plugin.o: src/decoder/fluidsynth_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-fluidsynth_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo -c -o test_read_tags-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo $(DEPDIR)/test_read_tags-fluidsynth_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-fluidsynth_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo" -c -o test_read_tags-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo" "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='test_read_tags-fluidsynth_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c + + test_read_tags-fluidsynth_plugin.obj: src/decoder/fluidsynth_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-fluidsynth_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo -c -o test_read_tags-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo $(DEPDIR)/test_read_tags-fluidsynth_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-fluidsynth_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo" -c -o test_read_tags-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo" "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='test_read_tags-fluidsynth_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi` + + test_read_tags-wildmidi_plugin.o: src/decoder/wildmidi_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wildmidi_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo -c -o test_read_tags-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo $(DEPDIR)/test_read_tags-wildmidi_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wildmidi_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo" -c -o test_read_tags-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo" "$(DEPDIR)/test_read_tags-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='test_read_tags-wildmidi_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c + + test_read_tags-wildmidi_plugin.obj: src/decoder/wildmidi_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wildmidi_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo -c -o test_read_tags-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo $(DEPDIR)/test_read_tags-wildmidi_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wildmidi_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo" -c -o test_read_tags-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo" "$(DEPDIR)/test_read_tags-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='test_read_tags-wildmidi_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi` + + test_read_tags-ffmpeg_plugin.o: src/decoder/ffmpeg_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-ffmpeg_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo -c -o test_read_tags-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo $(DEPDIR)/test_read_tags-ffmpeg_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-ffmpeg_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo" -c -o test_read_tags-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo" "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='test_read_tags-ffmpeg_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c + + test_read_tags-ffmpeg_plugin.obj: src/decoder/ffmpeg_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-ffmpeg_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo -c -o test_read_tags-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo $(DEPDIR)/test_read_tags-ffmpeg_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-ffmpeg_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo" -c -o test_read_tags-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo" "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='test_read_tags-ffmpeg_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi` + + test_read_tags-cue_tag.o: src/cue/cue_tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-cue_tag.o -MD -MP -MF $(DEPDIR)/test_read_tags-cue_tag.Tpo -c -o test_read_tags-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-cue_tag.Tpo $(DEPDIR)/test_read_tags-cue_tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-cue_tag.o -MD -MP -MF "$(DEPDIR)/test_read_tags-cue_tag.Tpo" -c -o test_read_tags-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-cue_tag.Tpo" "$(DEPDIR)/test_read_tags-cue_tag.Po"; else rm -f "$(DEPDIR)/test_read_tags-cue_tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='test_read_tags-cue_tag.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c + + test_read_tags-cue_tag.obj: src/cue/cue_tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-cue_tag.obj -MD -MP -MF $(DEPDIR)/test_read_tags-cue_tag.Tpo -c -o test_read_tags-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-cue_tag.Tpo $(DEPDIR)/test_read_tags-cue_tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-cue_tag.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-cue_tag.Tpo" -c -o test_read_tags-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-cue_tag.Tpo" "$(DEPDIR)/test_read_tags-cue_tag.Po"; else rm -f "$(DEPDIR)/test_read_tags-cue_tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='test_read_tags-cue_tag.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi` + + test_run_decoder-run_decoder.o: test/run_decoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-run_decoder.o -MD -MP -MF $(DEPDIR)/test_run_decoder-run_decoder.Tpo -c -o test_run_decoder-run_decoder.o `test -f 'test/run_decoder.c' || echo '$(srcdir)/'`test/run_decoder.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-run_decoder.Tpo $(DEPDIR)/test_run_decoder-run_decoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-run_decoder.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-run_decoder.Tpo" -c -o test_run_decoder-run_decoder.o `test -f 'test/run_decoder.c' || echo '$(srcdir)/'`test/run_decoder.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-run_decoder.Tpo" "$(DEPDIR)/test_run_decoder-run_decoder.Po"; else rm -f "$(DEPDIR)/test_run_decoder-run_decoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_decoder.c' object='test_run_decoder-run_decoder.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-run_decoder.o `test -f 'test/run_decoder.c' || echo '$(srcdir)/'`test/run_decoder.c + + test_run_decoder-run_decoder.obj: test/run_decoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-run_decoder.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-run_decoder.Tpo -c -o test_run_decoder-run_decoder.obj `if test -f 'test/run_decoder.c'; then $(CYGPATH_W) 'test/run_decoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_decoder.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-run_decoder.Tpo $(DEPDIR)/test_run_decoder-run_decoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-run_decoder.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-run_decoder.Tpo" -c -o test_run_decoder-run_decoder.obj `if test -f 'test/run_decoder.c'; then $(CYGPATH_W) 'test/run_decoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_decoder.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-run_decoder.Tpo" "$(DEPDIR)/test_run_decoder-run_decoder.Po"; else rm -f "$(DEPDIR)/test_run_decoder-run_decoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_decoder.c' object='test_run_decoder-run_decoder.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-run_decoder.obj `if test -f 'test/run_decoder.c'; then $(CYGPATH_W) 'test/run_decoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_decoder.c'; fi` + + test_run_decoder-conf.o: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-conf.o -MD -MP -MF $(DEPDIR)/test_run_decoder-conf.Tpo -c -o test_run_decoder-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-conf.Tpo $(DEPDIR)/test_run_decoder-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-conf.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-conf.Tpo" -c -o test_run_decoder-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-conf.Tpo" "$(DEPDIR)/test_run_decoder-conf.Po"; else rm -f "$(DEPDIR)/test_run_decoder-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_decoder-conf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c + + test_run_decoder-conf.obj: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-conf.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-conf.Tpo -c -o test_run_decoder-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-conf.Tpo $(DEPDIR)/test_run_decoder-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-conf.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-conf.Tpo" -c -o test_run_decoder-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-conf.Tpo" "$(DEPDIR)/test_run_decoder-conf.Po"; else rm -f "$(DEPDIR)/test_run_decoder-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_decoder-conf.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` + + test_run_decoder-buffer2array.o: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-buffer2array.o -MD -MP -MF $(DEPDIR)/test_run_decoder-buffer2array.Tpo -c -o test_run_decoder-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-buffer2array.Tpo $(DEPDIR)/test_run_decoder-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-buffer2array.Tpo" -c -o test_run_decoder-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-buffer2array.Tpo" "$(DEPDIR)/test_run_decoder-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_decoder-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_decoder-buffer2array.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c + + test_run_decoder-buffer2array.obj: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-buffer2array.Tpo -c -o test_run_decoder-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-buffer2array.Tpo $(DEPDIR)/test_run_decoder-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-buffer2array.Tpo" -c -o test_run_decoder-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-buffer2array.Tpo" "$(DEPDIR)/test_run_decoder-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_decoder-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_decoder-buffer2array.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` + + test_run_decoder-utils.o: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-utils.o -MD -MP -MF $(DEPDIR)/test_run_decoder-utils.Tpo -c -o test_run_decoder-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-utils.Tpo $(DEPDIR)/test_run_decoder-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-utils.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-utils.Tpo" -c -o test_run_decoder-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-utils.Tpo" "$(DEPDIR)/test_run_decoder-utils.Po"; else rm -f "$(DEPDIR)/test_run_decoder-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_decoder-utils.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c + + test_run_decoder-utils.obj: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-utils.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-utils.Tpo -c -o test_run_decoder-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-utils.Tpo $(DEPDIR)/test_run_decoder-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-utils.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-utils.Tpo" -c -o test_run_decoder-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-utils.Tpo" "$(DEPDIR)/test_run_decoder-utils.Po"; else rm -f "$(DEPDIR)/test_run_decoder-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_decoder-utils.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` + + test_run_decoder-log.o: src/log.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-log.o -MD -MP -MF $(DEPDIR)/test_run_decoder-log.Tpo -c -o test_run_decoder-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-log.Tpo $(DEPDIR)/test_run_decoder-log.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-log.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-log.Tpo" -c -o test_run_decoder-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-log.Tpo" "$(DEPDIR)/test_run_decoder-log.Po"; else rm -f "$(DEPDIR)/test_run_decoder-log.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_run_decoder-log.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c + + test_run_decoder-log.obj: src/log.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-log.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-log.Tpo -c -o test_run_decoder-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-log.Tpo $(DEPDIR)/test_run_decoder-log.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-log.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-log.Tpo" -c -o test_run_decoder-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-log.Tpo" "$(DEPDIR)/test_run_decoder-log.Po"; else rm -f "$(DEPDIR)/test_run_decoder-log.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_run_decoder-log.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi` + + test_run_decoder-tag.o: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag.o -MD -MP -MF $(DEPDIR)/test_run_decoder-tag.Tpo -c -o test_run_decoder-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag.Tpo $(DEPDIR)/test_run_decoder-tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag.Tpo" -c -o test_run_decoder-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag.Tpo" "$(DEPDIR)/test_run_decoder-tag.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_decoder-tag.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c + + test_run_decoder-tag.obj: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-tag.Tpo -c -o test_run_decoder-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag.Tpo $(DEPDIR)/test_run_decoder-tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag.Tpo" -c -o test_run_decoder-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag.Tpo" "$(DEPDIR)/test_run_decoder-tag.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_decoder-tag.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` + + test_run_decoder-tag_pool.o: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_pool.o -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_pool.Tpo -c -o test_run_decoder-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_pool.Tpo $(DEPDIR)/test_run_decoder-tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_pool.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_pool.Tpo" -c -o test_run_decoder-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_pool.Tpo" "$(DEPDIR)/test_run_decoder-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_decoder-tag_pool.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c + + test_run_decoder-tag_pool.obj: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_pool.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_pool.Tpo -c -o test_run_decoder-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_pool.Tpo $(DEPDIR)/test_run_decoder-tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_pool.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_pool.Tpo" -c -o test_run_decoder-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_pool.Tpo" "$(DEPDIR)/test_run_decoder-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_decoder-tag_pool.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` + + test_run_decoder-replay_gain.o: src/replay_gain.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-replay_gain.o -MD -MP -MF $(DEPDIR)/test_run_decoder-replay_gain.Tpo -c -o test_run_decoder-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-replay_gain.Tpo $(DEPDIR)/test_run_decoder-replay_gain.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-replay_gain.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-replay_gain.Tpo" -c -o test_run_decoder-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-replay_gain.Tpo" "$(DEPDIR)/test_run_decoder-replay_gain.Po"; else rm -f "$(DEPDIR)/test_run_decoder-replay_gain.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='test_run_decoder-replay_gain.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c + + test_run_decoder-replay_gain.obj: src/replay_gain.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-replay_gain.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-replay_gain.Tpo -c -o test_run_decoder-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-replay_gain.Tpo $(DEPDIR)/test_run_decoder-replay_gain.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-replay_gain.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-replay_gain.Tpo" -c -o test_run_decoder-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-replay_gain.Tpo" "$(DEPDIR)/test_run_decoder-replay_gain.Po"; else rm -f "$(DEPDIR)/test_run_decoder-replay_gain.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='test_run_decoder-replay_gain.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi` + + test_run_decoder-uri.o: src/uri.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-uri.o -MD -MP -MF $(DEPDIR)/test_run_decoder-uri.Tpo -c -o test_run_decoder-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-uri.Tpo $(DEPDIR)/test_run_decoder-uri.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-uri.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-uri.Tpo" -c -o test_run_decoder-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-uri.Tpo" "$(DEPDIR)/test_run_decoder-uri.Po"; else rm -f "$(DEPDIR)/test_run_decoder-uri.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='test_run_decoder-uri.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c + + test_run_decoder-uri.obj: src/uri.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-uri.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-uri.Tpo -c -o test_run_decoder-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-uri.Tpo $(DEPDIR)/test_run_decoder-uri.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-uri.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-uri.Tpo" -c -o test_run_decoder-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-uri.Tpo" "$(DEPDIR)/test_run_decoder-uri.Po"; else rm -f "$(DEPDIR)/test_run_decoder-uri.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='test_run_decoder-uri.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi` + + test_run_decoder-timer.o: src/timer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-timer.o -MD -MP -MF $(DEPDIR)/test_run_decoder-timer.Tpo -c -o test_run_decoder-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-timer.Tpo $(DEPDIR)/test_run_decoder-timer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-timer.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-timer.Tpo" -c -o test_run_decoder-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-timer.Tpo" "$(DEPDIR)/test_run_decoder-timer.Po"; else rm -f "$(DEPDIR)/test_run_decoder-timer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_run_decoder-timer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c + + test_run_decoder-timer.obj: src/timer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-timer.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-timer.Tpo -c -o test_run_decoder-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-timer.Tpo $(DEPDIR)/test_run_decoder-timer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-timer.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-timer.Tpo" -c -o test_run_decoder-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-timer.Tpo" "$(DEPDIR)/test_run_decoder-timer.Po"; else rm -f "$(DEPDIR)/test_run_decoder-timer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_run_decoder-timer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi` + + test_run_decoder-bz2_plugin.o: src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-bz2_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-bz2_plugin.Tpo -c -o test_run_decoder-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-bz2_plugin.Tpo $(DEPDIR)/test_run_decoder-bz2_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-bz2_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo" -c -o test_run_decoder-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo" "$(DEPDIR)/test_run_decoder-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_run_decoder-bz2_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c + + test_run_decoder-bz2_plugin.obj: src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-bz2_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-bz2_plugin.Tpo -c -o test_run_decoder-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-bz2_plugin.Tpo $(DEPDIR)/test_run_decoder-bz2_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-bz2_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo" -c -o test_run_decoder-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo" "$(DEPDIR)/test_run_decoder-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_run_decoder-bz2_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi` + + test_run_decoder-zip_plugin.o: src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-zip_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-zip_plugin.Tpo -c -o test_run_decoder-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-zip_plugin.Tpo $(DEPDIR)/test_run_decoder-zip_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-zip_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo" -c -o test_run_decoder-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo" "$(DEPDIR)/test_run_decoder-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_run_decoder-zip_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c + + test_run_decoder-zip_plugin.obj: src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-zip_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-zip_plugin.Tpo -c -o test_run_decoder-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-zip_plugin.Tpo $(DEPDIR)/test_run_decoder-zip_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-zip_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo" -c -o test_run_decoder-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo" "$(DEPDIR)/test_run_decoder-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_run_decoder-zip_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi` + + test_run_decoder-iso_plugin.o: src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-iso_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-iso_plugin.Tpo -c -o test_run_decoder-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-iso_plugin.Tpo $(DEPDIR)/test_run_decoder-iso_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-iso_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo" -c -o test_run_decoder-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo" "$(DEPDIR)/test_run_decoder-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_run_decoder-iso_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c + + test_run_decoder-iso_plugin.obj: src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-iso_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-iso_plugin.Tpo -c -o test_run_decoder-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-iso_plugin.Tpo $(DEPDIR)/test_run_decoder-iso_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-iso_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo" -c -o test_run_decoder-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo" "$(DEPDIR)/test_run_decoder-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_run_decoder-iso_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi` + + test_run_decoder-archive_api.o: src/archive_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_api.o -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_api.Tpo -c -o test_run_decoder-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_api.Tpo $(DEPDIR)/test_run_decoder-archive_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_api.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_api.Tpo" -c -o test_run_decoder-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_api.Tpo" "$(DEPDIR)/test_run_decoder-archive_api.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_run_decoder-archive_api.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c + + test_run_decoder-archive_api.obj: src/archive_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_api.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_api.Tpo -c -o test_run_decoder-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_api.Tpo $(DEPDIR)/test_run_decoder-archive_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_api.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_api.Tpo" -c -o test_run_decoder-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_api.Tpo" "$(DEPDIR)/test_run_decoder-archive_api.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_run_decoder-archive_api.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi` + + test_run_decoder-archive_list.o: src/archive_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_list.o -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_list.Tpo -c -o test_run_decoder-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_list.Tpo $(DEPDIR)/test_run_decoder-archive_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_list.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_list.Tpo" -c -o test_run_decoder-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_list.Tpo" "$(DEPDIR)/test_run_decoder-archive_list.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_run_decoder-archive_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c + + test_run_decoder-archive_list.obj: src/archive_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_list.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_list.Tpo -c -o test_run_decoder-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_list.Tpo $(DEPDIR)/test_run_decoder-archive_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_list.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_list.Tpo" -c -o test_run_decoder-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_list.Tpo" "$(DEPDIR)/test_run_decoder-archive_list.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_run_decoder-archive_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi` + + test_run_decoder-archive_input_plugin.o: src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo -c -o test_run_decoder-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo $(DEPDIR)/test_run_decoder-archive_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo" -c -o test_run_decoder-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_run_decoder-archive_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c + + test_run_decoder-archive_input_plugin.obj: src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo -c -o test_run_decoder-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo $(DEPDIR)/test_run_decoder-archive_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo" -c -o test_run_decoder-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_run_decoder-archive_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi` + + test_run_decoder-input_stream.o: src/input_stream.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-input_stream.o -MD -MP -MF $(DEPDIR)/test_run_decoder-input_stream.Tpo -c -o test_run_decoder-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-input_stream.Tpo $(DEPDIR)/test_run_decoder-input_stream.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-input_stream.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-input_stream.Tpo" -c -o test_run_decoder-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-input_stream.Tpo" "$(DEPDIR)/test_run_decoder-input_stream.Po"; else rm -f "$(DEPDIR)/test_run_decoder-input_stream.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_run_decoder-input_stream.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c + + test_run_decoder-input_stream.obj: src/input_stream.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-input_stream.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-input_stream.Tpo -c -o test_run_decoder-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-input_stream.Tpo $(DEPDIR)/test_run_decoder-input_stream.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-input_stream.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-input_stream.Tpo" -c -o test_run_decoder-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-input_stream.Tpo" "$(DEPDIR)/test_run_decoder-input_stream.Po"; else rm -f "$(DEPDIR)/test_run_decoder-input_stream.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_run_decoder-input_stream.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi` + + test_run_decoder-file_input_plugin.o: src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-file_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-file_input_plugin.Tpo -c -o test_run_decoder-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-file_input_plugin.Tpo $(DEPDIR)/test_run_decoder-file_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-file_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo" -c -o test_run_decoder-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_run_decoder-file_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c + + test_run_decoder-file_input_plugin.obj: src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-file_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-file_input_plugin.Tpo -c -o test_run_decoder-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-file_input_plugin.Tpo $(DEPDIR)/test_run_decoder-file_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-file_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo" -c -o test_run_decoder-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_run_decoder-file_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi` + + test_run_decoder-curl_input_plugin.o: src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-curl_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo -c -o test_run_decoder-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo $(DEPDIR)/test_run_decoder-curl_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-curl_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo" -c -o test_run_decoder-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_run_decoder-curl_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c + + test_run_decoder-curl_input_plugin.obj: src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-curl_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo -c -o test_run_decoder-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo $(DEPDIR)/test_run_decoder-curl_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-curl_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo" -c -o test_run_decoder-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_run_decoder-curl_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi` + + test_run_decoder-rewind_input_plugin.o: src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-rewind_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo -c -o test_run_decoder-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo $(DEPDIR)/test_run_decoder-rewind_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-rewind_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo" -c -o test_run_decoder-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_run_decoder-rewind_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c + + test_run_decoder-rewind_input_plugin.obj: src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-rewind_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo -c -o test_run_decoder-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo $(DEPDIR)/test_run_decoder-rewind_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-rewind_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo" -c -o test_run_decoder-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_run_decoder-rewind_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi` + + test_run_decoder-icy_metadata.o: src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-icy_metadata.o -MD -MP -MF $(DEPDIR)/test_run_decoder-icy_metadata.Tpo -c -o test_run_decoder-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-icy_metadata.Tpo $(DEPDIR)/test_run_decoder-icy_metadata.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-icy_metadata.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo" -c -o test_run_decoder-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo" "$(DEPDIR)/test_run_decoder-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_run_decoder-icy_metadata.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c + + test_run_decoder-icy_metadata.obj: src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-icy_metadata.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-icy_metadata.Tpo -c -o test_run_decoder-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-icy_metadata.Tpo $(DEPDIR)/test_run_decoder-icy_metadata.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-icy_metadata.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo" -c -o test_run_decoder-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo" "$(DEPDIR)/test_run_decoder-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_run_decoder-icy_metadata.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi` + + test_run_decoder-lastfm_input_plugin.o: src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-lastfm_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo -c -o test_run_decoder-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-lastfm_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo" -c -o test_run_decoder-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_run_decoder-lastfm_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c + + test_run_decoder-lastfm_input_plugin.obj: src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-lastfm_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo -c -o test_run_decoder-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-lastfm_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo" -c -o test_run_decoder-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_run_decoder-lastfm_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi` + + test_run_decoder-mms_input_plugin.o: src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mms_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo -c -o test_run_decoder-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo $(DEPDIR)/test_run_decoder-mms_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mms_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo" -c -o test_run_decoder-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_run_decoder-mms_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c + + test_run_decoder-mms_input_plugin.obj: src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mms_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo -c -o test_run_decoder-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo $(DEPDIR)/test_run_decoder-mms_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mms_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo" -c -o test_run_decoder-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_run_decoder-mms_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi` + + test_run_decoder-tag_ape.o: src/tag_ape.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_ape.o -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_ape.Tpo -c -o test_run_decoder-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_ape.Tpo $(DEPDIR)/test_run_decoder-tag_ape.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_ape.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_ape.Tpo" -c -o test_run_decoder-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_ape.Tpo" "$(DEPDIR)/test_run_decoder-tag_ape.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_ape.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='test_run_decoder-tag_ape.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c + + test_run_decoder-tag_ape.obj: src/tag_ape.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_ape.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_ape.Tpo -c -o test_run_decoder-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_ape.Tpo $(DEPDIR)/test_run_decoder-tag_ape.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_ape.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_ape.Tpo" -c -o test_run_decoder-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_ape.Tpo" "$(DEPDIR)/test_run_decoder-tag_ape.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_ape.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='test_run_decoder-tag_ape.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi` + + test_run_decoder-tag_id3.o: src/tag_id3.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_id3.o -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_id3.Tpo -c -o test_run_decoder-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_id3.Tpo $(DEPDIR)/test_run_decoder-tag_id3.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_id3.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_id3.Tpo" -c -o test_run_decoder-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_id3.Tpo" "$(DEPDIR)/test_run_decoder-tag_id3.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_id3.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='test_run_decoder-tag_id3.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c + + test_run_decoder-tag_id3.obj: src/tag_id3.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_id3.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_id3.Tpo -c -o test_run_decoder-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_id3.Tpo $(DEPDIR)/test_run_decoder-tag_id3.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_id3.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_id3.Tpo" -c -o test_run_decoder-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_id3.Tpo" "$(DEPDIR)/test_run_decoder-tag_id3.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_id3.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='test_run_decoder-tag_id3.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi` + + test_run_decoder-riff.o: src/riff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-riff.o -MD -MP -MF $(DEPDIR)/test_run_decoder-riff.Tpo -c -o test_run_decoder-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-riff.Tpo $(DEPDIR)/test_run_decoder-riff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-riff.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-riff.Tpo" -c -o test_run_decoder-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-riff.Tpo" "$(DEPDIR)/test_run_decoder-riff.Po"; else rm -f "$(DEPDIR)/test_run_decoder-riff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='test_run_decoder-riff.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c + + test_run_decoder-riff.obj: src/riff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-riff.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-riff.Tpo -c -o test_run_decoder-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-riff.Tpo $(DEPDIR)/test_run_decoder-riff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-riff.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-riff.Tpo" -c -o test_run_decoder-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-riff.Tpo" "$(DEPDIR)/test_run_decoder-riff.Po"; else rm -f "$(DEPDIR)/test_run_decoder-riff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='test_run_decoder-riff.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi` + + test_run_decoder-aiff.o: src/aiff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-aiff.o -MD -MP -MF $(DEPDIR)/test_run_decoder-aiff.Tpo -c -o test_run_decoder-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-aiff.Tpo $(DEPDIR)/test_run_decoder-aiff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-aiff.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-aiff.Tpo" -c -o test_run_decoder-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-aiff.Tpo" "$(DEPDIR)/test_run_decoder-aiff.Po"; else rm -f "$(DEPDIR)/test_run_decoder-aiff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='test_run_decoder-aiff.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c + + test_run_decoder-aiff.obj: src/aiff.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-aiff.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-aiff.Tpo -c -o test_run_decoder-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-aiff.Tpo $(DEPDIR)/test_run_decoder-aiff.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-aiff.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-aiff.Tpo" -c -o test_run_decoder-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-aiff.Tpo" "$(DEPDIR)/test_run_decoder-aiff.Po"; else rm -f "$(DEPDIR)/test_run_decoder-aiff.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='test_run_decoder-aiff.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi` + + test_run_decoder-decoder_buffer.o: src/decoder_buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_buffer.o -MD -MP -MF $(DEPDIR)/test_run_decoder-decoder_buffer.Tpo -c -o test_run_decoder-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-decoder_buffer.Tpo $(DEPDIR)/test_run_decoder-decoder_buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_buffer.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo" -c -o test_run_decoder-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo" "$(DEPDIR)/test_run_decoder-decoder_buffer.Po"; else rm -f "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='test_run_decoder-decoder_buffer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c + + test_run_decoder-decoder_buffer.obj: src/decoder_buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_buffer.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-decoder_buffer.Tpo -c -o test_run_decoder-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-decoder_buffer.Tpo $(DEPDIR)/test_run_decoder-decoder_buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_buffer.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo" -c -o test_run_decoder-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo" "$(DEPDIR)/test_run_decoder-decoder_buffer.Po"; else rm -f "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='test_run_decoder-decoder_buffer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi` + + test_run_decoder-decoder_list.o: src/decoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_list.o -MD -MP -MF $(DEPDIR)/test_run_decoder-decoder_list.Tpo -c -o test_run_decoder-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-decoder_list.Tpo $(DEPDIR)/test_run_decoder-decoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_list.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-decoder_list.Tpo" -c -o test_run_decoder-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-decoder_list.Tpo" "$(DEPDIR)/test_run_decoder-decoder_list.Po"; else rm -f "$(DEPDIR)/test_run_decoder-decoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='test_run_decoder-decoder_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c + + test_run_decoder-decoder_list.obj: src/decoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_list.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-decoder_list.Tpo -c -o test_run_decoder-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-decoder_list.Tpo $(DEPDIR)/test_run_decoder-decoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_list.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-decoder_list.Tpo" -c -o test_run_decoder-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-decoder_list.Tpo" "$(DEPDIR)/test_run_decoder-decoder_list.Po"; else rm -f "$(DEPDIR)/test_run_decoder-decoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='test_run_decoder-decoder_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi` + + test_run_decoder-mad_plugin.o: src/decoder/mad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mad_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-mad_plugin.Tpo -c -o test_run_decoder-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mad_plugin.Tpo $(DEPDIR)/test_run_decoder-mad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mad_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo" -c -o test_run_decoder-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mad_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='test_run_decoder-mad_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c + + test_run_decoder-mad_plugin.obj: src/decoder/mad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mad_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-mad_plugin.Tpo -c -o test_run_decoder-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mad_plugin.Tpo $(DEPDIR)/test_run_decoder-mad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mad_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo" -c -o test_run_decoder-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mad_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='test_run_decoder-mad_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi` + + test_run_decoder-mpcdec_plugin.o: src/decoder/mpcdec_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mpcdec_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo -c -o test_run_decoder-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo $(DEPDIR)/test_run_decoder-mpcdec_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mpcdec_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo" -c -o test_run_decoder-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='test_run_decoder-mpcdec_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c + + test_run_decoder-mpcdec_plugin.obj: src/decoder/mpcdec_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mpcdec_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo -c -o test_run_decoder-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo $(DEPDIR)/test_run_decoder-mpcdec_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mpcdec_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo" -c -o test_run_decoder-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='test_run_decoder-mpcdec_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi` + + test_run_decoder-wavpack_plugin.o: src/decoder/wavpack_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wavpack_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo -c -o test_run_decoder-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo $(DEPDIR)/test_run_decoder-wavpack_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wavpack_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo" -c -o test_run_decoder-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo" "$(DEPDIR)/test_run_decoder-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='test_run_decoder-wavpack_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c + + test_run_decoder-wavpack_plugin.obj: src/decoder/wavpack_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wavpack_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo -c -o test_run_decoder-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo $(DEPDIR)/test_run_decoder-wavpack_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wavpack_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo" -c -o test_run_decoder-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo" "$(DEPDIR)/test_run_decoder-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='test_run_decoder-wavpack_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi` + + test_run_decoder-faad_plugin.o: src/decoder/faad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-faad_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-faad_plugin.Tpo -c -o test_run_decoder-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-faad_plugin.Tpo $(DEPDIR)/test_run_decoder-faad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-faad_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo" -c -o test_run_decoder-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo" "$(DEPDIR)/test_run_decoder-faad_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='test_run_decoder-faad_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c + + test_run_decoder-faad_plugin.obj: src/decoder/faad_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-faad_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-faad_plugin.Tpo -c -o test_run_decoder-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-faad_plugin.Tpo $(DEPDIR)/test_run_decoder-faad_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-faad_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo" -c -o test_run_decoder-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo" "$(DEPDIR)/test_run_decoder-faad_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='test_run_decoder-faad_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi` + + test_run_decoder-mp4ff_plugin.o: src/decoder/mp4ff_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mp4ff_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo -c -o test_run_decoder-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo $(DEPDIR)/test_run_decoder-mp4ff_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mp4ff_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo" -c -o test_run_decoder-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='test_run_decoder-mp4ff_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c + + test_run_decoder-mp4ff_plugin.obj: src/decoder/mp4ff_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mp4ff_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo -c -o test_run_decoder-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo $(DEPDIR)/test_run_decoder-mp4ff_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mp4ff_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo" -c -o test_run_decoder-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='test_run_decoder-mp4ff_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi` + + test_run_decoder-_ogg_common.o: src/decoder/_ogg_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_ogg_common.o -MD -MP -MF $(DEPDIR)/test_run_decoder-_ogg_common.Tpo -c -o test_run_decoder-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-_ogg_common.Tpo $(DEPDIR)/test_run_decoder-_ogg_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_ogg_common.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo" -c -o test_run_decoder-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo" "$(DEPDIR)/test_run_decoder-_ogg_common.Po"; else rm -f "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='test_run_decoder-_ogg_common.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c + + test_run_decoder-_ogg_common.obj: src/decoder/_ogg_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_ogg_common.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-_ogg_common.Tpo -c -o test_run_decoder-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-_ogg_common.Tpo $(DEPDIR)/test_run_decoder-_ogg_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_ogg_common.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo" -c -o test_run_decoder-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo" "$(DEPDIR)/test_run_decoder-_ogg_common.Po"; else rm -f "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='test_run_decoder-_ogg_common.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi` + + test_run_decoder-_flac_common.o: src/decoder/_flac_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_flac_common.o -MD -MP -MF $(DEPDIR)/test_run_decoder-_flac_common.Tpo -c -o test_run_decoder-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-_flac_common.Tpo $(DEPDIR)/test_run_decoder-_flac_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_flac_common.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-_flac_common.Tpo" -c -o test_run_decoder-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-_flac_common.Tpo" "$(DEPDIR)/test_run_decoder-_flac_common.Po"; else rm -f "$(DEPDIR)/test_run_decoder-_flac_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='test_run_decoder-_flac_common.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c + + test_run_decoder-_flac_common.obj: src/decoder/_flac_common.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_flac_common.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-_flac_common.Tpo -c -o test_run_decoder-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-_flac_common.Tpo $(DEPDIR)/test_run_decoder-_flac_common.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_flac_common.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-_flac_common.Tpo" -c -o test_run_decoder-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-_flac_common.Tpo" "$(DEPDIR)/test_run_decoder-_flac_common.Po"; else rm -f "$(DEPDIR)/test_run_decoder-_flac_common.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='test_run_decoder-_flac_common.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi` + + test_run_decoder-vorbis_plugin.o: src/decoder/vorbis_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-vorbis_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo -c -o test_run_decoder-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo $(DEPDIR)/test_run_decoder-vorbis_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-vorbis_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo" -c -o test_run_decoder-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo" "$(DEPDIR)/test_run_decoder-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='test_run_decoder-vorbis_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c + + test_run_decoder-vorbis_plugin.obj: src/decoder/vorbis_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-vorbis_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo -c -o test_run_decoder-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo $(DEPDIR)/test_run_decoder-vorbis_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-vorbis_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo" -c -o test_run_decoder-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo" "$(DEPDIR)/test_run_decoder-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='test_run_decoder-vorbis_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi` + + test_run_decoder-flac_plugin.o: src/decoder/flac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-flac_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-flac_plugin.Tpo -c -o test_run_decoder-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-flac_plugin.Tpo $(DEPDIR)/test_run_decoder-flac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-flac_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo" -c -o test_run_decoder-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo" "$(DEPDIR)/test_run_decoder-flac_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='test_run_decoder-flac_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c + + test_run_decoder-flac_plugin.obj: src/decoder/flac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-flac_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-flac_plugin.Tpo -c -o test_run_decoder-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-flac_plugin.Tpo $(DEPDIR)/test_run_decoder-flac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-flac_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo" -c -o test_run_decoder-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo" "$(DEPDIR)/test_run_decoder-flac_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='test_run_decoder-flac_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi` + + test_run_decoder-oggflac_plugin.o: src/decoder/oggflac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-oggflac_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo -c -o test_run_decoder-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo $(DEPDIR)/test_run_decoder-oggflac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-oggflac_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo" -c -o test_run_decoder-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo" "$(DEPDIR)/test_run_decoder-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='test_run_decoder-oggflac_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c + + test_run_decoder-oggflac_plugin.obj: src/decoder/oggflac_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-oggflac_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo -c -o test_run_decoder-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo $(DEPDIR)/test_run_decoder-oggflac_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-oggflac_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo" -c -o test_run_decoder-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo" "$(DEPDIR)/test_run_decoder-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='test_run_decoder-oggflac_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi` + + test_run_decoder-audiofile_plugin.o: src/decoder/audiofile_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-audiofile_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo -c -o test_run_decoder-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo $(DEPDIR)/test_run_decoder-audiofile_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-audiofile_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo" -c -o test_run_decoder-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo" "$(DEPDIR)/test_run_decoder-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='test_run_decoder-audiofile_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c + + test_run_decoder-audiofile_plugin.obj: src/decoder/audiofile_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-audiofile_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo -c -o test_run_decoder-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo $(DEPDIR)/test_run_decoder-audiofile_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-audiofile_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo" -c -o test_run_decoder-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo" "$(DEPDIR)/test_run_decoder-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='test_run_decoder-audiofile_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi` + + test_run_decoder-mikmod_plugin.o: src/decoder/mikmod_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mikmod_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo -c -o test_run_decoder-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo $(DEPDIR)/test_run_decoder-mikmod_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mikmod_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo" -c -o test_run_decoder-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='test_run_decoder-mikmod_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c + + test_run_decoder-mikmod_plugin.obj: src/decoder/mikmod_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mikmod_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo -c -o test_run_decoder-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo $(DEPDIR)/test_run_decoder-mikmod_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mikmod_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo" -c -o test_run_decoder-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='test_run_decoder-mikmod_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi` + + test_run_decoder-modplug_plugin.o: src/decoder/modplug_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-modplug_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-modplug_plugin.Tpo -c -o test_run_decoder-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-modplug_plugin.Tpo $(DEPDIR)/test_run_decoder-modplug_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-modplug_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo" -c -o test_run_decoder-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo" "$(DEPDIR)/test_run_decoder-modplug_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='test_run_decoder-modplug_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c + + test_run_decoder-modplug_plugin.obj: src/decoder/modplug_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-modplug_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-modplug_plugin.Tpo -c -o test_run_decoder-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-modplug_plugin.Tpo $(DEPDIR)/test_run_decoder-modplug_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-modplug_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo" -c -o test_run_decoder-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo" "$(DEPDIR)/test_run_decoder-modplug_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='test_run_decoder-modplug_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi` + + test_run_decoder-fluidsynth_plugin.o: src/decoder/fluidsynth_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-fluidsynth_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo -c -o test_run_decoder-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-fluidsynth_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo" -c -o test_run_decoder-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo" "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='test_run_decoder-fluidsynth_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c + + test_run_decoder-fluidsynth_plugin.obj: src/decoder/fluidsynth_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-fluidsynth_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo -c -o test_run_decoder-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-fluidsynth_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo" -c -o test_run_decoder-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo" "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='test_run_decoder-fluidsynth_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi` + + test_run_decoder-wildmidi_plugin.o: src/decoder/wildmidi_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wildmidi_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo -c -o test_run_decoder-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo $(DEPDIR)/test_run_decoder-wildmidi_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wildmidi_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo" -c -o test_run_decoder-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo" "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='test_run_decoder-wildmidi_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c + + test_run_decoder-wildmidi_plugin.obj: src/decoder/wildmidi_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wildmidi_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo -c -o test_run_decoder-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo $(DEPDIR)/test_run_decoder-wildmidi_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wildmidi_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo" -c -o test_run_decoder-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo" "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='test_run_decoder-wildmidi_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi` + + test_run_decoder-ffmpeg_plugin.o: src/decoder/ffmpeg_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-ffmpeg_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo -c -o test_run_decoder-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-ffmpeg_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo" -c -o test_run_decoder-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo" "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='test_run_decoder-ffmpeg_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c + + test_run_decoder-ffmpeg_plugin.obj: src/decoder/ffmpeg_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-ffmpeg_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo -c -o test_run_decoder-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-ffmpeg_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo" -c -o test_run_decoder-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo" "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='test_run_decoder-ffmpeg_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi` + + test_run_decoder-cue_tag.o: src/cue/cue_tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-cue_tag.o -MD -MP -MF $(DEPDIR)/test_run_decoder-cue_tag.Tpo -c -o test_run_decoder-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-cue_tag.Tpo $(DEPDIR)/test_run_decoder-cue_tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-cue_tag.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-cue_tag.Tpo" -c -o test_run_decoder-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-cue_tag.Tpo" "$(DEPDIR)/test_run_decoder-cue_tag.Po"; else rm -f "$(DEPDIR)/test_run_decoder-cue_tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='test_run_decoder-cue_tag.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c + + test_run_decoder-cue_tag.obj: src/cue/cue_tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-cue_tag.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-cue_tag.Tpo -c -o test_run_decoder-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-cue_tag.Tpo $(DEPDIR)/test_run_decoder-cue_tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-cue_tag.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-cue_tag.Tpo" -c -o test_run_decoder-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-cue_tag.Tpo" "$(DEPDIR)/test_run_decoder-cue_tag.Po"; else rm -f "$(DEPDIR)/test_run_decoder-cue_tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='test_run_decoder-cue_tag.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi` + + run_encoder.o: test/run_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT run_encoder.o -MD -MP -MF $(DEPDIR)/run_encoder.Tpo -c -o run_encoder.o `test -f 'test/run_encoder.c' || echo '$(srcdir)/'`test/run_encoder.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/run_encoder.Tpo $(DEPDIR)/run_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT run_encoder.o -MD -MP -MF "$(DEPDIR)/run_encoder.Tpo" -c -o run_encoder.o `test -f 'test/run_encoder.c' || echo '$(srcdir)/'`test/run_encoder.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/run_encoder.Tpo" "$(DEPDIR)/run_encoder.Po"; else rm -f "$(DEPDIR)/run_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_encoder.c' object='run_encoder.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o run_encoder.o `test -f 'test/run_encoder.c' || echo '$(srcdir)/'`test/run_encoder.c + + run_encoder.obj: test/run_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT run_encoder.obj -MD -MP -MF $(DEPDIR)/run_encoder.Tpo -c -o run_encoder.obj `if test -f 'test/run_encoder.c'; then $(CYGPATH_W) 'test/run_encoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_encoder.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/run_encoder.Tpo $(DEPDIR)/run_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT run_encoder.obj -MD -MP -MF "$(DEPDIR)/run_encoder.Tpo" -c -o run_encoder.obj `if test -f 'test/run_encoder.c'; then $(CYGPATH_W) 'test/run_encoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_encoder.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/run_encoder.Tpo" "$(DEPDIR)/run_encoder.Po"; else rm -f "$(DEPDIR)/run_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_encoder.c' object='run_encoder.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o run_encoder.obj `if test -f 'test/run_encoder.c'; then $(CYGPATH_W) 'test/run_encoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_encoder.c'; fi` + + conf.o: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT conf.o -MD -MP -MF $(DEPDIR)/conf.Tpo -c -o conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/conf.Tpo $(DEPDIR)/conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT conf.o -MD -MP -MF "$(DEPDIR)/conf.Tpo" -c -o conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/conf.Tpo" "$(DEPDIR)/conf.Po"; else rm -f "$(DEPDIR)/conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='conf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c + + conf.obj: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT conf.obj -MD -MP -MF $(DEPDIR)/conf.Tpo -c -o conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/conf.Tpo $(DEPDIR)/conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT conf.obj -MD -MP -MF "$(DEPDIR)/conf.Tpo" -c -o conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/conf.Tpo" "$(DEPDIR)/conf.Po"; else rm -f "$(DEPDIR)/conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='conf.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` + + buffer2array.o: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT buffer2array.o -MD -MP -MF $(DEPDIR)/buffer2array.Tpo -c -o buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/buffer2array.Tpo $(DEPDIR)/buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT buffer2array.o -MD -MP -MF "$(DEPDIR)/buffer2array.Tpo" -c -o buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/buffer2array.Tpo" "$(DEPDIR)/buffer2array.Po"; else rm -f "$(DEPDIR)/buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='buffer2array.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c + + buffer2array.obj: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT buffer2array.obj -MD -MP -MF $(DEPDIR)/buffer2array.Tpo -c -o buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/buffer2array.Tpo $(DEPDIR)/buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT buffer2array.obj -MD -MP -MF "$(DEPDIR)/buffer2array.Tpo" -c -o buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/buffer2array.Tpo" "$(DEPDIR)/buffer2array.Po"; else rm -f "$(DEPDIR)/buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='buffer2array.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` + + utils.o: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT utils.o -MD -MP -MF $(DEPDIR)/utils.Tpo -c -o utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/utils.Tpo $(DEPDIR)/utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT utils.o -MD -MP -MF "$(DEPDIR)/utils.Tpo" -c -o utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/utils.Tpo" "$(DEPDIR)/utils.Po"; else rm -f "$(DEPDIR)/utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='utils.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c + + utils.obj: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT utils.obj -MD -MP -MF $(DEPDIR)/utils.Tpo -c -o utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/utils.Tpo $(DEPDIR)/utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT utils.obj -MD -MP -MF "$(DEPDIR)/utils.Tpo" -c -o utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/utils.Tpo" "$(DEPDIR)/utils.Po"; else rm -f "$(DEPDIR)/utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='utils.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` + + tag.o: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag.o -MD -MP -MF $(DEPDIR)/tag.Tpo -c -o tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tag.Tpo $(DEPDIR)/tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag.o -MD -MP -MF "$(DEPDIR)/tag.Tpo" -c -o tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/tag.Tpo" "$(DEPDIR)/tag.Po"; else rm -f "$(DEPDIR)/tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='tag.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c + + tag.obj: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag.obj -MD -MP -MF $(DEPDIR)/tag.Tpo -c -o tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tag.Tpo $(DEPDIR)/tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag.obj -MD -MP -MF "$(DEPDIR)/tag.Tpo" -c -o tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/tag.Tpo" "$(DEPDIR)/tag.Po"; else rm -f "$(DEPDIR)/tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='tag.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` + + tag_pool.o: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag_pool.o -MD -MP -MF $(DEPDIR)/tag_pool.Tpo -c -o tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tag_pool.Tpo $(DEPDIR)/tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag_pool.o -MD -MP -MF "$(DEPDIR)/tag_pool.Tpo" -c -o tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/tag_pool.Tpo" "$(DEPDIR)/tag_pool.Po"; else rm -f "$(DEPDIR)/tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='tag_pool.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c + + tag_pool.obj: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag_pool.obj -MD -MP -MF $(DEPDIR)/tag_pool.Tpo -c -o tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tag_pool.Tpo $(DEPDIR)/tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag_pool.obj -MD -MP -MF "$(DEPDIR)/tag_pool.Tpo" -c -o tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/tag_pool.Tpo" "$(DEPDIR)/tag_pool.Po"; else rm -f "$(DEPDIR)/tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='tag_pool.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` + + audio_parser.o: src/audio_parser.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_parser.o -MD -MP -MF $(DEPDIR)/audio_parser.Tpo -c -o audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/audio_parser.Tpo $(DEPDIR)/audio_parser.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_parser.o -MD -MP -MF "$(DEPDIR)/audio_parser.Tpo" -c -o audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_parser.Tpo" "$(DEPDIR)/audio_parser.Po"; else rm -f "$(DEPDIR)/audio_parser.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='audio_parser.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c + + audio_parser.obj: src/audio_parser.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_parser.obj -MD -MP -MF $(DEPDIR)/audio_parser.Tpo -c -o audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/audio_parser.Tpo $(DEPDIR)/audio_parser.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_parser.obj -MD -MP -MF "$(DEPDIR)/audio_parser.Tpo" -c -o audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_parser.Tpo" "$(DEPDIR)/audio_parser.Po"; else rm -f "$(DEPDIR)/audio_parser.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='audio_parser.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi` + + encoder_list.o: src/encoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT encoder_list.o -MD -MP -MF $(DEPDIR)/encoder_list.Tpo -c -o encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/encoder_list.Tpo $(DEPDIR)/encoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT encoder_list.o -MD -MP -MF "$(DEPDIR)/encoder_list.Tpo" -c -o encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/encoder_list.Tpo" "$(DEPDIR)/encoder_list.Po"; else rm -f "$(DEPDIR)/encoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='encoder_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c + + encoder_list.obj: src/encoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT encoder_list.obj -MD -MP -MF $(DEPDIR)/encoder_list.Tpo -c -o encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/encoder_list.Tpo $(DEPDIR)/encoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT encoder_list.obj -MD -MP -MF "$(DEPDIR)/encoder_list.Tpo" -c -o encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/encoder_list.Tpo" "$(DEPDIR)/encoder_list.Po"; else rm -f "$(DEPDIR)/encoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='encoder_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi` + + vorbis_encoder.o: src/encoder/vorbis_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vorbis_encoder.o -MD -MP -MF $(DEPDIR)/vorbis_encoder.Tpo -c -o vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/vorbis_encoder.Tpo $(DEPDIR)/vorbis_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vorbis_encoder.o -MD -MP -MF "$(DEPDIR)/vorbis_encoder.Tpo" -c -o vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/vorbis_encoder.Tpo" "$(DEPDIR)/vorbis_encoder.Po"; else rm -f "$(DEPDIR)/vorbis_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='vorbis_encoder.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c + + vorbis_encoder.obj: src/encoder/vorbis_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vorbis_encoder.obj -MD -MP -MF $(DEPDIR)/vorbis_encoder.Tpo -c -o vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/vorbis_encoder.Tpo $(DEPDIR)/vorbis_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vorbis_encoder.obj -MD -MP -MF "$(DEPDIR)/vorbis_encoder.Tpo" -c -o vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/vorbis_encoder.Tpo" "$(DEPDIR)/vorbis_encoder.Po"; else rm -f "$(DEPDIR)/vorbis_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='vorbis_encoder.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi` + + lame_encoder.o: src/encoder/lame_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lame_encoder.o -MD -MP -MF $(DEPDIR)/lame_encoder.Tpo -c -o lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/lame_encoder.Tpo $(DEPDIR)/lame_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lame_encoder.o -MD -MP -MF "$(DEPDIR)/lame_encoder.Tpo" -c -o lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lame_encoder.Tpo" "$(DEPDIR)/lame_encoder.Po"; else rm -f "$(DEPDIR)/lame_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='lame_encoder.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c + + lame_encoder.obj: src/encoder/lame_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lame_encoder.obj -MD -MP -MF $(DEPDIR)/lame_encoder.Tpo -c -o lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/lame_encoder.Tpo $(DEPDIR)/lame_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lame_encoder.obj -MD -MP -MF "$(DEPDIR)/lame_encoder.Tpo" -c -o lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lame_encoder.Tpo" "$(DEPDIR)/lame_encoder.Po"; else rm -f "$(DEPDIR)/lame_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='lame_encoder.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi` + + test_run_input-run_input.o: test/run_input.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-run_input.o -MD -MP -MF $(DEPDIR)/test_run_input-run_input.Tpo -c -o test_run_input-run_input.o `test -f 'test/run_input.c' || echo '$(srcdir)/'`test/run_input.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-run_input.Tpo $(DEPDIR)/test_run_input-run_input.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-run_input.o -MD -MP -MF "$(DEPDIR)/test_run_input-run_input.Tpo" -c -o test_run_input-run_input.o `test -f 'test/run_input.c' || echo '$(srcdir)/'`test/run_input.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-run_input.Tpo" "$(DEPDIR)/test_run_input-run_input.Po"; else rm -f "$(DEPDIR)/test_run_input-run_input.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_input.c' object='test_run_input-run_input.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-run_input.o `test -f 'test/run_input.c' || echo '$(srcdir)/'`test/run_input.c + + test_run_input-run_input.obj: test/run_input.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-run_input.obj -MD -MP -MF $(DEPDIR)/test_run_input-run_input.Tpo -c -o test_run_input-run_input.obj `if test -f 'test/run_input.c'; then $(CYGPATH_W) 'test/run_input.c'; else $(CYGPATH_W) '$(srcdir)/test/run_input.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-run_input.Tpo $(DEPDIR)/test_run_input-run_input.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-run_input.obj -MD -MP -MF "$(DEPDIR)/test_run_input-run_input.Tpo" -c -o test_run_input-run_input.obj `if test -f 'test/run_input.c'; then $(CYGPATH_W) 'test/run_input.c'; else $(CYGPATH_W) '$(srcdir)/test/run_input.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-run_input.Tpo" "$(DEPDIR)/test_run_input-run_input.Po"; else rm -f "$(DEPDIR)/test_run_input-run_input.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_input.c' object='test_run_input-run_input.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-run_input.obj `if test -f 'test/run_input.c'; then $(CYGPATH_W) 'test/run_input.c'; else $(CYGPATH_W) '$(srcdir)/test/run_input.c'; fi` + + test_run_input-conf.o: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-conf.o -MD -MP -MF $(DEPDIR)/test_run_input-conf.Tpo -c -o test_run_input-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-conf.Tpo $(DEPDIR)/test_run_input-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-conf.o -MD -MP -MF "$(DEPDIR)/test_run_input-conf.Tpo" -c -o test_run_input-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-conf.Tpo" "$(DEPDIR)/test_run_input-conf.Po"; else rm -f "$(DEPDIR)/test_run_input-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_input-conf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c + + test_run_input-conf.obj: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-conf.obj -MD -MP -MF $(DEPDIR)/test_run_input-conf.Tpo -c -o test_run_input-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-conf.Tpo $(DEPDIR)/test_run_input-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-conf.obj -MD -MP -MF "$(DEPDIR)/test_run_input-conf.Tpo" -c -o test_run_input-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-conf.Tpo" "$(DEPDIR)/test_run_input-conf.Po"; else rm -f "$(DEPDIR)/test_run_input-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_input-conf.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` + + test_run_input-buffer2array.o: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-buffer2array.o -MD -MP -MF $(DEPDIR)/test_run_input-buffer2array.Tpo -c -o test_run_input-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-buffer2array.Tpo $(DEPDIR)/test_run_input-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_run_input-buffer2array.Tpo" -c -o test_run_input-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-buffer2array.Tpo" "$(DEPDIR)/test_run_input-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_input-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_input-buffer2array.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c + + test_run_input-buffer2array.obj: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_run_input-buffer2array.Tpo -c -o test_run_input-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-buffer2array.Tpo $(DEPDIR)/test_run_input-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_run_input-buffer2array.Tpo" -c -o test_run_input-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-buffer2array.Tpo" "$(DEPDIR)/test_run_input-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_input-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_input-buffer2array.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` + + test_run_input-utils.o: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-utils.o -MD -MP -MF $(DEPDIR)/test_run_input-utils.Tpo -c -o test_run_input-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-utils.Tpo $(DEPDIR)/test_run_input-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-utils.o -MD -MP -MF "$(DEPDIR)/test_run_input-utils.Tpo" -c -o test_run_input-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-utils.Tpo" "$(DEPDIR)/test_run_input-utils.Po"; else rm -f "$(DEPDIR)/test_run_input-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_input-utils.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c + + test_run_input-utils.obj: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-utils.obj -MD -MP -MF $(DEPDIR)/test_run_input-utils.Tpo -c -o test_run_input-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-utils.Tpo $(DEPDIR)/test_run_input-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-utils.obj -MD -MP -MF "$(DEPDIR)/test_run_input-utils.Tpo" -c -o test_run_input-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-utils.Tpo" "$(DEPDIR)/test_run_input-utils.Po"; else rm -f "$(DEPDIR)/test_run_input-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_input-utils.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` + + test_run_input-tag.o: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag.o -MD -MP -MF $(DEPDIR)/test_run_input-tag.Tpo -c -o test_run_input-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag.Tpo $(DEPDIR)/test_run_input-tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag.o -MD -MP -MF "$(DEPDIR)/test_run_input-tag.Tpo" -c -o test_run_input-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag.Tpo" "$(DEPDIR)/test_run_input-tag.Po"; else rm -f "$(DEPDIR)/test_run_input-tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_input-tag.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c + + test_run_input-tag.obj: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag.obj -MD -MP -MF $(DEPDIR)/test_run_input-tag.Tpo -c -o test_run_input-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag.Tpo $(DEPDIR)/test_run_input-tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag.obj -MD -MP -MF "$(DEPDIR)/test_run_input-tag.Tpo" -c -o test_run_input-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag.Tpo" "$(DEPDIR)/test_run_input-tag.Po"; else rm -f "$(DEPDIR)/test_run_input-tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_input-tag.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` + + test_run_input-tag_pool.o: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_pool.o -MD -MP -MF $(DEPDIR)/test_run_input-tag_pool.Tpo -c -o test_run_input-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag_pool.Tpo $(DEPDIR)/test_run_input-tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_pool.o -MD -MP -MF "$(DEPDIR)/test_run_input-tag_pool.Tpo" -c -o test_run_input-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag_pool.Tpo" "$(DEPDIR)/test_run_input-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_input-tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_input-tag_pool.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c + + test_run_input-tag_pool.obj: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_pool.obj -MD -MP -MF $(DEPDIR)/test_run_input-tag_pool.Tpo -c -o test_run_input-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag_pool.Tpo $(DEPDIR)/test_run_input-tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_pool.obj -MD -MP -MF "$(DEPDIR)/test_run_input-tag_pool.Tpo" -c -o test_run_input-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag_pool.Tpo" "$(DEPDIR)/test_run_input-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_input-tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_input-tag_pool.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` + + test_run_input-tag_save.o: src/tag_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_save.o -MD -MP -MF $(DEPDIR)/test_run_input-tag_save.Tpo -c -o test_run_input-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag_save.Tpo $(DEPDIR)/test_run_input-tag_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_save.o -MD -MP -MF "$(DEPDIR)/test_run_input-tag_save.Tpo" -c -o test_run_input-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag_save.Tpo" "$(DEPDIR)/test_run_input-tag_save.Po"; else rm -f "$(DEPDIR)/test_run_input-tag_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_save.c' object='test_run_input-tag_save.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c + + test_run_input-tag_save.obj: src/tag_save.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_save.obj -MD -MP -MF $(DEPDIR)/test_run_input-tag_save.Tpo -c -o test_run_input-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag_save.Tpo $(DEPDIR)/test_run_input-tag_save.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_save.obj -MD -MP -MF "$(DEPDIR)/test_run_input-tag_save.Tpo" -c -o test_run_input-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag_save.Tpo" "$(DEPDIR)/test_run_input-tag_save.Po"; else rm -f "$(DEPDIR)/test_run_input-tag_save.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_save.c' object='test_run_input-tag_save.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi` + + test_run_input-bz2_plugin.o: src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-bz2_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-bz2_plugin.Tpo -c -o test_run_input-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-bz2_plugin.Tpo $(DEPDIR)/test_run_input-bz2_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-bz2_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-bz2_plugin.Tpo" -c -o test_run_input-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-bz2_plugin.Tpo" "$(DEPDIR)/test_run_input-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-bz2_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_run_input-bz2_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c + + test_run_input-bz2_plugin.obj: src/archive/bz2_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-bz2_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-bz2_plugin.Tpo -c -o test_run_input-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-bz2_plugin.Tpo $(DEPDIR)/test_run_input-bz2_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-bz2_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-bz2_plugin.Tpo" -c -o test_run_input-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-bz2_plugin.Tpo" "$(DEPDIR)/test_run_input-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-bz2_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_run_input-bz2_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi` + + test_run_input-zip_plugin.o: src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-zip_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-zip_plugin.Tpo -c -o test_run_input-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-zip_plugin.Tpo $(DEPDIR)/test_run_input-zip_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-zip_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-zip_plugin.Tpo" -c -o test_run_input-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-zip_plugin.Tpo" "$(DEPDIR)/test_run_input-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-zip_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_run_input-zip_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c + + test_run_input-zip_plugin.obj: src/archive/zip_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-zip_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-zip_plugin.Tpo -c -o test_run_input-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-zip_plugin.Tpo $(DEPDIR)/test_run_input-zip_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-zip_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-zip_plugin.Tpo" -c -o test_run_input-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-zip_plugin.Tpo" "$(DEPDIR)/test_run_input-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-zip_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_run_input-zip_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi` + + test_run_input-iso_plugin.o: src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-iso_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-iso_plugin.Tpo -c -o test_run_input-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-iso_plugin.Tpo $(DEPDIR)/test_run_input-iso_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-iso_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-iso_plugin.Tpo" -c -o test_run_input-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-iso_plugin.Tpo" "$(DEPDIR)/test_run_input-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-iso_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_run_input-iso_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c + + test_run_input-iso_plugin.obj: src/archive/iso_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-iso_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-iso_plugin.Tpo -c -o test_run_input-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-iso_plugin.Tpo $(DEPDIR)/test_run_input-iso_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-iso_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-iso_plugin.Tpo" -c -o test_run_input-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-iso_plugin.Tpo" "$(DEPDIR)/test_run_input-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-iso_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_run_input-iso_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi` + + test_run_input-archive_api.o: src/archive_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_api.o -MD -MP -MF $(DEPDIR)/test_run_input-archive_api.Tpo -c -o test_run_input-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_api.Tpo $(DEPDIR)/test_run_input-archive_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_api.o -MD -MP -MF "$(DEPDIR)/test_run_input-archive_api.Tpo" -c -o test_run_input-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_api.Tpo" "$(DEPDIR)/test_run_input-archive_api.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_run_input-archive_api.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c + + test_run_input-archive_api.obj: src/archive_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_api.obj -MD -MP -MF $(DEPDIR)/test_run_input-archive_api.Tpo -c -o test_run_input-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_api.Tpo $(DEPDIR)/test_run_input-archive_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_api.obj -MD -MP -MF "$(DEPDIR)/test_run_input-archive_api.Tpo" -c -o test_run_input-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_api.Tpo" "$(DEPDIR)/test_run_input-archive_api.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_run_input-archive_api.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi` + + test_run_input-archive_list.o: src/archive_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_list.o -MD -MP -MF $(DEPDIR)/test_run_input-archive_list.Tpo -c -o test_run_input-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_list.Tpo $(DEPDIR)/test_run_input-archive_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_list.o -MD -MP -MF "$(DEPDIR)/test_run_input-archive_list.Tpo" -c -o test_run_input-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_list.Tpo" "$(DEPDIR)/test_run_input-archive_list.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_run_input-archive_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c + + test_run_input-archive_list.obj: src/archive_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_list.obj -MD -MP -MF $(DEPDIR)/test_run_input-archive_list.Tpo -c -o test_run_input-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_list.Tpo $(DEPDIR)/test_run_input-archive_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_list.obj -MD -MP -MF "$(DEPDIR)/test_run_input-archive_list.Tpo" -c -o test_run_input-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_list.Tpo" "$(DEPDIR)/test_run_input-archive_list.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_run_input-archive_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi` + + test_run_input-archive_input_plugin.o: src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-archive_input_plugin.Tpo -c -o test_run_input-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_input_plugin.Tpo $(DEPDIR)/test_run_input-archive_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo" -c -o test_run_input-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo" "$(DEPDIR)/test_run_input-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_run_input-archive_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c + + test_run_input-archive_input_plugin.obj: src/input/archive_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-archive_input_plugin.Tpo -c -o test_run_input-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_input_plugin.Tpo $(DEPDIR)/test_run_input-archive_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo" -c -o test_run_input-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo" "$(DEPDIR)/test_run_input-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_run_input-archive_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi` + + test_run_input-input_stream.o: src/input_stream.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-input_stream.o -MD -MP -MF $(DEPDIR)/test_run_input-input_stream.Tpo -c -o test_run_input-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-input_stream.Tpo $(DEPDIR)/test_run_input-input_stream.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-input_stream.o -MD -MP -MF "$(DEPDIR)/test_run_input-input_stream.Tpo" -c -o test_run_input-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-input_stream.Tpo" "$(DEPDIR)/test_run_input-input_stream.Po"; else rm -f "$(DEPDIR)/test_run_input-input_stream.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_run_input-input_stream.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c + + test_run_input-input_stream.obj: src/input_stream.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-input_stream.obj -MD -MP -MF $(DEPDIR)/test_run_input-input_stream.Tpo -c -o test_run_input-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-input_stream.Tpo $(DEPDIR)/test_run_input-input_stream.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-input_stream.obj -MD -MP -MF "$(DEPDIR)/test_run_input-input_stream.Tpo" -c -o test_run_input-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-input_stream.Tpo" "$(DEPDIR)/test_run_input-input_stream.Po"; else rm -f "$(DEPDIR)/test_run_input-input_stream.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_run_input-input_stream.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi` + + test_run_input-file_input_plugin.o: src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-file_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-file_input_plugin.Tpo -c -o test_run_input-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-file_input_plugin.Tpo $(DEPDIR)/test_run_input-file_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-file_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-file_input_plugin.Tpo" -c -o test_run_input-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-file_input_plugin.Tpo" "$(DEPDIR)/test_run_input-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-file_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_run_input-file_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c + + test_run_input-file_input_plugin.obj: src/input/file_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-file_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-file_input_plugin.Tpo -c -o test_run_input-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-file_input_plugin.Tpo $(DEPDIR)/test_run_input-file_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-file_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-file_input_plugin.Tpo" -c -o test_run_input-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-file_input_plugin.Tpo" "$(DEPDIR)/test_run_input-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-file_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_run_input-file_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi` + + test_run_input-curl_input_plugin.o: src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-curl_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-curl_input_plugin.Tpo -c -o test_run_input-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-curl_input_plugin.Tpo $(DEPDIR)/test_run_input-curl_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-curl_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo" -c -o test_run_input-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo" "$(DEPDIR)/test_run_input-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_run_input-curl_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c + + test_run_input-curl_input_plugin.obj: src/input/curl_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-curl_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-curl_input_plugin.Tpo -c -o test_run_input-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-curl_input_plugin.Tpo $(DEPDIR)/test_run_input-curl_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-curl_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo" -c -o test_run_input-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo" "$(DEPDIR)/test_run_input-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_run_input-curl_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi` + + test_run_input-rewind_input_plugin.o: src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-rewind_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-rewind_input_plugin.Tpo -c -o test_run_input-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-rewind_input_plugin.Tpo $(DEPDIR)/test_run_input-rewind_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-rewind_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo" -c -o test_run_input-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo" "$(DEPDIR)/test_run_input-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_run_input-rewind_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c + + test_run_input-rewind_input_plugin.obj: src/input/rewind_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-rewind_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-rewind_input_plugin.Tpo -c -o test_run_input-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-rewind_input_plugin.Tpo $(DEPDIR)/test_run_input-rewind_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-rewind_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo" -c -o test_run_input-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo" "$(DEPDIR)/test_run_input-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_run_input-rewind_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi` + + test_run_input-icy_metadata.o: src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-icy_metadata.o -MD -MP -MF $(DEPDIR)/test_run_input-icy_metadata.Tpo -c -o test_run_input-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-icy_metadata.Tpo $(DEPDIR)/test_run_input-icy_metadata.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-icy_metadata.o -MD -MP -MF "$(DEPDIR)/test_run_input-icy_metadata.Tpo" -c -o test_run_input-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-icy_metadata.Tpo" "$(DEPDIR)/test_run_input-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_run_input-icy_metadata.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_run_input-icy_metadata.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c + + test_run_input-icy_metadata.obj: src/icy_metadata.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-icy_metadata.obj -MD -MP -MF $(DEPDIR)/test_run_input-icy_metadata.Tpo -c -o test_run_input-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-icy_metadata.Tpo $(DEPDIR)/test_run_input-icy_metadata.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-icy_metadata.obj -MD -MP -MF "$(DEPDIR)/test_run_input-icy_metadata.Tpo" -c -o test_run_input-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-icy_metadata.Tpo" "$(DEPDIR)/test_run_input-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_run_input-icy_metadata.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_run_input-icy_metadata.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi` + + test_run_input-lastfm_input_plugin.o: src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-lastfm_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo -c -o test_run_input-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo $(DEPDIR)/test_run_input-lastfm_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-lastfm_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo" -c -o test_run_input-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_run_input-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_run_input-lastfm_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c + + test_run_input-lastfm_input_plugin.obj: src/input/lastfm_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-lastfm_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo -c -o test_run_input-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo $(DEPDIR)/test_run_input-lastfm_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-lastfm_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo" -c -o test_run_input-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_run_input-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_run_input-lastfm_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi` + + test_run_input-mms_input_plugin.o: src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-mms_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-mms_input_plugin.Tpo -c -o test_run_input-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-mms_input_plugin.Tpo $(DEPDIR)/test_run_input-mms_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-mms_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo" -c -o test_run_input-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo" "$(DEPDIR)/test_run_input-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_run_input-mms_input_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c + + test_run_input-mms_input_plugin.obj: src/input/mms_input_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-mms_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-mms_input_plugin.Tpo -c -o test_run_input-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-mms_input_plugin.Tpo $(DEPDIR)/test_run_input-mms_input_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-mms_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo" -c -o test_run_input-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo" "$(DEPDIR)/test_run_input-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_run_input-mms_input_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi` + + test_run_output-run_output.o: test/run_output.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-run_output.o -MD -MP -MF $(DEPDIR)/test_run_output-run_output.Tpo -c -o test_run_output-run_output.o `test -f 'test/run_output.c' || echo '$(srcdir)/'`test/run_output.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-run_output.Tpo $(DEPDIR)/test_run_output-run_output.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-run_output.o -MD -MP -MF "$(DEPDIR)/test_run_output-run_output.Tpo" -c -o test_run_output-run_output.o `test -f 'test/run_output.c' || echo '$(srcdir)/'`test/run_output.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-run_output.Tpo" "$(DEPDIR)/test_run_output-run_output.Po"; else rm -f "$(DEPDIR)/test_run_output-run_output.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_output.c' object='test_run_output-run_output.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-run_output.o `test -f 'test/run_output.c' || echo '$(srcdir)/'`test/run_output.c + + test_run_output-run_output.obj: test/run_output.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-run_output.obj -MD -MP -MF $(DEPDIR)/test_run_output-run_output.Tpo -c -o test_run_output-run_output.obj `if test -f 'test/run_output.c'; then $(CYGPATH_W) 'test/run_output.c'; else $(CYGPATH_W) '$(srcdir)/test/run_output.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-run_output.Tpo $(DEPDIR)/test_run_output-run_output.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-run_output.obj -MD -MP -MF "$(DEPDIR)/test_run_output-run_output.Tpo" -c -o test_run_output-run_output.obj `if test -f 'test/run_output.c'; then $(CYGPATH_W) 'test/run_output.c'; else $(CYGPATH_W) '$(srcdir)/test/run_output.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-run_output.Tpo" "$(DEPDIR)/test_run_output-run_output.Po"; else rm -f "$(DEPDIR)/test_run_output-run_output.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_output.c' object='test_run_output-run_output.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-run_output.obj `if test -f 'test/run_output.c'; then $(CYGPATH_W) 'test/run_output.c'; else $(CYGPATH_W) '$(srcdir)/test/run_output.c'; fi` + + test_run_output-conf.o: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-conf.o -MD -MP -MF $(DEPDIR)/test_run_output-conf.Tpo -c -o test_run_output-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-conf.Tpo $(DEPDIR)/test_run_output-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-conf.o -MD -MP -MF "$(DEPDIR)/test_run_output-conf.Tpo" -c -o test_run_output-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-conf.Tpo" "$(DEPDIR)/test_run_output-conf.Po"; else rm -f "$(DEPDIR)/test_run_output-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_output-conf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c + + test_run_output-conf.obj: src/conf.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-conf.obj -MD -MP -MF $(DEPDIR)/test_run_output-conf.Tpo -c -o test_run_output-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-conf.Tpo $(DEPDIR)/test_run_output-conf.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-conf.obj -MD -MP -MF "$(DEPDIR)/test_run_output-conf.Tpo" -c -o test_run_output-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-conf.Tpo" "$(DEPDIR)/test_run_output-conf.Po"; else rm -f "$(DEPDIR)/test_run_output-conf.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_output-conf.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi` + + test_run_output-buffer2array.o: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-buffer2array.o -MD -MP -MF $(DEPDIR)/test_run_output-buffer2array.Tpo -c -o test_run_output-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-buffer2array.Tpo $(DEPDIR)/test_run_output-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_run_output-buffer2array.Tpo" -c -o test_run_output-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-buffer2array.Tpo" "$(DEPDIR)/test_run_output-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_output-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_output-buffer2array.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c + + test_run_output-buffer2array.obj: src/buffer2array.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_run_output-buffer2array.Tpo -c -o test_run_output-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-buffer2array.Tpo $(DEPDIR)/test_run_output-buffer2array.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_run_output-buffer2array.Tpo" -c -o test_run_output-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-buffer2array.Tpo" "$(DEPDIR)/test_run_output-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_output-buffer2array.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_output-buffer2array.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi` + + test_run_output-utils.o: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-utils.o -MD -MP -MF $(DEPDIR)/test_run_output-utils.Tpo -c -o test_run_output-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-utils.Tpo $(DEPDIR)/test_run_output-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-utils.o -MD -MP -MF "$(DEPDIR)/test_run_output-utils.Tpo" -c -o test_run_output-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-utils.Tpo" "$(DEPDIR)/test_run_output-utils.Po"; else rm -f "$(DEPDIR)/test_run_output-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_output-utils.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c + + test_run_output-utils.obj: src/utils.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-utils.obj -MD -MP -MF $(DEPDIR)/test_run_output-utils.Tpo -c -o test_run_output-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-utils.Tpo $(DEPDIR)/test_run_output-utils.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-utils.obj -MD -MP -MF "$(DEPDIR)/test_run_output-utils.Tpo" -c -o test_run_output-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-utils.Tpo" "$(DEPDIR)/test_run_output-utils.Po"; else rm -f "$(DEPDIR)/test_run_output-utils.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_output-utils.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi` + + test_run_output-log.o: src/log.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-log.o -MD -MP -MF $(DEPDIR)/test_run_output-log.Tpo -c -o test_run_output-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-log.Tpo $(DEPDIR)/test_run_output-log.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-log.o -MD -MP -MF "$(DEPDIR)/test_run_output-log.Tpo" -c -o test_run_output-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-log.Tpo" "$(DEPDIR)/test_run_output-log.Po"; else rm -f "$(DEPDIR)/test_run_output-log.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_run_output-log.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c + + test_run_output-log.obj: src/log.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-log.obj -MD -MP -MF $(DEPDIR)/test_run_output-log.Tpo -c -o test_run_output-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-log.Tpo $(DEPDIR)/test_run_output-log.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-log.obj -MD -MP -MF "$(DEPDIR)/test_run_output-log.Tpo" -c -o test_run_output-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-log.Tpo" "$(DEPDIR)/test_run_output-log.Po"; else rm -f "$(DEPDIR)/test_run_output-log.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_run_output-log.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi` + + test_run_output-audio_parser.o: src/audio_parser.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-audio_parser.o -MD -MP -MF $(DEPDIR)/test_run_output-audio_parser.Tpo -c -o test_run_output-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-audio_parser.Tpo $(DEPDIR)/test_run_output-audio_parser.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-audio_parser.o -MD -MP -MF "$(DEPDIR)/test_run_output-audio_parser.Tpo" -c -o test_run_output-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-audio_parser.Tpo" "$(DEPDIR)/test_run_output-audio_parser.Po"; else rm -f "$(DEPDIR)/test_run_output-audio_parser.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='test_run_output-audio_parser.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c + + test_run_output-audio_parser.obj: src/audio_parser.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-audio_parser.obj -MD -MP -MF $(DEPDIR)/test_run_output-audio_parser.Tpo -c -o test_run_output-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-audio_parser.Tpo $(DEPDIR)/test_run_output-audio_parser.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-audio_parser.obj -MD -MP -MF "$(DEPDIR)/test_run_output-audio_parser.Tpo" -c -o test_run_output-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-audio_parser.Tpo" "$(DEPDIR)/test_run_output-audio_parser.Po"; else rm -f "$(DEPDIR)/test_run_output-audio_parser.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='test_run_output-audio_parser.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi` + + test_run_output-timer.o: src/timer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-timer.o -MD -MP -MF $(DEPDIR)/test_run_output-timer.Tpo -c -o test_run_output-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-timer.Tpo $(DEPDIR)/test_run_output-timer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-timer.o -MD -MP -MF "$(DEPDIR)/test_run_output-timer.Tpo" -c -o test_run_output-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-timer.Tpo" "$(DEPDIR)/test_run_output-timer.Po"; else rm -f "$(DEPDIR)/test_run_output-timer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_run_output-timer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c + + test_run_output-timer.obj: src/timer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-timer.obj -MD -MP -MF $(DEPDIR)/test_run_output-timer.Tpo -c -o test_run_output-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-timer.Tpo $(DEPDIR)/test_run_output-timer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-timer.obj -MD -MP -MF "$(DEPDIR)/test_run_output-timer.Tpo" -c -o test_run_output-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-timer.Tpo" "$(DEPDIR)/test_run_output-timer.Po"; else rm -f "$(DEPDIR)/test_run_output-timer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_run_output-timer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi` + + test_run_output-tag.o: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag.o -MD -MP -MF $(DEPDIR)/test_run_output-tag.Tpo -c -o test_run_output-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-tag.Tpo $(DEPDIR)/test_run_output-tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag.o -MD -MP -MF "$(DEPDIR)/test_run_output-tag.Tpo" -c -o test_run_output-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-tag.Tpo" "$(DEPDIR)/test_run_output-tag.Po"; else rm -f "$(DEPDIR)/test_run_output-tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_output-tag.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c + + test_run_output-tag.obj: src/tag.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag.obj -MD -MP -MF $(DEPDIR)/test_run_output-tag.Tpo -c -o test_run_output-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-tag.Tpo $(DEPDIR)/test_run_output-tag.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag.obj -MD -MP -MF "$(DEPDIR)/test_run_output-tag.Tpo" -c -o test_run_output-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-tag.Tpo" "$(DEPDIR)/test_run_output-tag.Po"; else rm -f "$(DEPDIR)/test_run_output-tag.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_output-tag.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi` + + test_run_output-tag_pool.o: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag_pool.o -MD -MP -MF $(DEPDIR)/test_run_output-tag_pool.Tpo -c -o test_run_output-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-tag_pool.Tpo $(DEPDIR)/test_run_output-tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag_pool.o -MD -MP -MF "$(DEPDIR)/test_run_output-tag_pool.Tpo" -c -o test_run_output-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-tag_pool.Tpo" "$(DEPDIR)/test_run_output-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_output-tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_output-tag_pool.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c + + test_run_output-tag_pool.obj: src/tag_pool.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag_pool.obj -MD -MP -MF $(DEPDIR)/test_run_output-tag_pool.Tpo -c -o test_run_output-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-tag_pool.Tpo $(DEPDIR)/test_run_output-tag_pool.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag_pool.obj -MD -MP -MF "$(DEPDIR)/test_run_output-tag_pool.Tpo" -c -o test_run_output-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-tag_pool.Tpo" "$(DEPDIR)/test_run_output-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_output-tag_pool.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_output-tag_pool.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi` + + test_run_output-fifo_buffer.o: src/fifo_buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_buffer.o -MD -MP -MF $(DEPDIR)/test_run_output-fifo_buffer.Tpo -c -o test_run_output-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-fifo_buffer.Tpo $(DEPDIR)/test_run_output-fifo_buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_buffer.o -MD -MP -MF "$(DEPDIR)/test_run_output-fifo_buffer.Tpo" -c -o test_run_output-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-fifo_buffer.Tpo" "$(DEPDIR)/test_run_output-fifo_buffer.Po"; else rm -f "$(DEPDIR)/test_run_output-fifo_buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/fifo_buffer.c' object='test_run_output-fifo_buffer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c + + test_run_output-fifo_buffer.obj: src/fifo_buffer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_buffer.obj -MD -MP -MF $(DEPDIR)/test_run_output-fifo_buffer.Tpo -c -o test_run_output-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-fifo_buffer.Tpo $(DEPDIR)/test_run_output-fifo_buffer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_buffer.obj -MD -MP -MF "$(DEPDIR)/test_run_output-fifo_buffer.Tpo" -c -o test_run_output-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-fifo_buffer.Tpo" "$(DEPDIR)/test_run_output-fifo_buffer.Po"; else rm -f "$(DEPDIR)/test_run_output-fifo_buffer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/fifo_buffer.c' object='test_run_output-fifo_buffer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi` + + test_run_output-page.o: src/page.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-page.o -MD -MP -MF $(DEPDIR)/test_run_output-page.Tpo -c -o test_run_output-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-page.Tpo $(DEPDIR)/test_run_output-page.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-page.o -MD -MP -MF "$(DEPDIR)/test_run_output-page.Tpo" -c -o test_run_output-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-page.Tpo" "$(DEPDIR)/test_run_output-page.Po"; else rm -f "$(DEPDIR)/test_run_output-page.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/page.c' object='test_run_output-page.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c + + test_run_output-page.obj: src/page.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-page.obj -MD -MP -MF $(DEPDIR)/test_run_output-page.Tpo -c -o test_run_output-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-page.Tpo $(DEPDIR)/test_run_output-page.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-page.obj -MD -MP -MF "$(DEPDIR)/test_run_output-page.Tpo" -c -o test_run_output-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-page.Tpo" "$(DEPDIR)/test_run_output-page.Po"; else rm -f "$(DEPDIR)/test_run_output-page.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/page.c' object='test_run_output-page.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi` + + test_run_output-socket_util.o: src/socket_util.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-socket_util.o -MD -MP -MF $(DEPDIR)/test_run_output-socket_util.Tpo -c -o test_run_output-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-socket_util.Tpo $(DEPDIR)/test_run_output-socket_util.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-socket_util.o -MD -MP -MF "$(DEPDIR)/test_run_output-socket_util.Tpo" -c -o test_run_output-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-socket_util.Tpo" "$(DEPDIR)/test_run_output-socket_util.Po"; else rm -f "$(DEPDIR)/test_run_output-socket_util.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/socket_util.c' object='test_run_output-socket_util.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c + + test_run_output-socket_util.obj: src/socket_util.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-socket_util.obj -MD -MP -MF $(DEPDIR)/test_run_output-socket_util.Tpo -c -o test_run_output-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-socket_util.Tpo $(DEPDIR)/test_run_output-socket_util.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-socket_util.obj -MD -MP -MF "$(DEPDIR)/test_run_output-socket_util.Tpo" -c -o test_run_output-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-socket_util.Tpo" "$(DEPDIR)/test_run_output-socket_util.Po"; else rm -f "$(DEPDIR)/test_run_output-socket_util.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/socket_util.c' object='test_run_output-socket_util.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi` + + test_run_output-output_init.o: src/output_init.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_init.o -MD -MP -MF $(DEPDIR)/test_run_output-output_init.Tpo -c -o test_run_output-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-output_init.Tpo $(DEPDIR)/test_run_output-output_init.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_init.o -MD -MP -MF "$(DEPDIR)/test_run_output-output_init.Tpo" -c -o test_run_output-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-output_init.Tpo" "$(DEPDIR)/test_run_output-output_init.Po"; else rm -f "$(DEPDIR)/test_run_output-output_init.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_init.c' object='test_run_output-output_init.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c + + test_run_output-output_init.obj: src/output_init.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_init.obj -MD -MP -MF $(DEPDIR)/test_run_output-output_init.Tpo -c -o test_run_output-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-output_init.Tpo $(DEPDIR)/test_run_output-output_init.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_init.obj -MD -MP -MF "$(DEPDIR)/test_run_output-output_init.Tpo" -c -o test_run_output-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-output_init.Tpo" "$(DEPDIR)/test_run_output-output_init.Po"; else rm -f "$(DEPDIR)/test_run_output-output_init.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_init.c' object='test_run_output-output_init.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi` + + test_run_output-output_list.o: src/output_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_list.o -MD -MP -MF $(DEPDIR)/test_run_output-output_list.Tpo -c -o test_run_output-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-output_list.Tpo $(DEPDIR)/test_run_output-output_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_list.o -MD -MP -MF "$(DEPDIR)/test_run_output-output_list.Tpo" -c -o test_run_output-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-output_list.Tpo" "$(DEPDIR)/test_run_output-output_list.Po"; else rm -f "$(DEPDIR)/test_run_output-output_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_list.c' object='test_run_output-output_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c + + test_run_output-output_list.obj: src/output_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_list.obj -MD -MP -MF $(DEPDIR)/test_run_output-output_list.Tpo -c -o test_run_output-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-output_list.Tpo $(DEPDIR)/test_run_output-output_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_list.obj -MD -MP -MF "$(DEPDIR)/test_run_output-output_list.Tpo" -c -o test_run_output-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-output_list.Tpo" "$(DEPDIR)/test_run_output-output_list.Po"; else rm -f "$(DEPDIR)/test_run_output-output_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_list.c' object='test_run_output-output_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi` + + test_run_output-encoder_list.o: src/encoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-encoder_list.o -MD -MP -MF $(DEPDIR)/test_run_output-encoder_list.Tpo -c -o test_run_output-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-encoder_list.Tpo $(DEPDIR)/test_run_output-encoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-encoder_list.o -MD -MP -MF "$(DEPDIR)/test_run_output-encoder_list.Tpo" -c -o test_run_output-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-encoder_list.Tpo" "$(DEPDIR)/test_run_output-encoder_list.Po"; else rm -f "$(DEPDIR)/test_run_output-encoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='test_run_output-encoder_list.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c + + test_run_output-encoder_list.obj: src/encoder_list.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-encoder_list.obj -MD -MP -MF $(DEPDIR)/test_run_output-encoder_list.Tpo -c -o test_run_output-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-encoder_list.Tpo $(DEPDIR)/test_run_output-encoder_list.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-encoder_list.obj -MD -MP -MF "$(DEPDIR)/test_run_output-encoder_list.Tpo" -c -o test_run_output-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-encoder_list.Tpo" "$(DEPDIR)/test_run_output-encoder_list.Po"; else rm -f "$(DEPDIR)/test_run_output-encoder_list.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='test_run_output-encoder_list.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi` + + test_run_output-vorbis_encoder.o: src/encoder/vorbis_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-vorbis_encoder.o -MD -MP -MF $(DEPDIR)/test_run_output-vorbis_encoder.Tpo -c -o test_run_output-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-vorbis_encoder.Tpo $(DEPDIR)/test_run_output-vorbis_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-vorbis_encoder.o -MD -MP -MF "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo" -c -o test_run_output-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo" "$(DEPDIR)/test_run_output-vorbis_encoder.Po"; else rm -f "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='test_run_output-vorbis_encoder.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c + + test_run_output-vorbis_encoder.obj: src/encoder/vorbis_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-vorbis_encoder.obj -MD -MP -MF $(DEPDIR)/test_run_output-vorbis_encoder.Tpo -c -o test_run_output-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-vorbis_encoder.Tpo $(DEPDIR)/test_run_output-vorbis_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-vorbis_encoder.obj -MD -MP -MF "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo" -c -o test_run_output-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo" "$(DEPDIR)/test_run_output-vorbis_encoder.Po"; else rm -f "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='test_run_output-vorbis_encoder.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi` + + test_run_output-lame_encoder.o: src/encoder/lame_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-lame_encoder.o -MD -MP -MF $(DEPDIR)/test_run_output-lame_encoder.Tpo -c -o test_run_output-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-lame_encoder.Tpo $(DEPDIR)/test_run_output-lame_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-lame_encoder.o -MD -MP -MF "$(DEPDIR)/test_run_output-lame_encoder.Tpo" -c -o test_run_output-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-lame_encoder.Tpo" "$(DEPDIR)/test_run_output-lame_encoder.Po"; else rm -f "$(DEPDIR)/test_run_output-lame_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='test_run_output-lame_encoder.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c + + test_run_output-lame_encoder.obj: src/encoder/lame_encoder.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-lame_encoder.obj -MD -MP -MF $(DEPDIR)/test_run_output-lame_encoder.Tpo -c -o test_run_output-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-lame_encoder.Tpo $(DEPDIR)/test_run_output-lame_encoder.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-lame_encoder.obj -MD -MP -MF "$(DEPDIR)/test_run_output-lame_encoder.Tpo" -c -o test_run_output-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-lame_encoder.Tpo" "$(DEPDIR)/test_run_output-lame_encoder.Po"; else rm -f "$(DEPDIR)/test_run_output-lame_encoder.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='test_run_output-lame_encoder.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi` + + test_run_output-mixer_api.o: src/mixer_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_api.o -MD -MP -MF $(DEPDIR)/test_run_output-mixer_api.Tpo -c -o test_run_output-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mixer_api.Tpo $(DEPDIR)/test_run_output-mixer_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_api.o -MD -MP -MF "$(DEPDIR)/test_run_output-mixer_api.Tpo" -c -o test_run_output-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mixer_api.Tpo" "$(DEPDIR)/test_run_output-mixer_api.Po"; else rm -f "$(DEPDIR)/test_run_output-mixer_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='test_run_output-mixer_api.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c + + test_run_output-mixer_api.obj: src/mixer_api.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_api.obj -MD -MP -MF $(DEPDIR)/test_run_output-mixer_api.Tpo -c -o test_run_output-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mixer_api.Tpo $(DEPDIR)/test_run_output-mixer_api.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_api.obj -MD -MP -MF "$(DEPDIR)/test_run_output-mixer_api.Tpo" -c -o test_run_output-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mixer_api.Tpo" "$(DEPDIR)/test_run_output-mixer_api.Po"; else rm -f "$(DEPDIR)/test_run_output-mixer_api.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='test_run_output-mixer_api.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi` + + test_run_output-mixer_control.o: src/mixer_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_control.o -MD -MP -MF $(DEPDIR)/test_run_output-mixer_control.Tpo -c -o test_run_output-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mixer_control.Tpo $(DEPDIR)/test_run_output-mixer_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_control.o -MD -MP -MF "$(DEPDIR)/test_run_output-mixer_control.Tpo" -c -o test_run_output-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mixer_control.Tpo" "$(DEPDIR)/test_run_output-mixer_control.Po"; else rm -f "$(DEPDIR)/test_run_output-mixer_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='test_run_output-mixer_control.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c + + test_run_output-mixer_control.obj: src/mixer_control.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_control.obj -MD -MP -MF $(DEPDIR)/test_run_output-mixer_control.Tpo -c -o test_run_output-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mixer_control.Tpo $(DEPDIR)/test_run_output-mixer_control.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_control.obj -MD -MP -MF "$(DEPDIR)/test_run_output-mixer_control.Tpo" -c -o test_run_output-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mixer_control.Tpo" "$(DEPDIR)/test_run_output-mixer_control.Po"; else rm -f "$(DEPDIR)/test_run_output-mixer_control.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='test_run_output-mixer_control.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi` + + test_run_output-alsa_mixer.o: src/mixer/alsa_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_mixer.o -MD -MP -MF $(DEPDIR)/test_run_output-alsa_mixer.Tpo -c -o test_run_output-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-alsa_mixer.Tpo $(DEPDIR)/test_run_output-alsa_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_mixer.o -MD -MP -MF "$(DEPDIR)/test_run_output-alsa_mixer.Tpo" -c -o test_run_output-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-alsa_mixer.Tpo" "$(DEPDIR)/test_run_output-alsa_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-alsa_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='test_run_output-alsa_mixer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c + + test_run_output-alsa_mixer.obj: src/mixer/alsa_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_mixer.obj -MD -MP -MF $(DEPDIR)/test_run_output-alsa_mixer.Tpo -c -o test_run_output-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-alsa_mixer.Tpo $(DEPDIR)/test_run_output-alsa_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_mixer.obj -MD -MP -MF "$(DEPDIR)/test_run_output-alsa_mixer.Tpo" -c -o test_run_output-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-alsa_mixer.Tpo" "$(DEPDIR)/test_run_output-alsa_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-alsa_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='test_run_output-alsa_mixer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi` + + test_run_output-oss_mixer.o: src/mixer/oss_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_mixer.o -MD -MP -MF $(DEPDIR)/test_run_output-oss_mixer.Tpo -c -o test_run_output-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-oss_mixer.Tpo $(DEPDIR)/test_run_output-oss_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_mixer.o -MD -MP -MF "$(DEPDIR)/test_run_output-oss_mixer.Tpo" -c -o test_run_output-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-oss_mixer.Tpo" "$(DEPDIR)/test_run_output-oss_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-oss_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='test_run_output-oss_mixer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c + + test_run_output-oss_mixer.obj: src/mixer/oss_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_mixer.obj -MD -MP -MF $(DEPDIR)/test_run_output-oss_mixer.Tpo -c -o test_run_output-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-oss_mixer.Tpo $(DEPDIR)/test_run_output-oss_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_mixer.obj -MD -MP -MF "$(DEPDIR)/test_run_output-oss_mixer.Tpo" -c -o test_run_output-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-oss_mixer.Tpo" "$(DEPDIR)/test_run_output-oss_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-oss_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='test_run_output-oss_mixer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi` + + test_run_output-pulse_mixer.o: src/mixer/pulse_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_mixer.o -MD -MP -MF $(DEPDIR)/test_run_output-pulse_mixer.Tpo -c -o test_run_output-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pulse_mixer.Tpo $(DEPDIR)/test_run_output-pulse_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_mixer.o -MD -MP -MF "$(DEPDIR)/test_run_output-pulse_mixer.Tpo" -c -o test_run_output-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pulse_mixer.Tpo" "$(DEPDIR)/test_run_output-pulse_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-pulse_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='test_run_output-pulse_mixer.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c + + test_run_output-pulse_mixer.obj: src/mixer/pulse_mixer.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_mixer.obj -MD -MP -MF $(DEPDIR)/test_run_output-pulse_mixer.Tpo -c -o test_run_output-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pulse_mixer.Tpo $(DEPDIR)/test_run_output-pulse_mixer.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_mixer.obj -MD -MP -MF "$(DEPDIR)/test_run_output-pulse_mixer.Tpo" -c -o test_run_output-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pulse_mixer.Tpo" "$(DEPDIR)/test_run_output-pulse_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-pulse_mixer.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='test_run_output-pulse_mixer.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi` + + test_run_output-null_plugin.o: src/output/null_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-null_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-null_plugin.Tpo -c -o test_run_output-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-null_plugin.Tpo $(DEPDIR)/test_run_output-null_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-null_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-null_plugin.Tpo" -c -o test_run_output-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-null_plugin.Tpo" "$(DEPDIR)/test_run_output-null_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-null_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/null_plugin.c' object='test_run_output-null_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c + + test_run_output-null_plugin.obj: src/output/null_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-null_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-null_plugin.Tpo -c -o test_run_output-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-null_plugin.Tpo $(DEPDIR)/test_run_output-null_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-null_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-null_plugin.Tpo" -c -o test_run_output-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-null_plugin.Tpo" "$(DEPDIR)/test_run_output-null_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-null_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/null_plugin.c' object='test_run_output-null_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi` + + test_run_output-alsa_plugin.o: src/output/alsa_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-alsa_plugin.Tpo -c -o test_run_output-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-alsa_plugin.Tpo $(DEPDIR)/test_run_output-alsa_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-alsa_plugin.Tpo" -c -o test_run_output-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-alsa_plugin.Tpo" "$(DEPDIR)/test_run_output-alsa_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-alsa_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/alsa_plugin.c' object='test_run_output-alsa_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c + + test_run_output-alsa_plugin.obj: src/output/alsa_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-alsa_plugin.Tpo -c -o test_run_output-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-alsa_plugin.Tpo $(DEPDIR)/test_run_output-alsa_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-alsa_plugin.Tpo" -c -o test_run_output-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-alsa_plugin.Tpo" "$(DEPDIR)/test_run_output-alsa_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-alsa_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/alsa_plugin.c' object='test_run_output-alsa_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi` + + test_run_output-ao_plugin.o: src/output/ao_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-ao_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-ao_plugin.Tpo -c -o test_run_output-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-ao_plugin.Tpo $(DEPDIR)/test_run_output-ao_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-ao_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-ao_plugin.Tpo" -c -o test_run_output-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-ao_plugin.Tpo" "$(DEPDIR)/test_run_output-ao_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-ao_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/ao_plugin.c' object='test_run_output-ao_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c + + test_run_output-ao_plugin.obj: src/output/ao_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-ao_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-ao_plugin.Tpo -c -o test_run_output-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-ao_plugin.Tpo $(DEPDIR)/test_run_output-ao_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-ao_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-ao_plugin.Tpo" -c -o test_run_output-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-ao_plugin.Tpo" "$(DEPDIR)/test_run_output-ao_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-ao_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/ao_plugin.c' object='test_run_output-ao_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi` + + test_run_output-fifo_plugin.o: src/output/fifo_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-fifo_plugin.Tpo -c -o test_run_output-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-fifo_plugin.Tpo $(DEPDIR)/test_run_output-fifo_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-fifo_plugin.Tpo" -c -o test_run_output-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-fifo_plugin.Tpo" "$(DEPDIR)/test_run_output-fifo_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-fifo_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/fifo_plugin.c' object='test_run_output-fifo_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c + + test_run_output-fifo_plugin.obj: src/output/fifo_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-fifo_plugin.Tpo -c -o test_run_output-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-fifo_plugin.Tpo $(DEPDIR)/test_run_output-fifo_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-fifo_plugin.Tpo" -c -o test_run_output-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-fifo_plugin.Tpo" "$(DEPDIR)/test_run_output-fifo_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-fifo_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/fifo_plugin.c' object='test_run_output-fifo_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi` + + test_run_output-pipe_output_plugin.o: src/output/pipe_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pipe_output_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-pipe_output_plugin.Tpo -c -o test_run_output-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pipe_output_plugin.Tpo $(DEPDIR)/test_run_output-pipe_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pipe_output_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo" -c -o test_run_output-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo" "$(DEPDIR)/test_run_output-pipe_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pipe_output_plugin.c' object='test_run_output-pipe_output_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c + + test_run_output-pipe_output_plugin.obj: src/output/pipe_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pipe_output_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-pipe_output_plugin.Tpo -c -o test_run_output-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pipe_output_plugin.Tpo $(DEPDIR)/test_run_output-pipe_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pipe_output_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo" -c -o test_run_output-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo" "$(DEPDIR)/test_run_output-pipe_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pipe_output_plugin.c' object='test_run_output-pipe_output_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi` + + test_run_output-jack_plugin.o: src/output/jack_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-jack_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-jack_plugin.Tpo -c -o test_run_output-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-jack_plugin.Tpo $(DEPDIR)/test_run_output-jack_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-jack_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-jack_plugin.Tpo" -c -o test_run_output-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-jack_plugin.Tpo" "$(DEPDIR)/test_run_output-jack_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-jack_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/jack_plugin.c' object='test_run_output-jack_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c + + test_run_output-jack_plugin.obj: src/output/jack_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-jack_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-jack_plugin.Tpo -c -o test_run_output-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-jack_plugin.Tpo $(DEPDIR)/test_run_output-jack_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-jack_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-jack_plugin.Tpo" -c -o test_run_output-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-jack_plugin.Tpo" "$(DEPDIR)/test_run_output-jack_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-jack_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/jack_plugin.c' object='test_run_output-jack_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi` + + test_run_output-mvp_plugin.o: src/output/mvp_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mvp_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-mvp_plugin.Tpo -c -o test_run_output-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mvp_plugin.Tpo $(DEPDIR)/test_run_output-mvp_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mvp_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-mvp_plugin.Tpo" -c -o test_run_output-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mvp_plugin.Tpo" "$(DEPDIR)/test_run_output-mvp_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-mvp_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/mvp_plugin.c' object='test_run_output-mvp_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c + + test_run_output-mvp_plugin.obj: src/output/mvp_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mvp_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-mvp_plugin.Tpo -c -o test_run_output-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mvp_plugin.Tpo $(DEPDIR)/test_run_output-mvp_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mvp_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-mvp_plugin.Tpo" -c -o test_run_output-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mvp_plugin.Tpo" "$(DEPDIR)/test_run_output-mvp_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-mvp_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/mvp_plugin.c' object='test_run_output-mvp_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi` + + test_run_output-oss_plugin.o: src/output/oss_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-oss_plugin.Tpo -c -o test_run_output-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-oss_plugin.Tpo $(DEPDIR)/test_run_output-oss_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-oss_plugin.Tpo" -c -o test_run_output-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-oss_plugin.Tpo" "$(DEPDIR)/test_run_output-oss_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-oss_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/oss_plugin.c' object='test_run_output-oss_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c + + test_run_output-oss_plugin.obj: src/output/oss_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-oss_plugin.Tpo -c -o test_run_output-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-oss_plugin.Tpo $(DEPDIR)/test_run_output-oss_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-oss_plugin.Tpo" -c -o test_run_output-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-oss_plugin.Tpo" "$(DEPDIR)/test_run_output-oss_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-oss_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/oss_plugin.c' object='test_run_output-oss_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi` + + test_run_output-osx_plugin.o: src/output/osx_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-osx_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-osx_plugin.Tpo -c -o test_run_output-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-osx_plugin.Tpo $(DEPDIR)/test_run_output-osx_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-osx_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-osx_plugin.Tpo" -c -o test_run_output-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-osx_plugin.Tpo" "$(DEPDIR)/test_run_output-osx_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-osx_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/osx_plugin.c' object='test_run_output-osx_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c + + test_run_output-osx_plugin.obj: src/output/osx_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-osx_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-osx_plugin.Tpo -c -o test_run_output-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-osx_plugin.Tpo $(DEPDIR)/test_run_output-osx_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-osx_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-osx_plugin.Tpo" -c -o test_run_output-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-osx_plugin.Tpo" "$(DEPDIR)/test_run_output-osx_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-osx_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/osx_plugin.c' object='test_run_output-osx_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi` + + test_run_output-pulse_plugin.o: src/output/pulse_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-pulse_plugin.Tpo -c -o test_run_output-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pulse_plugin.Tpo $(DEPDIR)/test_run_output-pulse_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-pulse_plugin.Tpo" -c -o test_run_output-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pulse_plugin.Tpo" "$(DEPDIR)/test_run_output-pulse_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-pulse_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pulse_plugin.c' object='test_run_output-pulse_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c + + test_run_output-pulse_plugin.obj: src/output/pulse_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-pulse_plugin.Tpo -c -o test_run_output-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pulse_plugin.Tpo $(DEPDIR)/test_run_output-pulse_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-pulse_plugin.Tpo" -c -o test_run_output-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pulse_plugin.Tpo" "$(DEPDIR)/test_run_output-pulse_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-pulse_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pulse_plugin.c' object='test_run_output-pulse_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi` + + test_run_output-shout_plugin.o: src/output/shout_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-shout_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-shout_plugin.Tpo -c -o test_run_output-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-shout_plugin.Tpo $(DEPDIR)/test_run_output-shout_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-shout_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-shout_plugin.Tpo" -c -o test_run_output-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-shout_plugin.Tpo" "$(DEPDIR)/test_run_output-shout_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-shout_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/shout_plugin.c' object='test_run_output-shout_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c + + test_run_output-shout_plugin.obj: src/output/shout_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-shout_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-shout_plugin.Tpo -c -o test_run_output-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-shout_plugin.Tpo $(DEPDIR)/test_run_output-shout_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-shout_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-shout_plugin.Tpo" -c -o test_run_output-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-shout_plugin.Tpo" "$(DEPDIR)/test_run_output-shout_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-shout_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/shout_plugin.c' object='test_run_output-shout_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi` + + test_run_output-icy_server.o: src/icy_server.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-icy_server.o -MD -MP -MF $(DEPDIR)/test_run_output-icy_server.Tpo -c -o test_run_output-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-icy_server.Tpo $(DEPDIR)/test_run_output-icy_server.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-icy_server.o -MD -MP -MF "$(DEPDIR)/test_run_output-icy_server.Tpo" -c -o test_run_output-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-icy_server.Tpo" "$(DEPDIR)/test_run_output-icy_server.Po"; else rm -f "$(DEPDIR)/test_run_output-icy_server.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_server.c' object='test_run_output-icy_server.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c + + test_run_output-icy_server.obj: src/icy_server.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-icy_server.obj -MD -MP -MF $(DEPDIR)/test_run_output-icy_server.Tpo -c -o test_run_output-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-icy_server.Tpo $(DEPDIR)/test_run_output-icy_server.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-icy_server.obj -MD -MP -MF "$(DEPDIR)/test_run_output-icy_server.Tpo" -c -o test_run_output-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-icy_server.Tpo" "$(DEPDIR)/test_run_output-icy_server.Po"; else rm -f "$(DEPDIR)/test_run_output-icy_server.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_server.c' object='test_run_output-icy_server.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi` + + test_run_output-httpd_client.o: src/output/httpd_client.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_client.o -MD -MP -MF $(DEPDIR)/test_run_output-httpd_client.Tpo -c -o test_run_output-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-httpd_client.Tpo $(DEPDIR)/test_run_output-httpd_client.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_client.o -MD -MP -MF "$(DEPDIR)/test_run_output-httpd_client.Tpo" -c -o test_run_output-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-httpd_client.Tpo" "$(DEPDIR)/test_run_output-httpd_client.Po"; else rm -f "$(DEPDIR)/test_run_output-httpd_client.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_client.c' object='test_run_output-httpd_client.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c + + test_run_output-httpd_client.obj: src/output/httpd_client.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_client.obj -MD -MP -MF $(DEPDIR)/test_run_output-httpd_client.Tpo -c -o test_run_output-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-httpd_client.Tpo $(DEPDIR)/test_run_output-httpd_client.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_client.obj -MD -MP -MF "$(DEPDIR)/test_run_output-httpd_client.Tpo" -c -o test_run_output-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-httpd_client.Tpo" "$(DEPDIR)/test_run_output-httpd_client.Po"; else rm -f "$(DEPDIR)/test_run_output-httpd_client.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_client.c' object='test_run_output-httpd_client.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi` + + test_run_output-httpd_output_plugin.o: src/output/httpd_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_output_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-httpd_output_plugin.Tpo -c -o test_run_output-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-httpd_output_plugin.Tpo $(DEPDIR)/test_run_output-httpd_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_output_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo" -c -o test_run_output-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo" "$(DEPDIR)/test_run_output-httpd_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_output_plugin.c' object='test_run_output-httpd_output_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c + + test_run_output-httpd_output_plugin.obj: src/output/httpd_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_output_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-httpd_output_plugin.Tpo -c -o test_run_output-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-httpd_output_plugin.Tpo $(DEPDIR)/test_run_output-httpd_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_output_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo" -c -o test_run_output-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo" "$(DEPDIR)/test_run_output-httpd_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_output_plugin.c' object='test_run_output-httpd_output_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi` + + test_run_output-solaris_output_plugin.o: src/output/solaris_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-solaris_output_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-solaris_output_plugin.Tpo -c -o test_run_output-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-solaris_output_plugin.Tpo $(DEPDIR)/test_run_output-solaris_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-solaris_output_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo" -c -o test_run_output-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo" "$(DEPDIR)/test_run_output-solaris_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/solaris_output_plugin.c' object='test_run_output-solaris_output_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c + + test_run_output-solaris_output_plugin.obj: src/output/solaris_output_plugin.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-solaris_output_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-solaris_output_plugin.Tpo -c -o test_run_output-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-solaris_output_plugin.Tpo $(DEPDIR)/test_run_output-solaris_output_plugin.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-solaris_output_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo" -c -o test_run_output-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo" "$(DEPDIR)/test_run_output-solaris_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/solaris_output_plugin.c' object='test_run_output-solaris_output_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi` + + software_volume.o: test/software_volume.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT software_volume.o -MD -MP -MF $(DEPDIR)/software_volume.Tpo -c -o software_volume.o `test -f 'test/software_volume.c' || echo '$(srcdir)/'`test/software_volume.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/software_volume.Tpo $(DEPDIR)/software_volume.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT software_volume.o -MD -MP -MF "$(DEPDIR)/software_volume.Tpo" -c -o software_volume.o `test -f 'test/software_volume.c' || echo '$(srcdir)/'`test/software_volume.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/software_volume.Tpo" "$(DEPDIR)/software_volume.Po"; else rm -f "$(DEPDIR)/software_volume.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/software_volume.c' object='software_volume.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o software_volume.o `test -f 'test/software_volume.c' || echo '$(srcdir)/'`test/software_volume.c + + software_volume.obj: test/software_volume.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT software_volume.obj -MD -MP -MF $(DEPDIR)/software_volume.Tpo -c -o software_volume.obj `if test -f 'test/software_volume.c'; then $(CYGPATH_W) 'test/software_volume.c'; else $(CYGPATH_W) '$(srcdir)/test/software_volume.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/software_volume.Tpo $(DEPDIR)/software_volume.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT software_volume.obj -MD -MP -MF "$(DEPDIR)/software_volume.Tpo" -c -o software_volume.obj `if test -f 'test/software_volume.c'; then $(CYGPATH_W) 'test/software_volume.c'; else $(CYGPATH_W) '$(srcdir)/test/software_volume.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/software_volume.Tpo" "$(DEPDIR)/software_volume.Po"; else rm -f "$(DEPDIR)/software_volume.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/software_volume.c' object='software_volume.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o software_volume.obj `if test -f 'test/software_volume.c'; then $(CYGPATH_W) 'test/software_volume.c'; else $(CYGPATH_W) '$(srcdir)/test/software_volume.c'; fi` + + pcm_volume.o: src/pcm_volume.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcm_volume.o -MD -MP -MF $(DEPDIR)/pcm_volume.Tpo -c -o pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pcm_volume.Tpo $(DEPDIR)/pcm_volume.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcm_volume.o -MD -MP -MF "$(DEPDIR)/pcm_volume.Tpo" -c -o pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/pcm_volume.Tpo" "$(DEPDIR)/pcm_volume.Po"; else rm -f "$(DEPDIR)/pcm_volume.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_volume.c' object='pcm_volume.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c + + pcm_volume.obj: src/pcm_volume.c +-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcm_volume.obj -MD -MP -MF $(DEPDIR)/pcm_volume.Tpo -c -o pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi` +-@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pcm_volume.Tpo $(DEPDIR)/pcm_volume.Po ++@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcm_volume.obj -MD -MP -MF "$(DEPDIR)/pcm_volume.Tpo" -c -o pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi`; \ ++@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/pcm_volume.Tpo" "$(DEPDIR)/pcm_volume.Po"; else rm -f "$(DEPDIR)/pcm_volume.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_volume.c' object='pcm_volume.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi` + + .cxx.o: +-@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ++@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< + + .cxx.obj: +-@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ++@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ ++@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + + src_mpd-sidplay_plugin.o: src/decoder/sidplay_plugin.cxx +-@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src_mpd-sidplay_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-sidplay_plugin.Tpo -c -o src_mpd-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx +-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sidplay_plugin.Tpo $(DEPDIR)/src_mpd-sidplay_plugin.Po ++@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src_mpd-sidplay_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo" -c -o src_mpd-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx; \ ++@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo" "$(DEPDIR)/src_mpd-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='src_mpd-sidplay_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src_mpd-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx + + src_mpd-sidplay_plugin.obj: src/decoder/sidplay_plugin.cxx +-@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src_mpd-sidplay_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-sidplay_plugin.Tpo -c -o src_mpd-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi` +-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sidplay_plugin.Tpo $(DEPDIR)/src_mpd-sidplay_plugin.Po ++@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src_mpd-sidplay_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo" -c -o src_mpd-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`; \ ++@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo" "$(DEPDIR)/src_mpd-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='src_mpd-sidplay_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src_mpd-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi` + + test_read_tags-sidplay_plugin.o: src/decoder/sidplay_plugin.cxx +-@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_read_tags-sidplay_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-sidplay_plugin.Tpo -c -o test_read_tags-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx +-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-sidplay_plugin.Tpo $(DEPDIR)/test_read_tags-sidplay_plugin.Po ++@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_read_tags-sidplay_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo" -c -o test_read_tags-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx; \ ++@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo" "$(DEPDIR)/test_read_tags-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='test_read_tags-sidplay_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o test_read_tags-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx + + test_read_tags-sidplay_plugin.obj: src/decoder/sidplay_plugin.cxx +-@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_read_tags-sidplay_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-sidplay_plugin.Tpo -c -o test_read_tags-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi` +-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-sidplay_plugin.Tpo $(DEPDIR)/test_read_tags-sidplay_plugin.Po ++@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_read_tags-sidplay_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo" -c -o test_read_tags-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`; \ ++@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo" "$(DEPDIR)/test_read_tags-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='test_read_tags-sidplay_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o test_read_tags-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi` + + test_run_decoder-sidplay_plugin.o: src/decoder/sidplay_plugin.cxx +-@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_run_decoder-sidplay_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo -c -o test_run_decoder-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx +-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo $(DEPDIR)/test_run_decoder-sidplay_plugin.Po ++@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_run_decoder-sidplay_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo" -c -o test_run_decoder-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx; \ ++@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo" "$(DEPDIR)/test_run_decoder-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='test_run_decoder-sidplay_plugin.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o test_run_decoder-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx + + test_run_decoder-sidplay_plugin.obj: src/decoder/sidplay_plugin.cxx +-@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_run_decoder-sidplay_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo -c -o test_run_decoder-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi` +-@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo $(DEPDIR)/test_run_decoder-sidplay_plugin.Po ++@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_run_decoder-sidplay_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo" -c -o test_run_decoder-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`; \ ++@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo" "$(DEPDIR)/test_run_decoder-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo"; exit 1; fi + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='test_run_decoder-sidplay_plugin.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o test_run_decoder-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi` +-install-man1: $(man_MANS) ++uninstall-info-am: ++install-man1: $(man1_MANS) $(man_MANS) + @$(NORMAL_INSTALL) +- test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)" +- @list=''; test -n "$(man1dir)" || exit 0; \ +- { for i in $$list; do echo "$$i"; done; \ +- l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ +- sed -n '/\.1[a-z]*$$/p'; \ +- } | while read p; do \ +- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ +- echo "$$d$$p"; echo "$$p"; \ +- done | \ +- sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ +- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ +- sed 'N;N;s,\n, ,g' | { \ +- list=; while read file base inst; do \ +- if test "$$base" = "$$inst"; then list="$$list $$file"; else \ +- echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ +- $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ +- fi; \ ++ test -z "$(man1dir)" || $(mkdir_p) "$(DESTDIR)$(man1dir)" ++ @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ ++ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ ++ for i in $$l2; do \ ++ case "$$i" in \ ++ *.1*) list="$$list $$i" ;; \ ++ esac; \ + done; \ +- for i in $$list; do echo "$$i"; done | $(am__base_list) | \ +- while read files; do \ +- test -z "$$files" || { \ +- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ +- $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ +- done; } +- ++ for i in $$list; do \ ++ if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ ++ else file=$$i; fi; \ ++ ext=`echo $$i | sed -e 's/^.*\\.//'`; \ ++ case "$$ext" in \ ++ 1*) ;; \ ++ *) ext='1' ;; \ ++ esac; \ ++ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ ++ inst=`echo $$inst | sed -e 's/^.*\///'`; \ ++ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ ++ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ ++ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst"; \ ++ done + uninstall-man1: + @$(NORMAL_UNINSTALL) +- @list=''; test -n "$(man1dir)" || exit 0; \ +- files=`{ for i in $$list; do echo "$$i"; done; \ +- l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ +- sed -n '/\.1[a-z]*$$/p'; \ +- } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ +- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ +- test -z "$$files" || { \ +- echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \ +- cd "$(DESTDIR)$(man1dir)" && rm -f $$files; } +-install-man5: $(man_MANS) ++ @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ ++ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ ++ for i in $$l2; do \ ++ case "$$i" in \ ++ *.1*) list="$$list $$i" ;; \ ++ esac; \ ++ done; \ ++ for i in $$list; do \ ++ ext=`echo $$i | sed -e 's/^.*\\.//'`; \ ++ case "$$ext" in \ ++ 1*) ;; \ ++ *) ext='1' ;; \ ++ esac; \ ++ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ ++ inst=`echo $$inst | sed -e 's/^.*\///'`; \ ++ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ ++ echo " rm -f '$(DESTDIR)$(man1dir)/$$inst'"; \ ++ rm -f "$(DESTDIR)$(man1dir)/$$inst"; \ ++ done ++install-man5: $(man5_MANS) $(man_MANS) + @$(NORMAL_INSTALL) +- test -z "$(man5dir)" || $(MKDIR_P) "$(DESTDIR)$(man5dir)" +- @list=''; test -n "$(man5dir)" || exit 0; \ +- { for i in $$list; do echo "$$i"; done; \ +- l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ +- sed -n '/\.5[a-z]*$$/p'; \ +- } | while read p; do \ +- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ +- echo "$$d$$p"; echo "$$p"; \ +- done | \ +- sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \ +- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ +- sed 'N;N;s,\n, ,g' | { \ +- list=; while read file base inst; do \ +- if test "$$base" = "$$inst"; then list="$$list $$file"; else \ +- echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \ +- $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst" || exit $$?; \ +- fi; \ ++ test -z "$(man5dir)" || $(mkdir_p) "$(DESTDIR)$(man5dir)" ++ @list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \ ++ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ ++ for i in $$l2; do \ ++ case "$$i" in \ ++ *.5*) list="$$list $$i" ;; \ ++ esac; \ + done; \ +- for i in $$list; do echo "$$i"; done | $(am__base_list) | \ +- while read files; do \ +- test -z "$$files" || { \ +- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man5dir)'"; \ +- $(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \ +- done; } +- ++ for i in $$list; do \ ++ if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ ++ else file=$$i; fi; \ ++ ext=`echo $$i | sed -e 's/^.*\\.//'`; \ ++ case "$$ext" in \ ++ 5*) ;; \ ++ *) ext='5' ;; \ ++ esac; \ ++ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ ++ inst=`echo $$inst | sed -e 's/^.*\///'`; \ ++ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ ++ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \ ++ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst"; \ ++ done + uninstall-man5: + @$(NORMAL_UNINSTALL) +- @list=''; test -n "$(man5dir)" || exit 0; \ +- files=`{ for i in $$list; do echo "$$i"; done; \ +- l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ +- sed -n '/\.5[a-z]*$$/p'; \ +- } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \ +- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ +- test -z "$$files" || { \ +- echo " ( cd '$(DESTDIR)$(man5dir)' && rm -f" $$files ")"; \ +- cd "$(DESTDIR)$(man5dir)" && rm -f $$files; } ++ @list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \ ++ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ ++ for i in $$l2; do \ ++ case "$$i" in \ ++ *.5*) list="$$list $$i" ;; \ ++ esac; \ ++ done; \ ++ for i in $$list; do \ ++ ext=`echo $$i | sed -e 's/^.*\\.//'`; \ ++ case "$$ext" in \ ++ 5*) ;; \ ++ *) ext='5' ;; \ ++ esac; \ ++ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ ++ inst=`echo $$inst | sed -e 's/^.*\///'`; \ ++ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ ++ echo " rm -f '$(DESTDIR)$(man5dir)/$$inst'"; \ ++ rm -f "$(DESTDIR)$(man5dir)/$$inst"; \ ++ done + install-developerDATA: $(developer_DATA) + @$(NORMAL_INSTALL) +- test -z "$(developerdir)" || $(MKDIR_P) "$(DESTDIR)$(developerdir)" +- @list='$(developer_DATA)'; test -n "$(developerdir)" || list=; \ +- for p in $$list; do \ ++ test -z "$(developerdir)" || $(mkdir_p) "$(DESTDIR)$(developerdir)" ++ @list='$(developer_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- echo "$$d$$p"; \ +- done | $(am__base_list) | \ +- while read files; do \ +- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(developerdir)'"; \ +- $(INSTALL_DATA) $$files "$(DESTDIR)$(developerdir)" || exit $$?; \ ++ f=$(am__strip_dir) \ ++ echo " $(developerDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(developerdir)/$$f'"; \ ++ $(developerDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(developerdir)/$$f"; \ + done + + uninstall-developerDATA: + @$(NORMAL_UNINSTALL) +- @list='$(developer_DATA)'; test -n "$(developerdir)" || list=; \ +- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ +- test -n "$$files" || exit 0; \ +- echo " ( cd '$(DESTDIR)$(developerdir)' && rm -f" $$files ")"; \ +- cd "$(DESTDIR)$(developerdir)" && rm -f $$files ++ @list='$(developer_DATA)'; for p in $$list; do \ ++ f=$(am__strip_dir) \ ++ echo " rm -f '$(DESTDIR)$(developerdir)/$$f'"; \ ++ rm -f "$(DESTDIR)$(developerdir)/$$f"; \ ++ done + install-docDATA: $(doc_DATA) + @$(NORMAL_INSTALL) +- test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)" +- @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ +- for p in $$list; do \ ++ test -z "$(docdir)" || $(mkdir_p) "$(DESTDIR)$(docdir)" ++ @list='$(doc_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- echo "$$d$$p"; \ +- done | $(am__base_list) | \ +- while read files; do \ +- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ +- $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ ++ f=$(am__strip_dir) \ ++ echo " $(docDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(docdir)/$$f'"; \ ++ $(docDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \ + done + + uninstall-docDATA: + @$(NORMAL_UNINSTALL) +- @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ +- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ +- test -n "$$files" || exit 0; \ +- echo " ( cd '$(DESTDIR)$(docdir)' && rm -f" $$files ")"; \ +- cd "$(DESTDIR)$(docdir)" && rm -f $$files ++ @list='$(doc_DATA)'; for p in $$list; do \ ++ f=$(am__strip_dir) \ ++ echo " rm -f '$(DESTDIR)$(docdir)/$$f'"; \ ++ rm -f "$(DESTDIR)$(docdir)/$$f"; \ ++ done + install-protocolDATA: $(protocol_DATA) + @$(NORMAL_INSTALL) +- test -z "$(protocoldir)" || $(MKDIR_P) "$(DESTDIR)$(protocoldir)" +- @list='$(protocol_DATA)'; test -n "$(protocoldir)" || list=; \ +- for p in $$list; do \ ++ test -z "$(protocoldir)" || $(mkdir_p) "$(DESTDIR)$(protocoldir)" ++ @list='$(protocol_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- echo "$$d$$p"; \ +- done | $(am__base_list) | \ +- while read files; do \ +- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(protocoldir)'"; \ +- $(INSTALL_DATA) $$files "$(DESTDIR)$(protocoldir)" || exit $$?; \ ++ f=$(am__strip_dir) \ ++ echo " $(protocolDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(protocoldir)/$$f'"; \ ++ $(protocolDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(protocoldir)/$$f"; \ + done + + uninstall-protocolDATA: + @$(NORMAL_UNINSTALL) +- @list='$(protocol_DATA)'; test -n "$(protocoldir)" || list=; \ +- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ +- test -n "$$files" || exit 0; \ +- echo " ( cd '$(DESTDIR)$(protocoldir)' && rm -f" $$files ")"; \ +- cd "$(DESTDIR)$(protocoldir)" && rm -f $$files ++ @list='$(protocol_DATA)'; for p in $$list; do \ ++ f=$(am__strip_dir) \ ++ echo " rm -f '$(DESTDIR)$(protocoldir)/$$f'"; \ ++ rm -f "$(DESTDIR)$(protocoldir)/$$f"; \ ++ done + install-userDATA: $(user_DATA) + @$(NORMAL_INSTALL) +- test -z "$(userdir)" || $(MKDIR_P) "$(DESTDIR)$(userdir)" +- @list='$(user_DATA)'; test -n "$(userdir)" || list=; \ +- for p in $$list; do \ ++ test -z "$(userdir)" || $(mkdir_p) "$(DESTDIR)$(userdir)" ++ @list='$(user_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ +- echo "$$d$$p"; \ +- done | $(am__base_list) | \ +- while read files; do \ +- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(userdir)'"; \ +- $(INSTALL_DATA) $$files "$(DESTDIR)$(userdir)" || exit $$?; \ ++ f=$(am__strip_dir) \ ++ echo " $(userDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(userdir)/$$f'"; \ ++ $(userDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(userdir)/$$f"; \ + done + + uninstall-userDATA: + @$(NORMAL_UNINSTALL) +- @list='$(user_DATA)'; test -n "$(userdir)" || list=; \ +- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ +- test -n "$$files" || exit 0; \ +- echo " ( cd '$(DESTDIR)$(userdir)' && rm -f" $$files ")"; \ +- cd "$(DESTDIR)$(userdir)" && rm -f $$files ++ @list='$(user_DATA)'; for p in $$list; do \ ++ f=$(am__strip_dir) \ ++ echo " rm -f '$(DESTDIR)$(userdir)/$$f'"; \ ++ rm -f "$(DESTDIR)$(userdir)/$$f"; \ ++ done + + 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; }; }'`; \ ++ $(AWK) ' { files[$$0] = 1; } \ ++ END { for (i in files) print i; }'`; \ + mkid -fID $$unique + tags: TAGS + + TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) +- set x; \ ++ tags=; \ + here=`pwd`; \ + 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 \ ++ $(AWK) ' { files[$$0] = 1; } \ ++ END { for (i in files) print i; }'`; \ ++ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ +- if test $$# -gt 0; then \ +- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- "$$@" $$unique; \ +- else \ +- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ +- $$unique; \ +- fi; \ ++ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ ++ $$tags $$unique; \ + fi + ctags: CTAGS + CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) ++ tags=; \ ++ here=`pwd`; \ + 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" \ ++ $(AWK) ' { files[$$0] = 1; } \ ++ END { for (i in files) print i; }'`; \ ++ test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ +- $$unique ++ $$tags $$unique + + GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ +- && $(am__cd) $(top_srcdir) \ +- && gtags -i $(GTAGS_ARGS) "$$here" ++ && cd $(top_srcdir) \ ++ && gtags -i $(GTAGS_ARGS) $$here + + distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + + distdir: $(DISTFILES) +- @list='$(MANS)'; if test -n "$$list"; then \ +- list=`for p in $$list; do \ +- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ +- if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ +- if test -n "$$list" && \ +- grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ +- echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ +- grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ +- echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ +- echo " typically \`make maintainer-clean' will remove them" >&2; \ +- exit 1; \ +- else :; fi; \ +- else :; fi + $(am__remove_distdir) +- test -d "$(distdir)" || mkdir "$(distdir)" +- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ +- list='$(DISTFILES)'; \ +- dist_files=`for file in $$list; do echo $$file; done | \ +- sed -e "s|^$$srcdirstrip/||;t" \ +- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ +- case $$dist_files in \ +- */*) $(MKDIR_P) `echo "$$dist_files" | \ +- sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ +- sort -u` ;; \ +- esac; \ +- for file in $$dist_files; do \ ++ mkdir $(distdir) ++ $(mkdir_p) $(distdir)/doc $(distdir)/m4 $(distdir)/scripts ++ @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ++ list='$(DISTFILES)'; for file in $$list; do \ ++ case $$file in \ ++ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ++ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ++ esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ ++ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ ++ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ ++ dir="/$$dir"; \ ++ $(mkdir_p) "$(distdir)$$dir"; \ ++ else \ ++ dir=''; \ ++ fi; \ + if test -d $$d/$$file; then \ +- dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test -d "$(distdir)/$$file"; then \ +- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ +- fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ +- cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ +- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ ++ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ +- cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ ++ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ +- test -f "$(distdir)/$$file" \ +- || cp -p $$d/$$file "$(distdir)/$$file" \ ++ test -f $(distdir)/$$file \ ++ || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +- -test -n "$(am__skip_mode_fix)" \ +- || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ ++ -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ +- ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ +- || chmod -R a+r "$(distdir)" ++ ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ ++ || chmod -R a+r $(distdir) + dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) +@@ -6857,14 +6908,6 @@ + tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 + $(am__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 -c >$(distdir).tar.xz +- $(am__remove_distdir) +- + dist-tarZ: distdir + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__remove_distdir) +@@ -6892,10 +6935,6 @@ + GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ +- *.tar.lzma*) \ +- unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ +- *.tar.xz*) \ +- xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ +@@ -6907,11 +6946,9 @@ + 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 \ ++ && cd $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) \ +@@ -6933,15 +6970,13 @@ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ +- && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ +- && cd "$$am__cwd" \ +- || exit 1 ++ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck + $(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' ++ sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}' + distuninstallcheck: +- @$(am__cd) '$(distuninstallcheck_dir)' \ ++ @cd $(distuninstallcheck_dir) \ + && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ +@@ -6964,7 +6999,7 @@ + all-am: Makefile $(PROGRAMS) $(MANS) $(DATA) config.h all-local + installdirs: + for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(developerdir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(protocoldir)" "$(DESTDIR)$(userdir)"; do \ +- test -z "$$dir" || $(MKDIR_P) "$$dir"; \ ++ test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done + install: install-am + install-exec: install-exec-am +@@ -6986,7 +7021,6 @@ + + distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) +- -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -rm -f src/$(am__dirstamp) + -rm -f test/$(am__dirstamp) + +@@ -7013,8 +7047,6 @@ + + html: html-am + +-html-am: +- + info: info-am + + info-am: +@@ -7023,30 +7055,12 @@ + install-docDATA install-man install-protocolDATA \ + install-userDATA + +-install-dvi: install-dvi-am +- +-install-dvi-am: +- + install-exec-am: install-binPROGRAMS + +-install-html: install-html-am +- +-install-html-am: +- + install-info: install-info-am + +-install-info-am: +- + install-man: install-man1 install-man5 + +-install-pdf: install-pdf-am +- +-install-pdf-am: +- +-install-ps: install-ps-am +- +-install-ps-am: +- + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -7069,33 +7083,29 @@ + ps-am: + + uninstall-am: uninstall-binPROGRAMS uninstall-developerDATA \ +- uninstall-docDATA uninstall-man uninstall-protocolDATA \ +- uninstall-userDATA ++ uninstall-docDATA uninstall-info-am uninstall-man \ ++ uninstall-protocolDATA uninstall-userDATA + + uninstall-man: uninstall-man1 uninstall-man5 + +-.MAKE: all install-am install-strip +- + .PHONY: CTAGS GTAGS all all-am all-local am--refresh check check-am \ + clean clean-binPROGRAMS clean-generic clean-local \ + clean-noinstPROGRAMS ctags dist dist-all dist-bzip2 dist-gzip \ +- dist-lzma dist-shar dist-tarZ dist-xz dist-zip distcheck \ +- distclean distclean-compile distclean-generic distclean-hdr \ ++ dist-shar dist-tarZ dist-zip distcheck distclean \ ++ distclean-compile distclean-generic distclean-hdr \ + distclean-tags distcleancheck distdir distuninstallcheck dvi \ + dvi-am html html-am info info-am install install-am \ + install-binPROGRAMS install-data install-data-am \ + install-data-local install-developerDATA install-docDATA \ +- install-dvi install-dvi-am install-exec install-exec-am \ +- install-html install-html-am install-info install-info-am \ +- install-man install-man1 install-man5 install-pdf \ +- install-pdf-am install-protocolDATA install-ps install-ps-am \ ++ install-exec install-exec-am install-info install-info-am \ ++ install-man install-man1 install-man5 install-protocolDATA \ + install-strip install-userDATA installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ + ps ps-am tags uninstall uninstall-am uninstall-binPROGRAMS \ +- uninstall-developerDATA uninstall-docDATA uninstall-man \ +- uninstall-man1 uninstall-man5 uninstall-protocolDATA \ +- uninstall-userDATA ++ uninstall-developerDATA uninstall-docDATA uninstall-info-am \ ++ uninstall-man uninstall-man1 uninstall-man5 \ ++ uninstall-protocolDATA uninstall-userDATA + + sparse-check: + $(SPARSE) -I. $(src_mpd_CFLAGS) $(src_mpd_CPPFLAGS) $(SPARSE_FLAGS) $(SPARSE_CPPFLAGS) $(filter-out %.cxx,$(src_mpd_SOURCES)) +@@ -7129,7 +7139,6 @@ + @ENABLE_DOCUMENTATION_TRUE@ --include=developer --include=developer/** \ + @ENABLE_DOCUMENTATION_TRUE@ --include=api --include=api/** \ + @ENABLE_DOCUMENTATION_TRUE@ --exclude=* +- + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: diff --git a/package/mpd/patches/patch-m4_lame_m4 b/package/mpd/patches/patch-m4_lame_m4 deleted file mode 100644 index b2f009293..000000000 --- a/package/mpd/patches/patch-m4_lame_m4 +++ /dev/null @@ -1,20 +0,0 @@ ---- mpd-0.15.6.orig/m4/lame.m4 2009-11-19 03:47:51.000000000 +0100 -+++ mpd-0.15.6/m4/lame.m4 2009-11-23 23:06:27.000000000 +0100 -@@ -25,8 +25,6 @@ if test "x$lame_prefix" != "xno" ; then - LAME_LIBS="-L$lame_libraries" - elif test "x$lame_prefix" != "x" ; then - LAME_LIBS="-L$lame_prefix/lib" -- elif test "x$prefix" != "xNONE" ; then -- LAME_LIBS="-L$prefix/lib" - fi - - LAME_LIBS="$LAME_LIBS -lmp3lame -lm" -@@ -35,8 +33,6 @@ if test "x$lame_prefix" != "xno" ; then - LAME_CFLAGS="-I$lame_includes" - elif test "x$lame_prefix" != "x" ; then - LAME_CFLAGS="-I$lame_prefix/include" -- elif test "x$prefix" != "xNONE"; then -- LAME_CFLAGS="-I$prefix/include" - fi - - AC_MSG_CHECKING(for liblame) |