summaryrefslogtreecommitdiff
path: root/libc/inet/ntohl.c
blob: 1a5863286316eab1f00b78fd19dbad7e5d8a54fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* vi: set sw=4 ts=4:
 * Functions to convert between host and network byte order.
 *
 * Copyright (C) 2003-2006 by Erik Andersen <andersen@uclibc.org>
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include <stdint.h>
#include <endian.h>
#include <byteswap.h>
#include <netinet/in.h>

#undef ntohl
#undef ntohs
#undef htonl
#undef htons

#if __BYTE_ORDER == __BIG_ENDIAN
uint32_t ntohl (uint32_t x)
{
	return x;
}

uint16_t ntohs (uint16_t x)
{
	return x;
}

uint32_t htonl (uint32_t x)
{
	return x;
}

uint16_t htons (uint16_t x)
{
	return x;
}
#elif __BYTE_ORDER == __LITTLE_ENDIAN
uint32_t ntohl (uint32_t x)
{
	return __bswap_32(x);
}

uint16_t ntohs (uint16_t x)
{
	return __bswap_16(x);
}

uint32_t htonl (uint32_t x)
{
	return __bswap_32(x);
}

uint16_t htons (uint16_t x)
{
	return __bswap_16(x);
}
#else
#error "You seem to have an unsupported byteorder"
#endif

libc_hidden_def(ntohl)
libc_hidden_def(ntohs)
libc_hidden_def(htonl)
libc_hidden_def(htons)
lass='none' style='width: 100.0%;'/> -rw-r--r--package/apr-util/patches/uri_delim.patch21
-rw-r--r--package/apr/Makefile27
-rw-r--r--package/apr/patches/patch-include_apr_want_h16
-rw-r--r--package/asterisk/Makefile4
-rw-r--r--package/asterisk/patches/patch-Makefile13
-rw-r--r--package/asterisk/patches/patch-apps_app_followme_c26
-rw-r--r--package/curl/Makefile4
-rw-r--r--package/davfs2/Makefile18
-rw-r--r--package/davfs2/patches/patch-src_cache_c11
-rw-r--r--package/davfs2/patches/patch-src_dav_coda2_c11
-rw-r--r--package/davfs2/patches/patch-src_dav_coda3_c11
-rw-r--r--package/davfs2/patches/patch-src_dav_fuse5_c11
-rw-r--r--package/davfs2/patches/patch-src_dav_fuse7_c11
-rw-r--r--package/davfs2/patches/patch-src_kernel_interface_c31
-rw-r--r--package/davfs2/patches/patch-src_mount_davfs_c62
-rw-r--r--package/davfs2/patches/patch-src_umount_davfs_c11
-rw-r--r--package/davfs2/patches/patch-src_webdav_c62
-rw-r--r--package/e2fsprogs/Makefile6
-rw-r--r--package/git/Makefile4
-rw-r--r--package/iproute2/Makefile8
-rw-r--r--package/krb5/Makefile8
-rw-r--r--package/krb5/patches/patch-src_Makefile_in10
-rw-r--r--package/krb5/patches/patch-src_include_osconf_hin50
-rw-r--r--package/krb5/patches/patch-src_util_profile_prof_int_h11
-rw-r--r--package/libgpg-error/Makefile6
-rw-r--r--package/mpd/Makefile11
-rw-r--r--package/mpd/patches/autotool.patch9293
-rw-r--r--package/mpd/patches/patch-configure11
-rw-r--r--package/mutt/patches/patch-Makefile_in11
-rw-r--r--package/mutt/patches/patch-mutt_ssl_c20
-rw-r--r--package/neon/Makefile12
-rw-r--r--package/openldap/Makefile4
-rw-r--r--package/openssl/Makefile11
-rw-r--r--package/openssl/patches/ocf.patch1197
-rw-r--r--package/openssl/patches/patch-Configure13
-rw-r--r--package/openssl/patches/patch-Makefile_shared19
-rw-r--r--package/openssl/patches/patch-apps_speed_c16
-rw-r--r--package/openssl/patches/patch-util_shlib_wrap_sh17
-rw-r--r--package/openswan/Makefile4
-rw-r--r--package/pcre/Makefile4
-rw-r--r--package/postgresql/Makefile11
-rw-r--r--package/postgresql/patches/patch-src_include_Makefile19
-rw-r--r--package/ruby/Makefile7
-rw-r--r--package/ruby/patches/patch-Makefile_in10
-rw-r--r--package/ruby/patches/patch-common_mk11
-rw-r--r--package/ruby/patches/patch-ext_openssl_ossl_c29
-rw-r--r--package/ruby/patches/patch-ext_openssl_ossl_h19
-rw-r--r--package/ruby/patches/patch-ext_openssl_ossl_pkcs7_c12
-rw-r--r--package/samba/Makefile4
-rw-r--r--package/samba/patches/patch-client_mount_cifs_c19
-rw-r--r--package/samba/patches/patch-source3_client_mtab_c10
-rw-r--r--package/samba/patches/patch-source3_configure196
-rw-r--r--package/samba/patches/patch-source3_registry_reg_perfcount_c6
-rw-r--r--package/squid/Makefile22
-rw-r--r--package/squid/patches/autotool.patch239031
-rw-r--r--package/squid/patches/patch-include_squid_types_h26
-rw-r--r--package/squid/patches/patch-src_HttpHeaderTools_cc11
-rw-r--r--package/strace/Makefile4
-rw-r--r--package/strace/patches/patch-syscall_c13
-rw-r--r--package/subversion/Makefile6
-rw-r--r--package/uclibc++/Makefile2
-rw-r--r--package/util-linux-ng/Makefile6
-rw-r--r--package/wget/Makefile4
66 files changed, 215514 insertions, 35093 deletions
diff --git a/package/aircrack-ng/Makefile b/package/aircrack-ng/Makefile
index ff8e99cff..918bcd22b 100644
--- a/package/aircrack-ng/Makefile
+++ b/package/aircrack-ng/Makefile
@@ -4,9 +4,9 @@
include $(TOPDIR)/rules.mk
PKG_NAME:= aircrack-ng
-PKG_VERSION:= 1.0
+PKG_VERSION:= 1.1
PKG_RELEASE:= 1
-PKG_MD5SUM:= dafbfaf944ca9d523fde4bae86f0c067
+PKG_MD5SUM:= f7a24ed8fad122c4187d06bfd6f998b4
PKG_DESCR:= set of tools for auditing wireless networks
PKG_SECTION:= net
PKG_DEPENDS:= libpthread libopenssl libpcap
diff --git a/package/apr-util/Makefile b/package/apr-util/Makefile
index 307853fab..2c0afd8bf 100644
--- a/package/apr-util/Makefile
+++ b/package/apr-util/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= apr-util
-PKG_VERSION:= 0.9.15
+PKG_VERSION:= 1.3.9
PKG_RELEASE:= 1
-PKG_MD5SUM:= dc772ae295f49ddb8ee8e69a9716c53b
+PKG_MD5SUM:= cc2ec0ba4f01d88375f1170f762518fa
PKG_DESCR:= Apache Portable Runtime utility library
PKG_SECTION:= libs
PKG_DEPENDS:= libexpat apr
@@ -21,11 +21,11 @@ $(eval $(call PKG_template,APR_UTIL,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${
CONFIGURE_ARGS+= --without-berkeley-db
CONFIGURE_ARGS+= --with-apr=${STAGING_DIR}/usr
CONFIGURE_ARGS+= --with-expat=${STAGING_DIR}/usr
-XAKE_FLAGS+= apr_builddir=${STAGING_DIR}/usr/share/build \
- apr_builders=${STAGING_DIR}/usr/share/build
+XAKE_FLAGS+= apr_builddir=${STAGING_DIR}/usr/share/build-1 \
+ apr_builders=${STAGING_DIR}/usr/share/build-1
post-install:
${INSTALL_DIR} ${IDIR_APR_UTIL}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libaprutil-0.so* ${IDIR_APR_UTIL}/usr/lib/
+ ${CP} ${WRKINST}/usr/lib/libaprutil-1.so* ${IDIR_APR_UTIL}/usr/lib/
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/apr-util/patches/patch-uri_Makefile_in b/package/apr-util/patches/patch-uri_Makefile_in
deleted file mode 100644
index 670623ad0..000000000
--- a/package/apr-util/patches/patch-uri_Makefile_in
+++ /dev/null
@@ -1,19 +0,0 @@
-$Id$
---- apr-util-0.9.13.orig/uri/Makefile.in 2004-11-25 00:45:40.000000000 +0100
-+++ apr-util-0.9.13/uri/Makefile.in 2007-02-07 12:55:37.000000000 +0100
-@@ -3,7 +3,7 @@ VPATH = @srcdir@
- INCLUDES = @APRUTIL_PRIV_INCLUDES@ @APR_INCLUDES@ @APRUTIL_INCLUDES@ -I.
-
- TARGETS = uri_delims.h apr_uri.lo
--CLEAN_TARGETS = gen_uri_delims uri_delims.h
-+CLEAN_TARGETS = gen_uri_delims
-
- # bring in rules.mk for standard functionality
- @INCLUDE_RULES@
-@@ -13,6 +13,3 @@ gen_uri_delims: $(gen_uri_delims_OBJECTS
- $(LINK) $(EXTRA_LDFLAGS) $(gen_uri_delims_OBJECTS) $(EXTRA_LIBS)
-
- apr_uri.lo: uri_delims.h apr_uri.c
--
--uri_delims.h: gen_uri_delims
-- ./gen_uri_delims > uri_delims.h
diff --git a/package/apr-util/patches/uri_delim.patch b/package/apr-util/patches/uri_delim.patch
deleted file mode 100644
index 04ca4e1d8..000000000
--- a/package/apr-util/patches/uri_delim.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -Nur apr-util-0.9.13/uri/uri_delims.h build_mipsel/w-apr-util-0.9.13-1/apr-util-0.9.13/uri/uri_delims.h
---- apr-util-0.9.13/uri/uri_delims.h 1970-01-01 01:00:00.000000000 +0100
-+++ build_mipsel/w-apr-util-0.9.13-1/apr-util-0.9.13/uri/uri_delims.h 2007-02-07 13:06:56.000000000 +0100
-@@ -0,0 +1,16 @@
-+/* this file is automatically generated by gen_uri_delims, do not edit */
-+static const unsigned char uri_delims[256] = {
-+ T_NUL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,T_HASH,0,0,0,0,
-+ 0,0,0,0,0,0,0,T_SLASH,0,0,0,0,0,0,0,0,0,0,T_COLON,0,
-+ 0,0,0,T_QUESTION,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-+};
-
diff --git a/package/apr/Makefile b/package/apr/Makefile
index 486a96842..4f65c5eef 100644
--- a/package/apr/Makefile
+++ b/package/apr/Makefile
@@ -4,22 +4,15 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= apr
-PKG_VERSION:= 0.9.17
+PKG_VERSION:= 1.4.2
PKG_RELEASE:= 1
-PKG_MD5SUM:= ca1e22d98081a03a33c2a0b8684eb192
+PKG_MD5SUM:= fc80cb54f158c2674f9eeb47a1f672cd
PKG_DESCR:= Apache Portable Runtime library
PKG_SECTION:= libs
-ifeq ($(ADK_PACKAGE_APR_THREADING),y)
PKG_DEPENDS:= libpthread
-PKG_BUILDDEP+= libpthread
-endif
PKG_URL:= http://apr.apache.org
PKG_SITES:= http://gd.tuwien.ac.at/infosys/servers/http/apache/dist/${PKG_NAME}/
-PKG_FLAVOURS= THREADING
-PKGFD_FULL= Enable threading support
-
-
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,APR,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
@@ -31,23 +24,19 @@ CONFIGURE_ENV+= ac_cv_sizeof_ssize_t=4
CONFIGURE_ENV+= ac_cv_file__dev_zero=yes
CONFIGURE_ENV+= apr_cv_process_shared_works=no
CONFIGURE_ENV+= ac_cv_lib_nsl_gethostbyname=no
+CONFIGURE_ENV+= apr_cv_tcp_nodelay_with_cork=no
CONFIGURE_ARGS+= --with-devrandom=/dev/urandom
-
-ifeq (${ADK_PACKAGE_APR_THREADING},y)
CONFIGURE_ARGS+= --enable-threads
-else
-CONFIGURE_ARGS+= --disable-threads
-endif
post-install:
${INSTALL_DIR} ${IDIR_APR}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libapr-0.so* ${IDIR_APR}/usr/lib/
- ${INSTALL_DIR} ${STAGING_DIR}/usr/share/build
- ${CP} ${WRKINST}/usr/share/build/* ${STAGING_DIR}/usr/share/build/
+ ${CP} ${WRKINST}/usr/lib/libapr-1.so* ${IDIR_APR}/usr/lib/
+ ${INSTALL_DIR} ${STAGING_DIR}/usr/share/build-1
+ ${CP} ${WRKINST}/usr/share/build-1/* ${STAGING_DIR}/usr/share/build-1/
# we need to patch paths to get apr-util compiling
$(SED) "s,\(^installbuilddir=\"\)\(.*\),\1${STAGING_DIR}\2," \
- ${WRKINST}/usr/bin/apr-config
+ ${WRKINST}/usr/bin/apr-1-config
$(SED) "s,\(^datadir=\"\)\(.*\),\1${STAGING_DIR}\2," \
- ${WRKINST}/usr/bin/apr-config
+ ${WRKINST}/usr/bin/apr-1-config
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/apr/patches/patch-include_apr_want_h b/package/apr/patches/patch-include_apr_want_h
new file mode 100644
index 000000000..5f1a11c5e
--- /dev/null
+++ b/package/apr/patches/patch-include_apr_want_h
@@ -0,0 +1,16 @@
+--- apr-1.4.2.orig/include/apr_want.h 2010-01-06 12:36:50.000000000 +0100
++++ apr-1.4.2/include/apr_want.h 2010-05-29 17:56:14.201613974 +0200
+@@ -89,11 +89,13 @@
+
+ #else
+
++/*
+ struct iovec
+ {
+ void *iov_base;
+ size_t iov_len;
+ };
++*/
+
+ #endif
+
diff --git a/package/asterisk/Makefile b/package/asterisk/Makefile
index 425683f24..c35e686a5 100644
--- a/package/asterisk/Makefile
+++ b/package/asterisk/Makefile
@@ -4,9 +4,9 @@
include $(TOPDIR)/rules.mk
PKG_NAME:= asterisk
-PKG_VERSION:= 1.6.2.5
+PKG_VERSION:= 1.6.2.7
PKG_RELEASE:= 1
-PKG_MD5SUM:= 9d1f7bcf6833605ced4b2740d14bd576
+PKG_MD5SUM:= 861f57ba43bfe05dc645e0679a260e41
PKG_DESCR:= Open Source PBX
PKG_SECTION:= net
PKG_MULTI:= 1
diff --git a/package/asterisk/patches/patch-Makefile b/package/asterisk/patches/patch-Makefile
deleted file mode 100644
index 1ba02c900..000000000
--- a/package/asterisk/patches/patch-Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
---- asterisk-1.6.2.1.orig/Makefile 2009-12-10 22:04:20.000000000 +0100
-+++ asterisk-1.6.2.1/Makefile 2010-02-05 21:05:41.313084404 +0100
-@@ -366,8 +366,8 @@ makeopts: configure
- @exit 1
-
- menuselect.makeopts: menuselect/menuselect menuselect-tree makeopts build_tools/menuselect-deps $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
-- menuselect/menuselect --check-deps $@
-- menuselect/menuselect --check-deps $@ $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
-+ ./menuselect/menuselect --check-deps $@
-+ ./menuselect/menuselect --check-deps $@ $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
-
- $(MOD_SUBDIRS_EMBED_LDSCRIPT):
- +@echo "EMBED_LDSCRIPTS+="`$(SILENTMAKE) -C $(@:-embed-ldscript=) SUBDIR=$(@:-embed-ldscript=) __embed_ldscript` >> makeopts.embed_rules
diff --git a/package/asterisk/patches/patch-apps_app_followme_c b/package/asterisk/patches/patch-apps_app_followme_c
deleted file mode 100644
index 8ecfa9226..000000000
--- a/package/asterisk/patches/patch-apps_app_followme_c
+++ /dev/null
@@ -1,26 +0,0 @@
---- asterisk-1.6.2.1.orig/apps/app_followme.c 2009-09-15 18:06:24.000000000 +0200
-+++ asterisk-1.6.2.1/apps/app_followme.c 2010-02-14 10:33:51.540422962 +0100
-@@ -172,7 +172,9 @@ static int ynlongest = 0;
-
- static const char *featuredigittostr;
- static int featuredigittimeout = 5000; /*!< Feature Digit Timeout */
--static const char *defaultmoh = "default"; /*!< Default Music-On-Hold Class */
-+static const char *defaultmoh; /*!< Default Music-On-Hold Class */
-+
-+
-
- static char takecall[20] = "1", nextindp[20] = "2";
- static char callfromprompt[PATH_MAX] = "followme/call-from";
-@@ -236,6 +238,7 @@ static struct call_followme *alloc_profi
-
- static void init_profile(struct call_followme *f)
- {
-+ defaultmoh = "default";
- f->active = 1;
- ast_copy_string(f->moh, defaultmoh, sizeof(f->moh));
- }
-@@ -1195,3 +1198,4 @@ AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MO
- .unload = unload_module,
- .reload = reload,
- );
-+
diff --git a/package/curl/Makefile b/package/curl/Makefile
index 9f771defb..a7ddfb1d8 100644
--- a/package/curl/Makefile
+++ b/package/curl/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= curl
-PKG_VERSION:= 7.19.7
+PKG_VERSION:= 7.20.1
PKG_RELEASE:= 1
-PKG_MD5SUM:= ecb2e37e45c9933e2a963cabe03670ab
+PKG_MD5SUM:= d7df0507db48546661b155b612cac19c
PKG_DESCR:= a client-side URL transfer tool
PKG_SECTION:= net
PKG_DEPENDS:= libcurl
diff --git a/package/davfs2/Makefile b/package/davfs2/Makefile
index b6c026739..11e93d2ce 100644
--- a/package/davfs2/Makefile
+++ b/package/davfs2/Makefile
@@ -3,25 +3,25 @@
include ${TOPDIR}/rules.mk
-PKG_NAME= davfs2
-PKG_VERSION= 1.3.3
-PKG_RELEASE= 1
-PKG_MD5SUM= 57def26e4d6d63527e01612d10fd0515
+PKG_NAME:= davfs2
+PKG_VERSION:= 1.4.6
+PKG_RELEASE:= 1
+PKG_MD5SUM:= c9e8aeb15daeba4b6283b40bb640e908
PKG_DESCR:= WebDAV filesystem
PKG_SECTION:= admin
PKG_BUILDDEP+= libiconv neon
ifneq (${ADK_PACKAGE_DAVFS2_FUSE}${ADK_PACKAGE_DAVFS2_BOTH},)
PKG_BUILDDEP+= fuse
endif
-PKG_URL:= http://savannah.nongnu.org/projects/davfs2
-PKG_SITES= ${MASTER_SITE_SOURCEFORGE:=dav/}
+PKG_URL:= http://savannah.nongnu.org/projects/davfs2
+PKG_SITES:= http://www.very-clever.com/download/nongnu/davfs2/
ifeq (${ADK_PACKAGE_DAVFS2_FUSE},y)
-PKG_DEPENDS:= fuse-utils kmod-fuse-fs libiconv neon
+PKG_DEPENDS:= fuse-utils kmod-fuse-fs libiconv neon
else ifeq (${ADK_PACKAGE_DAVFS2_CODA},y)
-PKG_DEPENDS:= kmod-coda-fs libiconv neon
+PKG_DEPENDS:= kmod-coda-fs libiconv neon
else
-PKG_DEPENDS:= kmod-coda-fs fuse-utils kmod-fuse-fs libiconv neon
+PKG_DEPENDS:= kmod-coda-fs fuse-utils kmod-fuse-fs libiconv neon
endif
include ${TOPDIR}/mk/package.mk
diff --git a/package/davfs2/patches/patch-src_cache_c b/package/davfs2/patches/patch-src_cache_c
deleted file mode 100644
index ac8b0b4f1..000000000
--- a/package/davfs2/patches/patch-src_cache_c
+++ /dev/null
@@ -1,11 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/cache.c 2008-06-24 21:32:50.000000000 +0200
-+++ davfs2-1.3.3/src/cache.c 2008-12-08 00:06:51.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <dirent.h>
- #include <errno.h>
- #include <error.h>
diff --git a/package/davfs2/patches/patch-src_dav_coda2_c b/package/davfs2/patches/patch-src_dav_coda2_c
deleted file mode 100644
index 1ef269348..000000000
--- a/package/davfs2/patches/patch-src_dav_coda2_c
+++ /dev/null
@@ -1,11 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/dav_coda2.c 2008-02-02 23:23:45.000000000 +0100
-+++ davfs2-1.3.3/src/dav_coda2.c 2008-12-08 00:07:35.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <limits.h>
diff --git a/package/davfs2/patches/patch-src_dav_coda3_c b/package/davfs2/patches/patch-src_dav_coda3_c
deleted file mode 100644
index 9a4bee68b..000000000
--- a/package/davfs2/patches/patch-src_dav_coda3_c
+++ /dev/null
@@ -1,11 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/dav_coda3.c 2008-02-02 23:24:10.000000000 +0100
-+++ davfs2-1.3.3/src/dav_coda3.c 2008-12-08 00:08:00.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <limits.h>
diff --git a/package/davfs2/patches/patch-src_dav_fuse5_c b/package/davfs2/patches/patch-src_dav_fuse5_c
deleted file mode 100644
index 21c92b9a5..000000000
--- a/package/davfs2/patches/patch-src_dav_fuse5_c
+++ /dev/null
@@ -1,11 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/dav_fuse5.c 2008-04-05 20:36:06.000000000 +0200
-+++ davfs2-1.3.3/src/dav_fuse5.c 2008-12-08 00:08:26.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <stddef.h>
diff --git a/package/davfs2/patches/patch-src_dav_fuse7_c b/package/davfs2/patches/patch-src_dav_fuse7_c
deleted file mode 100644
index 846f4a98a..000000000
--- a/package/davfs2/patches/patch-src_dav_fuse7_c
+++ /dev/null
@@ -1,11 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/dav_fuse7.c 2008-04-09 21:43:34.000000000 +0200
-+++ davfs2-1.3.3/src/dav_fuse7.c 2008-12-08 00:08:32.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <stddef.h>
diff --git a/package/davfs2/patches/patch-src_kernel_interface_c b/package/davfs2/patches/patch-src_kernel_interface_c
deleted file mode 100644
index 15d5c909b..000000000
--- a/package/davfs2/patches/patch-src_kernel_interface_c
+++ /dev/null
@@ -1,31 +0,0 @@
-$Id$
---- davfs2-1.3.3.orig/src/kernel_interface.c 2008-04-05 20:43:04.000000000 +0200
-+++ davfs2-1.3.3/src/kernel_interface.c 2008-12-08 00:09:01.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <error.h>
- #include <fcntl.h>
-@@ -173,7 +172,8 @@ static int init_coda(int *dev, dav_run_m
- }
-
- if (*dev <= 0) {
-- system("/sbin/modprobe coda &>/dev/null");
-+ system("/sbin/insmod coda");
-+ sleep(1);
- minor = 0;
- while (*dev <= 0 && minor < MAX_CODADEVS) {
- char *path;
-@@ -240,7 +240,8 @@ static int init_fuse(int *dev, dav_run_m
-
- *dev = open(path, O_RDWR | O_NONBLOCK);
- if (*dev <= 0) {
-- system("/sbin/modprobe fuse &>/dev/null");
-+ system("/sbin/insmod fuse");
-+ sleep(1);
- *dev = open(path, O_RDWR | O_NONBLOCK);
- }
- if (*dev <= 0) {
diff --git a/package/davfs2/patches/patch-src_mount_davfs_c b/package/davfs2/patches/patch-src_mount_davfs_c
index ba0c030f2..516604ffc 100644
--- a/package/davfs2/patches/patch-src_mount_davfs_c
+++ b/package/davfs2/patches/patch-src_mount_davfs_c
@@ -1,40 +1,22 @@
-$Id$
---- davfs2-1.3.3.orig/src/mount_davfs.c 2008-06-30 20:29:42.000000000 +0200
-+++ davfs2-1.3.3/src/mount_davfs.c 2008-12-08 00:20:01.000000000 +0100
-@@ -23,12 +23,10 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <ctype.h>
- #include <errno.h>
- #include <error.h>
+--- davfs2-1.4.6.orig/src/mount_davfs.c 2010-01-21 19:50:15.000000000 +0100
++++ davfs2-1.4.6/src/mount_davfs.c 2010-05-29 21:10:23.041613426 +0200
+@@ -29,7 +29,6 @@
+ #ifdef HAVE_FCNTL_H
#include <fcntl.h>
+ #endif
-#include <fstab.h>
#include <getopt.h>
#include <grp.h>
- #include <limits.h>
-@@ -602,15 +600,18 @@ static char *check_double_mounts(dav_arg
- free to choose them. They should be configured in davfs2.conf anyway. */
- static void check_fstab(const dav_args *args) {
-
+ #ifdef HAVE_LIBINTL_H
+@@ -677,6 +676,7 @@ check_double_mounts(dav_args *args)
+ static void
+ check_fstab(const dav_args *args)
+ {
+#if 0
dav_args *n_args = new_args();
n_args->mopts = DAV_USER_MOPTS;
- setfsent();
- struct fstab *ft = getfsfile(mpoint);
- if (ft == NULL)
-+#endif
- error(EXIT_FAILURE, 0, _("no entry for %s found in %s"), url,
-- _PATH_FSTAB);
-+ "/etc/fstab");
-
-+#if 0
- if (strcmp(url, ft->fs_spec) != 0) {
- char *fstab_url = decode_octal(ft->fs_spec);
- if (strcmp(url, fstab_url) != 0)
-@@ -642,6 +643,7 @@ static void check_fstab(const dav_args *
+@@ -733,6 +733,7 @@ check_fstab(const dav_args *args)
endfsent();
delete_args(n_args);
@@ -42,28 +24,28 @@ $Id$
}
-@@ -661,7 +663,7 @@ static void check_mountpoint(dav_args *a
+@@ -754,7 +755,7 @@ check_mountpoint(dav_args *args)
struct passwd *pw;
if (*mpoint != '/') {
- char *mp = canonicalize_file_name(mpoint);
+ char *mp = realpath(mpoint, NULL);
- if (mp == NULL)
+ if (!mp)
error(EXIT_FAILURE, 0,
_("can't evaluate path of mount point %s"), mpoint);
-@@ -1754,6 +1756,7 @@ static dav_args *new_args(void) {
-
- static void log_dbg_config(char *argv[], dav_args *args) {
-
+@@ -1824,6 +1825,7 @@ new_args(void)
+ static void
+ log_dbg_cmdline(char *argv[])
+ {
+ /*
size_t len;
- char * cmdline;
+ char *cmdline;
if (argz_create(argv, &cmdline, &len) == 0) {
-@@ -1761,6 +1764,7 @@ static void log_dbg_config(char *argv[],
+@@ -1831,6 +1833,7 @@ log_dbg_cmdline(char *argv[])
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG), cmdline);
free(cmdline);
}
+ */
-
- syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),
- "Configuration:");
+ }
+
+
diff --git a/package/davfs2/patches/patch-src_umount_davfs_c b/package/davfs2/patches/patch-src_umount_davfs_c
index 387476f39..9dd1978d4 100644
--- a/package/davfs2/patches/patch-src_umount_davfs_c
+++ b/package/davfs2/patches/patch-src_umount_davfs_c
@@ -1,12 +1,11 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/umount_davfs.c 2008-01-11 22:40:18.000000000 +0100
-+++ davfs2-1.3.3/src/umount_davfs.c 2008-12-08 00:38:43.000000000 +0100
-@@ -114,7 +114,7 @@ int main(int argc, char *argv[]) {
+--- davfs2-1.4.6.orig/src/umount_davfs.c 2009-06-04 20:30:32.000000000 +0200
++++ davfs2-1.4.6/src/umount_davfs.c 2010-05-30 09:53:14.681613660 +0200
+@@ -120,7 +120,7 @@ main(int argc, char *argv[])
if (optind < (argc - 1))
error(EXIT_FAILURE, 0, _("too many arguments"));
- char *mpoint = canonicalize_file_name(argv[optind]);
+ char *mpoint = realpath(argv[optind], NULL);
- if (mpoint == NULL)
+ if (!mpoint)
mpoint = argv[optind];
- if (mpoint == NULL || *mpoint != '/')
+ if (!mpoint || *mpoint != '/')
diff --git a/package/davfs2/patches/patch-src_webdav_c b/package/davfs2/patches/patch-src_webdav_c
index 35ad27492..20b125f1a 100644
--- a/package/davfs2/patches/patch-src_webdav_c
+++ b/package/davfs2/patches/patch-src_webdav_c
@@ -1,55 +1,35 @@
-$Id$
-
- cf. http://sourceforge.net/tracker/index.php?func=detail&aid=1594808&group_id=26275&atid=386747
-
---- davfs2-1.3.3.orig/src/webdav.c 2008-06-28 19:20:07.000000000 +0200
-+++ davfs2-1.3.3/src/webdav.c 2008-12-08 00:37:23.000000000 +0100
-@@ -23,7 +23,6 @@
+--- davfs2-1.4.6.orig/src/webdav.c 2010-02-16 20:29:59.000000000 +0100
++++ davfs2-1.4.6/src/webdav.c 2010-05-30 09:52:01.161613627 +0200
+@@ -52,6 +52,8 @@
+ #include <sys/stat.h>
+ #endif
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <error.h>
- #include <fcntl.h>
-@@ -34,6 +33,7 @@
- #include <stdlib.h>
- #include <string.h>
- #include <syslog.h>
+#include <regex.h>
- #include <time.h>
- #include <unistd.h>
-
-@@ -406,6 +406,11 @@ void dav_init_webdav(const char *scheme,
- suri = (ne_uri *) ne_calloc(sizeof(ne_uri));
- ne_fill_server_uri(session, suri);
-
-+ /* begin of GMX hack */
-+ ne_server_capabilities caps;
-+ ne_options(session, "/", &caps);
-+ /* end of GMX hack */
+
- if (use_locks) {
- locks = ne_lockstore_create();
- if (lock_owner == NULL) {
-@@ -1859,13 +1864,18 @@ static int ssl_verify(void *userdata, in
- "or there might be a man-in-the-middle-attack.\n"));
- printf(_("Accept certificate for this session? [y,N] "));
- char *s = NULL;
-+ regex_t *re;
- size_t n = 0;
- ssize_t len = 0;
+ #include <ne_alloc.h>
+ #include <ne_auth.h>
+ #include <ne_basic.h>
+@@ -1918,6 +1920,7 @@ quota_result(void *userdata, const ne_ur
+ static int
+ ssl_verify(void *userdata, int failures, const ne_ssl_certificate *cert)
+ {
++ regex_t *re;
+ char *issuer = ne_ssl_readable_dname(ne_ssl_cert_issuer(cert));
+ char *subject = ne_ssl_readable_dname(ne_ssl_cert_subject(cert));
+ char *digest = ne_calloc(NE_SSL_DIGESTLEN);
+@@ -1964,8 +1967,13 @@ ssl_verify(void *userdata, int failures,
len = getline(&s, &n, stdin);
if (len < 0)
abort();
-- if (rpmatch(s) < 1)
-- ret = -1;
+- if (rpmatch(s) > 0)
+- ret = 0;
+ if (regcomp(&re, "^[yY]", REG_EXTENDED) != 0) {
+ if (regexec(&re, s, (size_t)0, NULL, 0) < 1) {
+ regfree(&re);
+ ret = -1;
+ }
++ ret = 0;
+ }
free(s);
- }
}
+
diff --git a/package/e2fsprogs/Makefile b/package/e2fsprogs/Makefile
index 2bc49ab16..65714b2a5 100644
--- a/package/e2fsprogs/Makefile
+++ b/package/e2fsprogs/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= e2fsprogs
-PKG_VERSION:= 1.41.9
-PKG_RELEASE:= 3
-PKG_MD5SUM:= 52f60a9e19a02f142f5546f1b5681927
+PKG_VERSION:= 1.41.12
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 1b24a21fc0c2381ef420961cbfec733f
PKG_DESCR:= Ext2/3/4 filesystem utilities
PKG_SECTION:= admin
PKG_DEPENDS:= libcom-err libuuid libblkid libpthread
diff --git a/package/git/Makefile b/package/git/Makefile
index fb9f114a3..a3c9a8fd6 100644
--- a/package/git/Makefile
+++ b/package/git/Makefile
@@ -4,9 +4,9 @@
include $(TOPDIR)/rules.mk
PKG_NAME:= git
-PKG_VERSION:= 1.7.0.1
+PKG_VERSION:= 1.7.1
PKG_RELEASE:= 1
-PKG_MD5SUM:= 05485caf5c503ce378a87759bc3a0509
+PKG_MD5SUM:= d2fefae2b787a19601c09d89975ce5fb
PKG_DESCR:= fast version control system
PKG_SECTION:= scm
PKG_DEPENDS:= libopenssl libcurl libexpat libpthread
diff --git a/package/iproute2/Makefile b/package/iproute2/Makefile
index f65a61e2c..38902bf07 100644
--- a/package/iproute2/Makefile
+++ b/package/iproute2/Makefile
@@ -4,16 +4,16 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= iproute2
-PKG_VERSION:= 2.6.29-1
-PKG_RELEASE:= 2
-PKG_MD5SUM:= c1bc258a6c345905e79935ac7a3cc582
+PKG_VERSION:= 2.6.34
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 5c5742bdac05a1688f266512e685b83c
PKG_DESCR:= iproute2 routing control utility
PKG_SECTION:= net
ifneq ($(strip ${ADK_PACKAGE_TC_ATM}),)
PKG_BUILDDEP+= linux-atm
endif
PKG_URL:= http://www.linuxfoundation.org/en/Net:Iproute2
-PKG_SITES:= http://developer.osdl.org/dev/iproute2/download/
+PKG_SITES:= http://devresources.linuxfoundation.org/dev/iproute2/download/
PKG_DESCR_TC:= iproute2 traffic control utility
PKG_DEPENDS_TC:= kmod-sched
diff --git a/package/krb5/Makefile b/package/krb5/Makefile
index b9efa2b2c..e7f3b1f22 100644
--- a/package/krb5/Makefile
+++ b/package/krb5/Makefile
@@ -4,15 +4,15 @@
include $(TOPDIR)/rules.mk
PKG_NAME:= krb5
-PKG_VERSION:= 1.7
-PKG_RELEASE:= 3
-PKG_MD5SUM:= 9f7b3402b4731a7fa543db193bf1b564
+PKG_VERSION:= 1.8.1
+PKG_RELEASE:= 1
+PKG_MD5SUM:= e29a78b108c4687f7e7937110d1d0415
PKG_DESCR:= MIT kerberos server
PKG_SECTION:= net
PKG_DEPENDS:= libkrb5 libncurses libss libcom-err
PKG_BUILDDEP+= ncurses e2fsprogs
PKG_URL:= http://web.mit.edu/kerberos
-PKG_SITES:= http://web.mit.edu/kerberos/dist/krb5/1.7/
+PKG_SITES:= http://web.mit.edu/kerberos/dist/krb5/1.8/
PKG_NOPARALLEL:= 1
diff --git a/package/krb5/patches/patch-src_Makefile_in b/package/krb5/patches/patch-src_Makefile_in
deleted file mode 100644
index ef48b68ed..000000000
--- a/package/krb5/patches/patch-src_Makefile_in
+++ /dev/null
@@ -1,10 +0,0 @@
---- krb5-1.7.orig/src/Makefile.in Wed Apr 15 22:07:03 2009
-+++ krb5-1.7/src/Makefile.in Mon Dec 28 16:13:47 2009
-@@ -13,7 +13,6 @@ SUBDIRS=util include lib kdc kadmin @ldap_plugin_dir@
- plugins/kdb/db2 \
- plugins/preauth/pkinit \
- plugins/preauth/encrypted_challenge \
-- appl tests \
- config-files gen-manpages
- BUILDTOP=$(REL)$(C)
- LOCALINCLUDES = -I$(srcdir)
diff --git a/package/krb5/patches/patch-src_include_osconf_hin b/package/krb5/patches/patch-src_include_osconf_hin
deleted file mode 100644
index 834f28292..000000000
--- a/package/krb5/patches/patch-src_include_osconf_hin
+++ /dev/null
@@ -1,50 +0,0 @@
---- krb5-1.7.orig/src/include/osconf.hin 2009-01-31 04:57:20.000000000 +0100
-+++ krb5-1.7/src/include/osconf.hin 2009-11-01 11:41:43.171362928 +0100
-@@ -61,14 +61,14 @@
- #define DEFAULT_LNAME_FILENAME "@PREFIX/lib/krb5.aname"
- #endif /* _WINDOWS */
-
--#define DEFAULT_KDB_FILE "@LOCALSTATEDIR/krb5kdc/principal"
--#define DEFAULT_KEYFILE_STUB "@LOCALSTATEDIR/krb5kdc/.k5."
--#define KRB5_DEFAULT_ADMIN_ACL "@LOCALSTATEDIR/krb5kdc/krb5_adm.acl"
-+#define DEFAULT_KDB_FILE "@SYSCONFDIR/krb5kdc/principal"
-+#define DEFAULT_KEYFILE_STUB "@SYSCONFDIR/krb5kdc/.k5."
-+#define KRB5_DEFAULT_ADMIN_ACL "@SYSCONFDIR/krb5kdc/krb5_adm.acl"
- /* Used by old admin server */
--#define DEFAULT_ADMIN_ACL "@LOCALSTATEDIR/krb5kdc/kadm_old.acl"
-+#define DEFAULT_ADMIN_ACL "@SYSCONFDIR/krb5kdc/kadm_old.acl"
-
- /* Location of KDC profile */
--#define DEFAULT_KDC_PROFILE "@LOCALSTATEDIR/krb5kdc/kdc.conf"
-+#define DEFAULT_KDC_PROFILE "@SYSCONFDIR/krb5kdc/kdc.conf"
- #define KDC_PROFILE_ENV "KRB5_KDC_PROFILE"
-
- #if TARGET_OS_MAC
-@@ -97,8 +97,8 @@
- /*
- * Defaults for the KADM5 admin system.
- */
--#define DEFAULT_KADM5_KEYTAB "@LOCALSTATEDIR/krb5kdc/kadm5.keytab"
--#define DEFAULT_KADM5_ACL_FILE "@LOCALSTATEDIR/krb5kdc/kadm5.acl"
-+#define DEFAULT_KADM5_KEYTAB "@SYSCONFDIR/krb5kdc/kadm5.keytab"
-+#define DEFAULT_KADM5_ACL_FILE "@SYSCONFDIR/krb5kdc/kadm5.acl"
- #define DEFAULT_KADM5_PORT 749 /* assigned by IANA */
-
- #define KRB5_DEFAULT_SUPPORTED_ENCTYPES \
-@@ -123,13 +123,13 @@
- * krb5 slave support follows
- */
-
--#define KPROP_DEFAULT_FILE "@LOCALSTATEDIR/krb5kdc/slave_datatrans"
--#define KPROPD_DEFAULT_FILE "@LOCALSTATEDIR/krb5kdc/from_master"
-+#define KPROP_DEFAULT_FILE "@SYSCONFDIR/krb5kdc/slave_datatrans"
-+#define KPROPD_DEFAULT_FILE "@SYSCONFDIR/krb5kdc/from_master"
- #define KPROPD_DEFAULT_KDB5_UTIL "@SBINDIR/kdb5_util"
- #define KPROPD_DEFAULT_KDB5_EDIT "@SBINDIR/kdb5_edit"
- #define KPROPD_DEFAULT_KPROP "@SBINDIR/kprop"
- #define KPROPD_DEFAULT_KRB_DB DEFAULT_KDB_FILE
--#define KPROPD_ACL_FILE "@LOCALSTATEDIR/krb5kdc/kpropd.acl"
-+#define KPROPD_ACL_FILE "@SYSCONFDIR/krb5kdc/kpropd.acl"
-
- /*
- * GSS mechglue
diff --git a/package/krb5/patches/patch-src_util_profile_prof_int_h b/package/krb5/patches/patch-src_util_profile_prof_int_h
deleted file mode 100644
index 5be692f11..000000000
--- a/package/krb5/patches/patch-src_util_profile_prof_int_h
+++ /dev/null
@@ -1,11 +0,0 @@
---- krb5-1.7.orig/src/util/profile/prof_int.h 2008-05-27 18:25:51.000000000 +0200
-+++ krb5-1.7/src/util/profile/prof_int.h 2009-11-19 20:20:53.000000000 +0100
-@@ -12,7 +12,7 @@
-
- #include "k5-thread.h"
- #include "k5-platform.h"
--#include "com_err.h"
-+#include "et/com_err.h"
- #include "profile.h"
-
- typedef long prf_magic_t;
diff --git a/package/libgpg-error/Makefile b/package/libgpg-error/Makefile
index 20fbc14cd..73b37eb9b 100644
--- a/package/libgpg-error/Makefile
+++ b/package/libgpg-error/Makefile
@@ -4,10 +4,10 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= libgpg-error
-PKG_VERSION:= 1.7
+PKG_VERSION:= 1.8
PKG_RELEASE:= 1
-PKG_MD5SUM:= 62c0d09d1e76c5b6da8fff92314c4665
-PKG_DESCR:= an helper library for common error codes and descriptions
+PKG_MD5SUM:= 1d2005268a2f096db28cf9cf77b3229a
+PKG_DESCR:= a helper library for common error codes and descriptions
PKG_SECTION:= libs
PKG_URL:= http://www.gnupg.org
PKG_SITES:= ftp://ftp.gnupg.org/gcrypt/libgpg-error/
diff --git a/package/mpd/Makefile b/package/mpd/Makefile
index 4325332db..a9f375ce8 100644
--- a/package/mpd/Makefile
+++ b/package/mpd/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= mpd
-PKG_VERSION:= 0.15.8
-PKG_RELEASE:= 3
-PKG_MD5SUM:= 6680970274c389fd07e2b35721de1764
+PKG_VERSION:= 0.15.10
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 3ee746cb9193acfd0e1bd7a8c54af1a6
PKG_DESCR:= A music player daemon
PKG_SECTION:= net
PKG_DEPENDS:= glib libstdcxx
@@ -147,9 +147,8 @@ endif
ifneq (${ADK_PACKAGE_MPD_WITH_SHOUT},)
CONFIGURE_ARGS+= --enable-shout \
--enable-lame-encoder \
- --enable-vorbis-encoder \
- --with-lame-includes=${STAGING_DIR}/usr/include \
- --with-lame-libraries=${STAGING_DIR}/usr/lib
+ --with-lame=${STAGING_DIR}/usr \
+ --enable-vorbis-encoder
else
CONFIGURE_ARGS+= --disable-shout \
--disable-lame-encoder \
diff --git a/package/mpd/patches/autotool.patch b/package/mpd/patches/autotool.patch
deleted file mode 100644
index ab1aad556..000000000
--- a/package/mpd/patches/autotool.patch
+++ /dev/null
@@ -1,9293 +0,0 @@
-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-configure b/package/mpd/patches/patch-configure
new file mode 100644
index 000000000..a27db64c5
--- /dev/null
+++ b/package/mpd/patches/patch-configure
@@ -0,0 +1,11 @@
+--- mpd-0.15.10.orig/configure 2010-05-30 17:57:50.000000000 +0200
++++ mpd-0.15.10/configure 2010-06-12 19:53:33.261613517 +0200
+@@ -10637,7 +10637,7 @@ if test x$enable_lame_encoder != xno; th
+
+ # Check whether --with-lame was given.
+ if test "${with_lame+set}" = set; then :
+- withval=$with_lame;
++ lame_prefix=$with_lame;
+ else
+ lame_prefix=""
+ fi
diff --git a/package/mutt/patches/patch-Makefile_in b/package/mutt/patches/patch-Makefile_in
index ab7867d78..3a6601abe 100644
--- a/package/mutt/patches/patch-Makefile_in
+++ b/package/mutt/patches/patch-Makefile_in
@@ -1,8 +1,7 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- mutt-1.5.19.orig/Makefile.in 2009-01-05 20:24:13.000000000 +0100
-+++ mutt-1.5.19/Makefile.in 2009-05-10 19:02:17.000000000 +0200
-@@ -129,7 +129,7 @@ RECURSIVE_CLEAN_TARGETS = mostlyclean-re
- distclean-recursive maintainer-clean-recursive
+--- mutt-1.5.20.orig/Makefile.in 2009-06-09 08:50:44.000000000 +0200
++++ mutt-1.5.20/Makefile.in 2010-05-30 13:43:47.001613117 +0200
+@@ -155,7 +155,7 @@ AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGE
+ distdir dist dist-all distcheck
ETAGS = etags
CTAGS = ctags
-DIST_SUBDIRS = m4 po intl doc contrib imap
@@ -10,7 +9,7 @@ $Id: update-patches 24 2008-08-31 14:56:13Z wbx $
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
-@@ -291,7 +291,7 @@ top_srcdir = @top_srcdir@
+@@ -340,7 +340,7 @@ top_srcdir = @top_srcdir@
AUTOMAKE_OPTIONS = 1.6 foreign
@BUILD_IMAP_TRUE@IMAP_SUBDIR = imap
@BUILD_IMAP_TRUE@IMAP_INCLUDES = -I$(top_srcdir)/imap
diff --git a/package/mutt/patches/patch-mutt_ssl_c b/package/mutt/patches/patch-mutt_ssl_c
new file mode 100644
index 000000000..160dc668c
--- /dev/null
+++ b/package/mutt/patches/patch-mutt_ssl_c
@@ -0,0 +1,20 @@
+--- mutt-1.5.20.orig/mutt_ssl.c 2009-06-10 07:08:29.000000000 +0200
++++ mutt-1.5.20/mutt_ssl.c 2010-06-02 19:53:33.141613592 +0200
+@@ -652,7 +652,7 @@ static int check_host (X509 *x509cert, c
+ char *buf = NULL;
+ int bufsize;
+ /* needed to get the DNS subjectAltNames: */
+- STACK *subj_alt_names;
++ STACK_OF(GENERAL_NAME) *subj_alt_names;
+ int subj_alt_names_count;
+ GENERAL_NAME *subj_alt_name;
+ /* did we find a name matching hostname? */
+@@ -735,7 +735,7 @@ static int ssl_cache_trusted_cert (X509
+ {
+ dprint (1, (debugfile, "trusted: %s\n", c->name));
+ if (!SslSessionCerts)
+- SslSessionCerts = sk_new_null();
++ SslSessionCerts = sk_X509_new_null();
+ return (sk_X509_push (SslSessionCerts, X509_dup(c)));
+ }
+
diff --git a/package/neon/Makefile b/package/neon/Makefile
index 350dcd8b1..ddb417224 100644
--- a/package/neon/Makefile
+++ b/package/neon/Makefile
@@ -3,16 +3,16 @@
include ${TOPDIR}/rules.mk
-PKG_NAME= neon
-PKG_VERSION= 0.28.4
-PKG_RELEASE= 1
-PKG_MD5SUM= 6c3b94362af743d046e198e9fcbe4a85
+PKG_NAME:= neon
+PKG_VERSION:= 0.29.3
+PKG_RELEASE:= 1
+PKG_MD5SUM:= ba1015b59c112d44d7797b62fe7bee51
PKG_DESCR:= HTTP and WebDAV library
PKG_SECTION:= libs
PKG_DEPENDS:= libpthread libxml2 libopenssl zlib
PKG_BUILDDEP+= libpthread libxml2 openssl zlib
-PKG_UTL:= http://webdav.org/neon
-PKG_SITES= http://webdav.org/neon/
+PKG_URL:= http://webdav.org/neon/
+PKG_SITES:= http://webdav.org/neon/
include ${TOPDIR}/mk/package.mk
diff --git a/package/openldap/Makefile b/package/openldap/Makefile
index db05887d0..c1bf15e36 100644
--- a/package/openldap/Makefile
+++ b/package/openldap/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= openldap
-PKG_VERSION:= 2.4.21
+PKG_VERSION:= 2.4.22
PKG_RELEASE:= 1
-PKG_MD5SUM:= e7128c57b2bacd940e8906057c94ff26
+PKG_MD5SUM:= ef01b52255ce8e3fbf8aa34f6fe7598b
PKG_DESCR:= OpenLDAP client libraries
PKG_SECTION:= libs
PKG_DEPENDS:= libopenssl libsasl2
diff --git a/package/openssl/Makefile b/package/openssl/Makefile
index 319deda11..1f77db9f8 100644
--- a/package/openssl/Makefile
+++ b/package/openssl/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= openssl
-PKG_VERSION:= 0.9.8l
+PKG_VERSION:= 1.0.0
PKG_RELEASE:= 1
-PKG_MD5SUM:= 05a0ece1372392a2cf310ebb96333025
+PKG_MD5SUM:= 89eaa86e25b2845f920ec00ae4c864ed
PKG_DESCR:= OpenSSL (Secure Socket Layer) libraries
PKG_SECTION:= libs
PKG_DEPENDS:= zlib
@@ -37,17 +37,16 @@ FAKE_FLAGS+= INSTALL_PREFIX=${WRKINST}
OPENSSL_OPTIONS = shared no-ec no-err no-krb5 no-threads zlib-dynamic no-engines no-camellia no-idea no-rc5 no-mdc2 no-sha0 no-smime no-aes192 no-ripemd no-cast
-post-extract:
- @find ${WRKBUILD} -name *.rej -exec rm {} \;
+#post-extract:
+# @find ${WRKBUILD} -name *.rej -exec rm {} \;
do-configure:
(cd $(WRKBUILD); \
PATH=$(TARGET_PATH) \
OPTIMIZATION_FLAGS="$(TARGET_CFLAGS) -fPIC" \
- ./Configure linux-embedded \
+ bash -x ./Configure linux-embedded \
--prefix=/usr \
--openssldir=/etc/ssl \
- --with-cryptodev \
-I$(STAGING_DIR)/usr/include \
-L$(STAGING_DIR)/usr/lib -ldl \
-DOPENSSL_SMALL_FOOTPRINT \
diff --git a/package/openssl/patches/ocf.patch b/package/openssl/patches/ocf.patch
deleted file mode 100644
index f349288e9..000000000
--- a/package/openssl/patches/ocf.patch
+++ /dev/null
@@ -1,1197 +0,0 @@
-Index: libssl/Configure
-===================================================================
-RCS file: libssl/Configure,v
-retrieving revision 1.1.1.12
-retrieving revision 1.21
-diff -u -r1.1.1.12 -r1.21
---- libssl/Configure 15 Sep 2008 23:36:40 -0000 1.1.1.12
-+++ libssl/Configure 15 Sep 2008 23:44:15 -0000 1.21
-@@ -34,6 +34,8 @@
- # (Default: KRB5_DIR/include)
- # --with-krb5-flavor Declare what flavor of Kerberos 5 is used. Currently
- # supported values are "MIT" and "Heimdal". A value is required.
-+# --with-cryptodev Force support for cryptodev (ie., ocf-linux)
-+# --with-cryptodev-digests Force support for cryptodev digests (generally slow)
- #
- # --test-sanity Make a number of sanity checks on the data in this file.
- # This is a debugging tool for OpenSSL developers.
-@@ -538,6 +540,9 @@
- ##### Compaq Non-Stop Kernel (Tandem)
- "tandem-c89","c89:-Ww -D__TANDEM -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1 -D_TANDEM_SOURCE -DB_ENDIAN::(unknown):::THIRTY_TWO_BIT:::",
-
-+# uClinux
-+"uClinux-dist","$ENV{'CC'}:\$(CFLAGS)::-D_REENTRANT::\$(LDFLAGS) \$(LDLIBS):BN_LLONG::::::::::::\$(LIBSSL_dlfcn):linux-shared:-fPIC:-shared:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):$ENV{'RANLIB'}",
-+
- );
-
- my @MK1MF_Builds=qw(VC-WIN64I VC-WIN64A
-@@ -587,6 +592,8 @@
- my $no_asm=0;
- my $no_dso=0;
- my $no_gmp=0;
-+my $have_cryptodev=0;
-+my $use_cryptodev_digests=0;
- my @skip=();
- my $Makefile="Makefile";
- my $des_locl="crypto/des/des_locl.h";
-@@ -714,6 +721,14 @@
- {
- exit(&test_sanity());
- }
-+ elsif (/^--with-cryptodev$/)
-+ {
-+ $have_cryptodev = 1;
-+ }
-+ elsif (/^--with-cryptodev-digests$/)
-+ {
-+ $use_cryptodev_digests = 1;
-+ }
- elsif (/^reconfigure/ || /^reconf/)
- {
- if (open(IN,"<$Makefile"))
-@@ -922,6 +937,7 @@
- print " OPENSSL_NO_$ALGO";
-
- if (/^err$/) { $flags .= "-DOPENSSL_NO_ERR "; }
-+ elsif (/^hw$/) { $flags .= "-DOPENSSL_NO_HW "; }
- elsif (/^asm$/) { $no_asm = 1; }
- }
- else
-@@ -1062,6 +1078,16 @@
- $withargs{"krb5-dir"} ne "";
- }
-
-+# enable the linux cryptodev (ocf-linux) support
-+if ($have_cryptodev)
-+ {
-+ if ($use_cryptodev_digests)
-+ {
-+ $cflags = "-DUSE_CRYPTODEV_DIGESTS $cflags";
-+ }
-+ $cflags = "-DHAVE_CRYPTODEV $cflags";
-+ }
-+
- # The DSO code currently always implements all functions so that no
- # applications will have to worry about that from a compilation point
- # of view. However, the "method"s may return zero unless that platform
-Index: libssl/INSTALL
-===================================================================
-RCS file: libssl/INSTALL,v
-retrieving revision 1.1.1.8
-retrieving revision 1.3
-diff -u -r1.1.1.8 -r1.3
---- libssl/INSTALL 15 Sep 2008 23:36:40 -0000 1.1.1.8
-+++ libssl/INSTALL 15 Sep 2008 23:44:15 -0000 1.3
-@@ -103,6 +103,12 @@
- define preprocessor symbols, specify additional libraries,
- library directories or other compiler options.
-
-+ --with-cryptodev Enabled the BSD cryptodev engine even if we are not using
-+ BSD. Useful if you are running ocf-linux or something
-+ similar. Once enabled you can also enable the use of
-+ cryptodev digests, with is usually slower unless you have
-+ large amounts data. Use --with-cryptodev-digests to force
-+ it.
-
- Installation in Detail
- ----------------------
-Index: libssl/Makefile.org
-===================================================================
-RCS file: libssl/Makefile.org,v
-retrieving revision 1.1.1.11
-retrieving revision 1.21
-diff -u -r1.1.1.11 -r1.21
---- libssl/Makefile.org 15 Sep 2008 23:36:40 -0000 1.1.1.11
-+++ libssl/Makefile.org 15 Sep 2008 23:44:15 -0000 1.21
-@@ -367,7 +367,7 @@
-
- links:
- @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
-- @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
-+ @$(PERL) $(TOP)/util/mklink.pl include/openssl $(HEADER) $(EXHEADER)
- @set -e; target=links; $(RECURSIVE_BUILD_CMD)
-
- gentests:
-Index: libssl/apps/apps.h
-===================================================================
-RCS file: libssl/apps/apps.h,v
-retrieving revision 1.1.1.7
-retrieving revision 1.6
-diff -u -r1.1.1.7 -r1.6
---- libssl/apps/apps.h 15 Sep 2008 23:36:40 -0000 1.1.1.7
-+++ libssl/apps/apps.h 15 Sep 2008 23:44:15 -0000 1.6
-@@ -112,7 +112,7 @@
- #ifndef HEADER_APPS_H
- #define HEADER_APPS_H
-
--#include "e_os.h"
-+#include <openssl/e_os.h>
-
- #include <openssl/bio.h>
- #include <openssl/x509.h>
-Index: libssl/apps/progs.h
-===================================================================
-RCS file: libssl/apps/progs.h,v
-retrieving revision 1.1.1.8
-retrieving revision 1.7
-diff -u -r1.1.1.8 -r1.7
---- libssl/apps/progs.h 15 Sep 2008 23:36:40 -0000 1.1.1.8
-+++ libssl/apps/progs.h 15 Sep 2008 23:44:15 -0000 1.7
-@@ -129,7 +129,9 @@
- #ifndef OPENSSL_NO_ENGINE
- {FUNC_TYPE_GENERAL,"engine",engine_main},
- #endif
-+#ifndef OPENSSL_NO_OCSP
- {FUNC_TYPE_GENERAL,"ocsp",ocsp_main},
-+#endif
- {FUNC_TYPE_GENERAL,"prime",prime_main},
- #ifndef OPENSSL_NO_MD2
- {FUNC_TYPE_MD,"md2",dgst_main},
-Index: libssl/apps/speed.c
-===================================================================
-RCS file: libssl/apps/speed.c,v
-retrieving revision 1.1.1.10
-retrieving revision 1.15
-diff -u -r1.1.1.10 -r1.15
---- libssl/apps/speed.c 15 Sep 2008 23:36:40 -0000 1.1.1.10
-+++ libssl/apps/speed.c 15 Sep 2008 23:44:15 -0000 1.15
-@@ -292,7 +292,7 @@
- "evp","sha256","sha512",
- "aes-128 ige","aes-192 ige","aes-256 ige"};
- static double results[ALGOR_NUM][SIZE_NUM];
--static int lengths[SIZE_NUM]={16,64,256,1024,8*1024};
-+static int lengths[SIZE_NUM]={16,64,256,1024,2*1024,4*1024};
- static double rsa_results[RSA_NUM][2];
- static double dsa_results[DSA_NUM][2];
- #ifndef OPENSSL_NO_ECDSA
-@@ -328,6 +328,79 @@
- #define START 0
- #define STOP 1
-
-+#ifdef __linux__
-+/*
-+ * record CPU usage as well
-+ */
-+
-+static int do_cpu = 0;
-+
-+struct cpu_stat {
-+ unsigned int user;
-+ unsigned int nice;
-+ unsigned int system;
-+ unsigned int idle;
-+ unsigned int total;
-+};
-+
-+static unsigned int cpu_usage[ALGOR_NUM][SIZE_NUM];
-+static unsigned int rsa_cpu_usage[RSA_NUM][2];
-+static unsigned int dsa_cpu_usage[DSA_NUM][2];
-+static struct cpu_stat cpu_start, cpu_finish;
-+
-+static void
-+get_cpu(int s)
-+{
-+ FILE *fp = NULL;
-+ unsigned char buf[80];
-+ struct cpu_stat *st = s == START ? &cpu_start : &cpu_finish;
-+
-+ memset(st, 0, sizeof(*st));
-+
-+ if (fp == NULL)
-+ fp = fopen("/proc/stat", "r");
-+ if (!fp)
-+ return;
-+ if (fseek(fp, 0, SEEK_SET) == -1) {
-+ fclose(fp);
-+ return;
-+ }
-+ fscanf(fp, "%s %d %d %d %d", &buf[0], &st->user, &st->nice,
-+ &st->system, &st->idle);
-+ st->total = st->user + st->nice + st->system + st->idle;
-+ fclose(fp);
-+}
-+
-+static unsigned int
-+calc_cpu()
-+{
-+ unsigned int total, res;
-+
-+ total = cpu_finish.total - cpu_start.total;
-+ if (total <= 0)
-+ return 0;
-+#if 1 // busy
-+ res = ((cpu_finish.system + cpu_finish.user + cpu_finish.nice) -
-+ (cpu_start.system + cpu_start.user + cpu_start.nice)) *
-+ 100 / total;
-+#endif
-+#if 0 // system
-+ res = (cpu_finish.system - cpu_start.system) * 100 / total;
-+#endif
-+#if 0 // user
-+ res = (cpu_finish.user - cpu_start.user) * 100 / total;
-+#endif
-+#if 0 // nice
-+ res = (cpu_finish.nice - cpu_start.nice) * 100 / total;
-+#endif
-+#if 0 // idle
-+ res = (cpu_finish.idle - cpu_start.idle) * 100 / total;
-+#endif
-+ return(res);
-+}
-+
-+#endif
-+
- #if defined(OPENSSL_SYS_NETWARE)
-
- /* for NetWare the best we can do is use clock() which returns the
-@@ -358,6 +431,11 @@
- {
- double ret;
-
-+#ifdef __linux__
-+ if (do_cpu)
-+ get_cpu(s);
-+#endif
-+
- #ifdef USE_TOD
- if(usertime)
- {
-@@ -832,6 +910,14 @@
- j--; /* Otherwise, -elapsed gets confused with
- an algorithm. */
- }
-+#ifdef __linux__
-+ else if ((argc > 0) && (strcmp(*argv,"-cpu") == 0))
-+ {
-+ do_cpu = 1;
-+ j--; /* Otherwise, -cpu gets confused with
-+ an algorithm. */
-+ }
-+#endif
- else if ((argc > 0) && (strcmp(*argv,"-evp") == 0))
- {
- argc--;
-@@ -1260,6 +1346,9 @@
- #ifdef HAVE_FORK
- BIO_printf(bio_err,"-multi n run n benchmarks in parallel.\n");
- #endif
-+#ifdef __linux__
-+ BIO_printf(bio_err,"-cpu calculate cpu utilisation.\n");
-+#endif
- goto end;
- }
- argc--;
-@@ -1267,11 +1356,6 @@
- j++;
- }
-
--#ifdef HAVE_FORK
-- if(multi && do_multi(multi))
-- goto show_res;
--#endif
--
- if (j == 0)
- {
- for (i=0; i<ALGOR_NUM; i++)
-@@ -1604,6 +1688,11 @@
- signal(SIGALRM,sig_done);
- #endif /* SIGALRM */
-
-+#ifdef HAVE_FORK /* DM */
-+ if(multi && do_multi(multi))
-+ goto show_res;
-+#endif
-+
- #ifndef OPENSSL_NO_MD2
- if (doit[D_MD2])
- {
-@@ -2033,8 +2122,6 @@
- /* -O3 -fschedule-insns messes up an
- * optimization here! names[D_EVP]
- * somehow becomes NULL */
-- print_message(names[D_EVP],save_count,
-- lengths[j]);
-
- EVP_CIPHER_CTX_init(&ctx);
- if(decrypt)
-@@ -2043,6 +2130,9 @@
- EVP_EncryptInit_ex(&ctx,evp_cipher,NULL,key16,iv);
- EVP_CIPHER_CTX_set_padding(&ctx, 0);
-
-+ print_message(names[D_EVP],save_count,
-+ lengths[j]);
-+
- Time_F(START);
- if(decrypt)
- for (count=0,run=1; COND(save_count*4*lengths[0]/lengths[j]); count++)
-@@ -2107,6 +2197,8 @@
- }
- }
- d=Time_F(STOP);
-+ if (do_cpu)
-+ rsa_cpu_usage[j][0] = calc_cpu();
- BIO_printf(bio_err,mr ? "+R1:%ld:%d:%.2f\n"
- : "%ld %d bit private RSA's in %.2fs\n",
- count,rsa_bits[j],d);
-@@ -2142,6 +2234,8 @@
- }
- }
- d=Time_F(STOP);
-+ if (do_cpu)
-+ rsa_cpu_usage[j][1] = calc_cpu();
- BIO_printf(bio_err,mr ? "+R2:%ld:%d:%.2f\n"
- : "%ld %d bit public RSA's in %.2fs\n",
- count,rsa_bits[j],d);
-@@ -2201,6 +2295,8 @@
- }
- }
- d=Time_F(STOP);
-+ if (do_cpu)
-+ dsa_cpu_usage[j][0] = calc_cpu();
- BIO_printf(bio_err,mr ? "+R3:%ld:%d:%.2f\n"
- : "%ld %d bit DSA signs in %.2fs\n",
- count,dsa_bits[j],d);
-@@ -2236,6 +2332,8 @@
- }
- }
- d=Time_F(STOP);
-+ if (do_cpu)
-+ dsa_cpu_usage[j][1] = calc_cpu();
- BIO_printf(bio_err,mr ? "+R4:%ld:%d:%.2f\n"
- : "%ld %d bit DSA verify in %.2fs\n",
- count,dsa_bits[j],d);
-@@ -2530,14 +2628,23 @@
- fprintf(stdout,"The 'numbers' are in 1000s of bytes per second processed.\n");
- fprintf(stdout,"type ");
- }
-- for (j=0; j<SIZE_NUM; j++)
-+ for (j=0; j<SIZE_NUM; j++) {
- fprintf(stdout,mr ? ":%d" : "%7d bytes",lengths[j]);
-+ if (do_cpu && !mr)
-+ fprintf(stdout, " /cpu");
-+ }
- fprintf(stdout,"\n");
- }
-
- for (k=0; k<ALGOR_NUM; k++)
- {
- if (!doit[k]) continue;
-+ if (k == D_EVP) {
-+ if (evp_cipher)
-+ names[D_EVP]=OBJ_nid2ln(evp_cipher->nid);
-+ else
-+ names[D_EVP]=OBJ_nid2ln(evp_md->type);
-+ }
- if(mr)
- fprintf(stdout,"+F:%d:%s",k,names[k]);
- else
-@@ -2548,6 +2655,8 @@
- fprintf(stdout," %11.2fk",results[k][j]/1e3);
- else
- fprintf(stdout,mr ? ":%.2f" : " %11.2f ",results[k][j]);
-+ if (do_cpu)
-+ fprintf(stdout, mr ? "/%d" : "/%%%-3d", cpu_usage[k][j]);
- }
- fprintf(stdout,"\n");
- }
-@@ -2562,13 +2671,18 @@
- j=0;
- }
- if(mr)
-- fprintf(stdout,"+F2:%u:%u:%f:%f\n",
-- k,rsa_bits[k],rsa_results[k][0],
-- rsa_results[k][1]);
-- else
-- fprintf(stdout,"rsa %4u bits %8.6fs %8.6fs %8.1f %8.1f\n",
-- rsa_bits[k],rsa_results[k][0],rsa_results[k][1],
-- 1.0/rsa_results[k][0],1.0/rsa_results[k][1]);
-+ fprintf(stdout,"+F2:%u:%u:%f", k,rsa_bits[k],rsa_results[k][0]);
-+ else
-+ fprintf(stdout,"rsa %4u bits %8.6fs",rsa_bits[k],rsa_results[k][0]);
-+ if (do_cpu)
-+ fprintf(stdout, mr ? "/%d": "/%%%-3d", rsa_cpu_usage[k][0]);
-+ fprintf(stdout, mr ? ":%f" : " %8.6fs", rsa_results[k][1]);
-+ if (do_cpu)
-+ fprintf(stdout, mr ? "/%d": "/%%%-3d", rsa_cpu_usage[k][1]);
-+ if(!mr)
-+ fprintf(stdout, " %8.1f %8.1f",
-+ 1.0/rsa_results[k][0],1.0/rsa_results[k][1]);
-+ fprintf(stdout, "\n");
- }
- #endif
- #ifndef OPENSSL_NO_DSA
-@@ -2582,12 +2696,18 @@
- j=0;
- }
- if(mr)
-- fprintf(stdout,"+F3:%u:%u:%f:%f\n",
-- k,dsa_bits[k],dsa_results[k][0],dsa_results[k][1]);
-+ fprintf(stdout,"+F3:%u:%u:%f", k,dsa_bits[k],dsa_results[k][0]);
- else
-- fprintf(stdout,"dsa %4u bits %8.6fs %8.6fs %8.1f %8.1f\n",
-- dsa_bits[k],dsa_results[k][0],dsa_results[k][1],
-- 1.0/dsa_results[k][0],1.0/dsa_results[k][1]);
-+ fprintf(stdout,"dsa %4u bits %8.6fs",dsa_bits[k],dsa_results[k][0]);
-+ if (do_cpu)
-+ fprintf(stdout, mr ? "/%d": "/%%%-3d", dsa_cpu_usage[k][0]);
-+ fprintf(stdout, mr ? ":%f" : " %8.6fs", dsa_results[k][1]);
-+ if (do_cpu)
-+ fprintf(stdout, mr ? "/%d": "/%%%-3d", dsa_cpu_usage[k][1]);
-+ if(!mr)
-+ fprintf(stdout, " %8.1f %8.1f",
-+ 1.0/dsa_results[k][0],1.0/dsa_results[k][1]);
-+ fprintf(stdout, "\n");
- }
- #endif
- #ifndef OPENSSL_NO_ECDSA
-@@ -2712,8 +2832,10 @@
-
- static void print_result(int alg,int run_no,int count,double time_used)
- {
-- BIO_printf(bio_err,mr ? "+R:%d:%s:%f\n"
-- : "%d %s's in %.2fs\n",count,names[alg],time_used);
-+ if (do_cpu)
-+ cpu_usage[alg][run_no] = calc_cpu();
-+ BIO_printf(bio_err,mr ? "+R:%ld:%s:%f\n"
-+ : "%ld %s's in %.2fs\n",count,names[alg],time_used);
- results[alg][run_no]=((double)count)/time_used*lengths[run_no];
- }
-
-@@ -2806,29 +2928,11 @@
- p=buf+3;
- alg=atoi(sstrsep(&p,sep));
- sstrsep(&p,sep);
-- for(j=0 ; j < SIZE_NUM ; ++j)
-+ for(j=0 ; j < SIZE_NUM ; ++j) {
-+ if (do_cpu && strchr(p, '/'))
-+ cpu_usage[alg][j] = atoi(strchr(p, '/') + 1);
- results[alg][j]+=atof(sstrsep(&p,sep));
- }
-- else if(!strncmp(buf,"+F2:",4))
-- {
-- int k;
-- double d;
--
-- p=buf+4;
-- k=atoi(sstrsep(&p,sep));
-- sstrsep(&p,sep);
--
-- d=atof(sstrsep(&p,sep));
-- if(n)
-- rsa_results[k][0]=1/(1/rsa_results[k][0]+1/d);
-- else
-- rsa_results[k][0]=d;
--
-- d=atof(sstrsep(&p,sep));
-- if(n)
-- rsa_results[k][1]=1/(1/rsa_results[k][1]+1/d);
-- else
-- rsa_results[k][1]=d;
- }
- else if(!strncmp(buf,"+F2:",4))
- {
-@@ -2839,12 +2943,18 @@
- k=atoi(sstrsep(&p,sep));
- sstrsep(&p,sep);
-
-+ /* before we move the token along */
-+ if (do_cpu && strchr(p, '/'))
-+ rsa_cpu_usage[k][0] = atoi(strchr(p, '/') + 1);
- d=atof(sstrsep(&p,sep));
- if(n)
- rsa_results[k][0]=1/(1/rsa_results[k][0]+1/d);
- else
- rsa_results[k][0]=d;
-
-+ /* before we move the token along */
-+ if (do_cpu && strchr(p, '/'))
-+ rsa_cpu_usage[k][1] = atoi(strchr(p, '/') + 1);
- d=atof(sstrsep(&p,sep));
- if(n)
- rsa_results[k][1]=1/(1/rsa_results[k][1]+1/d);
-@@ -2860,12 +2970,18 @@
- k=atoi(sstrsep(&p,sep));
- sstrsep(&p,sep);
-
-+ /* before we move the token along */
-+ if (do_cpu && strchr(p, '/'))
-+ dsa_cpu_usage[k][0] = atoi(strchr(p, '/') + 1);
- d=atof(sstrsep(&p,sep));
- if(n)
- dsa_results[k][0]=1/(1/dsa_results[k][0]+1/d);
- else
- dsa_results[k][0]=d;
-
-+ /* before we move the token along */
-+ if (do_cpu && strchr(p, '/'))
-+ dsa_cpu_usage[k][1] = atoi(strchr(p, '/') + 1);
- d=atof(sstrsep(&p,sep));
- if(n)
- dsa_results[k][1]=1/(1/dsa_results[k][1]+1/d);
-Index: libssl/crypto/cryptlib.h
-===================================================================
-RCS file: libssl/crypto/cryptlib.h,v
-retrieving revision 1.1.1.5
-retrieving revision 1.4
-diff -u -r1.1.1.5 -r1.4
---- libssl/crypto/cryptlib.h 15 Sep 2008 23:36:40 -0000 1.1.1.5
-+++ libssl/crypto/cryptlib.h 15 Sep 2008 23:44:15 -0000 1.4
-@@ -62,7 +62,7 @@
- #include <stdlib.h>
- #include <string.h>
-
--#include "e_os.h"
-+#include <openssl/e_os.h>
-
- #ifdef OPENSSL_USE_APPLINK
- #define BIO_FLAGS_UPLINK 0x8000
-Index: libssl/crypto/engine/eng_all.c
-===================================================================
-RCS file: libssl/crypto/engine/eng_all.c,v
-retrieving revision 1.1.1.4
-retrieving revision 1.6
-diff -u -r1.1.1.4 -r1.6
---- libssl/crypto/engine/eng_all.c 15 Sep 2008 23:36:41 -0000 1.1.1.4
-+++ libssl/crypto/engine/eng_all.c 15 Sep 2008 23:44:16 -0000 1.6
-@@ -104,7 +104,7 @@
- #endif
- #endif
- #ifndef OPENSSL_NO_HW
--#if defined(__OpenBSD__) || defined(__FreeBSD__)
-+#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
- ENGINE_load_cryptodev();
- #endif
- #if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
-@@ -113,7 +113,7 @@
- #endif
- }
-
--#if defined(__OpenBSD__) || defined(__FreeBSD__)
-+#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
- void ENGINE_setup_bsd_cryptodev(void) {
- static int bsd_cryptodev_default_loaded = 0;
- if (!bsd_cryptodev_default_loaded) {
-Index: libssl/crypto/engine/eng_cryptodev.c
-===================================================================
-RCS file: libssl/crypto/engine/eng_cryptodev.c,v
-retrieving revision 1.1.1.1
-retrieving revision 1.9
-diff -u -r1.1.1.1 -r1.9
---- libssl/crypto/engine/eng_cryptodev.c 3 Feb 2006 00:06:09 -0000 1.1.1.1
-+++ libssl/crypto/engine/eng_cryptodev.c 4 Aug 2008 00:51:09 -0000 1.9
-@@ -68,6 +68,16 @@
- struct dev_crypto_state {
- struct session_op d_sess;
- int d_fd;
-+
-+#ifdef USE_CRYPTODEV_DIGESTS
-+ char dummy_mac_key[20];
-+
-+ unsigned char digest_res[20];
-+ char *mac_data;
-+ int mac_len;
-+
-+ int copy;
-+#endif
- };
-
- static u_int32_t cryptodev_asymfeat = 0;
-@@ -75,9 +85,11 @@
- static int get_asym_dev_crypto(void);
- static int open_dev_crypto(void);
- static int get_dev_crypto(void);
-+#if 0
- static int cryptodev_max_iv(int cipher);
- static int cryptodev_key_length_valid(int cipher, int len);
- static int cipher_nid_to_cryptodev(int nid);
-+#endif
- static int get_cryptodev_ciphers(const int **cnids);
- static int get_cryptodev_digests(const int **cnids);
- static int cryptodev_usable_ciphers(const int **nids);
-@@ -100,7 +112,7 @@
- static int cryptodev_bn_mod_exp(BIGNUM *r, const BIGNUM *a,
- const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
- static int cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I,
-- RSA *rsa);
-+ RSA *rsa, BN_CTX *ctx);
- static int cryptodev_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx);
- static int cryptodev_dsa_bn_mod_exp(DSA *dsa, BIGNUM *r, BIGNUM *a,
- const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
-@@ -130,9 +142,12 @@
- int ivmax;
- int keylen;
- } ciphers[] = {
-+ { CRYPTO_ARC4, NID_rc4, 0, 16, },
- { CRYPTO_DES_CBC, NID_des_cbc, 8, 8, },
- { CRYPTO_3DES_CBC, NID_des_ede3_cbc, 8, 24, },
- { CRYPTO_AES_CBC, NID_aes_128_cbc, 16, 16, },
-+ { CRYPTO_AES_CBC, NID_aes_192_cbc, 16, 24, },
-+ { CRYPTO_AES_CBC, NID_aes_256_cbc, 16, 32, },
- { CRYPTO_BLF_CBC, NID_bf_cbc, 8, 16, },
- { CRYPTO_CAST_CBC, NID_cast5_cbc, 8, 16, },
- { CRYPTO_SKIPJACK_CBC, NID_undef, 0, 0, },
-@@ -142,14 +157,15 @@
- static struct {
- int id;
- int nid;
-+ int keylen;
- } digests[] = {
-- { CRYPTO_SHA1_HMAC, NID_hmacWithSHA1, },
-- { CRYPTO_RIPEMD160_HMAC, NID_ripemd160, },
-- { CRYPTO_MD5_KPDK, NID_undef, },
-- { CRYPTO_SHA1_KPDK, NID_undef, },
-- { CRYPTO_MD5, NID_md5, },
-- { CRYPTO_SHA1, NID_undef, },
-- { 0, NID_undef, },
-+ { CRYPTO_SHA1_HMAC, NID_hmacWithSHA1, 20},
-+ { CRYPTO_RIPEMD160_HMAC, NID_ripemd160, 16/*?*/},
-+ { CRYPTO_MD5_KPDK, NID_undef, 0},
-+ { CRYPTO_SHA1_KPDK, NID_undef, 0},
-+ { CRYPTO_MD5, NID_md5, 16},
-+ { CRYPTO_SHA1, NID_sha1, 20},
-+ { 0, NID_undef, 0},
- };
-
- /*
-@@ -176,10 +192,17 @@
- static int
- get_dev_crypto(void)
- {
-- int fd, retfd;
-+ static int fd = -1;
-+ int retfd;
-
-- if ((fd = open_dev_crypto()) == -1)
-- return (-1);
-+ if (fd == -1) {
-+ if ((fd = open_dev_crypto()) == -1)
-+ return (-1);
-+ if (fcntl(fd, F_SETFD, 1) == -1) {
-+ close(fd);
-+ return (-1);
-+ }
-+ }
- if (ioctl(fd, CRIOGET, &retfd) == -1)
- return (-1);
-
-@@ -202,6 +225,7 @@
- return fd;
- }
-
-+#if 0
- /*
- * XXXX this needs to be set for each alg - and determined from
- * a running card.
-@@ -245,6 +269,7 @@
- return (ciphers[i].id);
- return (0);
- }
-+#endif
-
- /*
- * Find out what ciphers /dev/crypto will let us have a session for.
-@@ -264,7 +289,7 @@
- return (0);
- }
- memset(&sess, 0, sizeof(sess));
-- sess.key = (caddr_t)"123456781234567812345678";
-+ sess.key = (caddr_t)"123456789abcdefghijklmno";
-
- for (i = 0; ciphers[i].id && count < CRYPTO_ALGORITHM_MAX; i++) {
- if (ciphers[i].nid == NID_undef)
-@@ -303,10 +328,12 @@
- return (0);
- }
- memset(&sess, 0, sizeof(sess));
-+ sess.mackey = (caddr_t)"123456789abcdefghijklmno";
- for (i = 0; digests[i].id && count < CRYPTO_ALGORITHM_MAX; i++) {
- if (digests[i].nid == NID_undef)
- continue;
- sess.mac = digests[i].id;
-+ sess.mackeylen = digests[i].keylen;
- sess.cipher = 0;
- if (ioctl(fd, CIOCGSESSION, &sess) != -1 &&
- ioctl(fd, CIOCFSESSION, &sess.ses) != -1)
-@@ -351,6 +378,9 @@
- static int
- cryptodev_usable_digests(const int **nids)
- {
-+#ifdef USE_CRYPTODEV_DIGESTS
-+ return (get_cryptodev_digests(nids));
-+#else
- /*
- * XXXX just disable all digests for now, because it sucks.
- * we need a better way to decide this - i.e. I may not
-@@ -365,6 +395,7 @@
- */
- *nids = NULL;
- return (0);
-+#endif
- }
-
- static int
-@@ -427,16 +458,20 @@
- {
- struct dev_crypto_state *state = ctx->cipher_data;
- struct session_op *sess = &state->d_sess;
-- int cipher;
-+ int cipher, i;
-
-- if ((cipher = cipher_nid_to_cryptodev(ctx->cipher->nid)) == NID_undef)
-- return (0);
--
-- if (ctx->cipher->iv_len > cryptodev_max_iv(cipher))
-- return (0);
-+ for (i = 0; ciphers[i].id; i++)
-+ if (ctx->cipher->nid == ciphers[i].nid &&
-+ ctx->cipher->iv_len <= ciphers[i].ivmax &&
-+ ctx->key_len == ciphers[i].keylen) {
-+ cipher = ciphers[i].id;
-+ break;
-+ }
-
-- if (!cryptodev_key_length_valid(cipher, ctx->key_len))
-+ if (!ciphers[i].id) {
-+ state->d_fd = -1;
- return (0);
-+ }
-
- memset(sess, 0, sizeof(struct session_op));
-
-@@ -496,6 +531,20 @@
- * gets called when libcrypto requests a cipher NID.
- */
-
-+/* RC4 */
-+const EVP_CIPHER cryptodev_rc4 = {
-+ NID_rc4,
-+ 1, 16, 0,
-+ EVP_CIPH_VARIABLE_LENGTH,
-+ cryptodev_init_key,
-+ cryptodev_cipher,
-+ cryptodev_cleanup,
-+ sizeof(struct dev_crypto_state),
-+ NULL,
-+ NULL,
-+ NULL
-+};
-+
- /* DES CBC EVP */
- const EVP_CIPHER cryptodev_des_cbc = {
- NID_des_cbc,
-@@ -563,6 +612,32 @@
- NULL
- };
-
-+const EVP_CIPHER cryptodev_aes_192_cbc = {
-+ NID_aes_192_cbc,
-+ 16, 24, 16,
-+ EVP_CIPH_CBC_MODE,
-+ cryptodev_init_key,
-+ cryptodev_cipher,
-+ cryptodev_cleanup,
-+ sizeof(struct dev_crypto_state),
-+ EVP_CIPHER_set_asn1_iv,
-+ EVP_CIPHER_get_asn1_iv,
-+ NULL
-+};
-+
-+const EVP_CIPHER cryptodev_aes_256_cbc = {
-+ NID_aes_256_cbc,
-+ 16, 32, 16,
-+ EVP_CIPH_CBC_MODE,
-+ cryptodev_init_key,
-+ cryptodev_cipher,
-+ cryptodev_cleanup,
-+ sizeof(struct dev_crypto_state),
-+ EVP_CIPHER_set_asn1_iv,
-+ EVP_CIPHER_get_asn1_iv,
-+ NULL
-+};
-+
- /*
- * Registered by the ENGINE when used to find out how to deal with
- * a particular NID in the ENGINE. this says what we'll do at the
-@@ -576,6 +651,9 @@
- return (cryptodev_usable_ciphers(nids));
-
- switch (nid) {
-+ case NID_rc4:
-+ *cipher = &cryptodev_rc4;
-+ break;
- case NID_des_ede3_cbc:
- *cipher = &cryptodev_3des_cbc;
- break;
-@@ -591,6 +669,12 @@
- case NID_aes_128_cbc:
- *cipher = &cryptodev_aes_cbc;
- break;
-+ case NID_aes_192_cbc:
-+ *cipher = &cryptodev_aes_192_cbc;
-+ break;
-+ case NID_aes_256_cbc:
-+ *cipher = &cryptodev_aes_256_cbc;
-+ break;
- default:
- *cipher = NULL;
- break;
-@@ -598,6 +682,234 @@
- return (*cipher != NULL);
- }
-
-+
-+#ifdef USE_CRYPTODEV_DIGESTS
-+
-+/* convert digest type to cryptodev */
-+static int
-+digest_nid_to_cryptodev(int nid)
-+{
-+ int i;
-+
-+ for (i = 0; digests[i].id; i++)
-+ if (digests[i].nid == nid)
-+ return (digests[i].id);
-+ return (0);
-+}
-+
-+
-+static int
-+digest_key_length(int nid)
-+{
-+ int i;
-+
-+ for (i = 0; digests[i].id; i++)
-+ if (digests[i].nid == nid)
-+ return digests[i].keylen;
-+ return (0);
-+}
-+
-+
-+static int cryptodev_digest_init(EVP_MD_CTX *ctx)
-+{
-+ struct dev_crypto_state *state = ctx->md_data;
-+ struct session_op *sess = &state->d_sess;
-+ int digest;
-+
-+ if ((digest = digest_nid_to_cryptodev(ctx->digest->type)) == NID_undef){
-+ printf("cryptodev_digest_init: Can't get digest \n");
-+ return (0);
-+ }
-+
-+ memset(state, 0, sizeof(struct dev_crypto_state));
-+
-+ if ((state->d_fd = get_dev_crypto()) < 0) {
-+ printf("cryptodev_digest_init: Can't get Dev \n");
-+ return (0);
-+ }
-+
-+ sess->mackey = state->dummy_mac_key;
-+ sess->mackeylen = digest_key_length(ctx->digest->type);
-+ sess->mac = digest;
-+
-+ if (ioctl(state->d_fd, CIOCGSESSION, sess) < 0) {
-+ close(state->d_fd);
-+ state->d_fd = -1;
-+ printf("cryptodev_digest_init: Open session failed\n");
-+ return (0);
-+ }
-+
-+ return (1);
-+}
-+
-+static int cryptodev_digest_update(EVP_MD_CTX *ctx, const void *data,
-+ size_t count)
-+{
-+ struct crypt_op cryp;
-+ struct dev_crypto_state *state = ctx->md_data;
-+ struct session_op *sess = &state->d_sess;
-+
-+ if (!data || state->d_fd < 0) {
-+ printf("cryptodev_digest_update: illegal inputs \n");
-+ return (0);
-+ }
-+
-+ if (!count) {
-+ return (0);
-+ }
-+
-+ if (!(ctx->flags & EVP_MD_CTX_FLAG_ONESHOT)) {
-+ /* if application doesn't support one buffer */
-+ state->mac_data = OPENSSL_realloc(state->mac_data, state->mac_len + count);
-+
-+ if (!state->mac_data) {
-+ printf("cryptodev_digest_update: realloc failed\n");
-+ return (0);
-+ }
-+
-+ memcpy(state->mac_data + state->mac_len, data, count);
-+ state->mac_len += count;
-+
-+ return (1);
-+ }
-+
-+ memset(&cryp, 0, sizeof(cryp));
-+
-+ cryp.ses = sess->ses;
-+ cryp.flags = 0;
-+ cryp.len = count;
-+ cryp.src = (caddr_t) data;
-+ cryp.dst = NULL;
-+ cryp.mac = state->digest_res;
-+ if (ioctl(state->d_fd, CIOCCRYPT, &cryp) < 0) {
-+ printf("cryptodev_digest_update: digest failed\n");
-+ return (0);
-+ }
-+ return (1);
-+}
-+
-+
-+static int cryptodev_digest_final(EVP_MD_CTX *ctx, unsigned char *md)
-+{
-+ struct crypt_op cryp;
-+ struct dev_crypto_state *state = ctx->md_data;
-+ struct session_op *sess = &state->d_sess;
-+
-+ int ret = 1;
-+
-+ if (!md || state->d_fd < 0) {
-+ printf("cryptodev_digest_final: illegal input\n");
-+ return(0);
-+ }
-+
-+ if (! (ctx->flags & EVP_MD_CTX_FLAG_ONESHOT) ) {
-+ /* if application doesn't support one buffer */
-+ memset(&cryp, 0, sizeof(cryp));
-+
-+ cryp.ses = sess->ses;
-+ cryp.flags = 0;
-+ cryp.len = state->mac_len;
-+ cryp.src = state->mac_data;
-+ cryp.dst = NULL;
-+ cryp.mac = md;
-+
-+ if (ioctl(state->d_fd, CIOCCRYPT, &cryp) < 0) {
-+ printf("cryptodev_digest_final: digest failed\n");
-+ return (0);
-+ }
-+
-+ return 1;
-+ }
-+
-+ memcpy(md, state->digest_res, ctx->digest->md_size);
-+
-+ return (ret);
-+}
-+
-+
-+static int cryptodev_digest_cleanup(EVP_MD_CTX *ctx)
-+{
-+ int ret = 1;
-+ struct dev_crypto_state *state = ctx->md_data;
-+ struct session_op *sess = &state->d_sess;
-+
-+ if (state->d_fd < 0) {
-+ printf("cryptodev_digest_cleanup: illegal input\n");
-+ return (0);
-+ }
-+
-+ if (state->mac_data) {
-+ OPENSSL_free(state->mac_data);
-+ state->mac_data = NULL;
-+ state->mac_len = 0;
-+ }
-+
-+ if (state->copy)
-+ return 1;
-+
-+ if (ioctl(state->d_fd, CIOCFSESSION, &sess->ses) < 0) {
-+ printf("cryptodev_digest_cleanup: failed to close session\n");
-+ ret = 0;
-+ } else {
-+ ret = 1;
-+ }
-+ close(state->d_fd);
-+ state->d_fd = -1;
-+
-+ return (ret);
-+}
-+
-+static int cryptodev_digest_copy(EVP_MD_CTX *to,const EVP_MD_CTX *from)
-+{
-+ struct dev_crypto_state *fstate = from->md_data;
-+ struct dev_crypto_state *dstate = to->md_data;
-+
-+ memcpy(dstate, fstate, sizeof(struct dev_crypto_state));
-+
-+ if (fstate->mac_len != 0) {
-+ dstate->mac_data = OPENSSL_malloc(fstate->mac_len);
-+ memcpy(dstate->mac_data, fstate->mac_data, fstate->mac_len);
-+ }
-+
-+ dstate->copy = 1;
-+
-+ return 1;
-+}
-+
-+
-+const EVP_MD cryptodev_sha1 = {
-+ NID_sha1,
-+ NID_undef,
-+ SHA_DIGEST_LENGTH,
-+ EVP_MD_FLAG_ONESHOT,
-+ cryptodev_digest_init,
-+ cryptodev_digest_update,
-+ cryptodev_digest_final,
-+ cryptodev_digest_copy,
-+ cryptodev_digest_cleanup,
-+ EVP_PKEY_NULL_method,
-+ SHA_CBLOCK,
-+ sizeof(struct dev_crypto_state),
-+};
-+
-+const EVP_MD cryptodev_md5 = {
-+ NID_md5,
-+ NID_undef,
-+ 16 /* MD5_DIGEST_LENGTH */,
-+ EVP_MD_FLAG_ONESHOT,
-+ cryptodev_digest_init,
-+ cryptodev_digest_update,
-+ cryptodev_digest_final,
-+ cryptodev_digest_copy,
-+ cryptodev_digest_cleanup,
-+ EVP_PKEY_NULL_method,
-+ 64 /* MD5_CBLOCK */,
-+ sizeof(struct dev_crypto_state),
-+};
-+
-+#endif /* USE_CRYPTODEV_DIGESTS */
-+
-+
- static int
- cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest,
- const int **nids, int nid)
-@@ -606,10 +918,15 @@
- return (cryptodev_usable_digests(nids));
-
- switch (nid) {
-+#ifdef USE_CRYPTODEV_DIGESTS
- case NID_md5:
-- *digest = NULL; /* need to make a clean md5 critter */
-+ *digest = &cryptodev_md5;
- break;
-+ case NID_sha1:
-+ *digest = &cryptodev_sha1;
-+ break;
- default:
-+#endif /* USE_CRYPTODEV_DIGESTS */
- *digest = NULL;
- break;
- }
-@@ -625,7 +942,7 @@
- bn2crparam(const BIGNUM *a, struct crparam *crp)
- {
- int i, j, k;
-- ssize_t words, bytes, bits;
-+ ssize_t bytes, bits;
- u_char *b;
-
- crp->crp_p = NULL;
-@@ -637,6 +954,7 @@
- b = malloc(bytes);
- if (b == NULL)
- return (1);
-+ memset(b, 0, bytes);
-
- crp->crp_p = b;
- crp->crp_nbits = bits;
-@@ -681,7 +999,7 @@
- {
- int i;
-
-- for (i = 0; i <= kop->crk_iparams + kop->crk_oparams; i++) {
-+ for (i = 0; i < kop->crk_iparams + kop->crk_oparams; i++) {
- if (kop->crk_param[i].crp_p)
- free(kop->crk_param[i].crp_p);
- kop->crk_param[i].crp_p = NULL;
-@@ -756,12 +1074,10 @@
- }
-
- static int
--cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa)
-+cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
- {
- int r;
-- BN_CTX *ctx;
--
-- ctx = BN_CTX_new();
-+ ctx = BN_CTX_new(); /* not sure why we reallocate this. DM */
- r = cryptodev_bn_mod_exp(r0, I, rsa->d, rsa->n, ctx, NULL);
- BN_CTX_free(ctx);
- return (r);
-Index: libssl/crypto/engine/engine.h
-===================================================================
-RCS file: libssl/crypto/engine/engine.h,v
-retrieving revision 1.1.1.6
-retrieving revision 1.6
-diff -u -r1.1.1.6 -r1.6
---- libssl/crypto/engine/engine.h 15 Sep 2008 23:36:41 -0000 1.1.1.6
-+++ libssl/crypto/engine/engine.h 15 Sep 2008 23:44:16 -0000 1.6
-@@ -703,7 +703,7 @@
- * values. */
- void *ENGINE_get_static_state(void);
-
--#if defined(__OpenBSD__) || defined(__FreeBSD__)
-+#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
- void ENGINE_setup_bsd_cryptodev(void);
- #endif
-
-Index: libssl/crypto/evp/c_all.c
-===================================================================
-RCS file: libssl/crypto/evp/c_all.c,v
-retrieving revision 1.1.1.4
-retrieving revision 1.3
-diff -u -r1.1.1.4 -r1.3
---- libssl/crypto/evp/c_all.c 3 Feb 2006 00:06:07 -0000 1.1.1.4
-+++ libssl/crypto/evp/c_all.c 23 Jul 2007 12:23:31 -0000 1.3
-@@ -83,7 +83,7 @@
- OpenSSL_add_all_ciphers();
- OpenSSL_add_all_digests();
- #ifndef OPENSSL_NO_ENGINE
--# if defined(__OpenBSD__) || defined(__FreeBSD__)
-+# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
- ENGINE_setup_bsd_cryptodev();
- # endif
- #endif
-Index: libssl/crypto/evp/c_alld.c
-===================================================================
-RCS file: libssl/crypto/evp/c_alld.c,v
-retrieving revision 1.1.1.4
-retrieving revision 1.3
-diff -u -r1.1.1.4 -r1.3
---- libssl/crypto/evp/c_alld.c 3 Feb 2006 00:06:07 -0000 1.1.1.4
-+++ libssl/crypto/evp/c_alld.c 3 Feb 2006 00:36:44 -0000 1.3
-@@ -81,7 +81,7 @@
- EVP_add_digest(EVP_dss());
- #endif
- #endif
--#ifndef OPENSSL_NO_SHA
-+#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1)
- EVP_add_digest(EVP_sha1());
- EVP_add_digest_alias(SN_sha1,"ssl3-sha1");
- EVP_add_digest_alias(SN_sha1WithRSAEncryption,SN_sha1WithRSA);
-Index: libssl/engines/Makefile
-===================================================================
-RCS file: libssl/engines/Makefile,v
-retrieving revision 1.1.1.3
-retrieving revision 1.3
-diff -u -r1.1.1.3 -r1.3
---- libssl/engines/Makefile 15 Sep 2008 23:36:41 -0000 1.1.1.3
-+++ libssl/engines/Makefile 15 Sep 2008 23:44:16 -0000 1.3
-@@ -96,6 +96,7 @@
- ( echo installing $$l; \
- if [ "$(PLATFORM)" != "Cygwin" ]; then \
- case "$(CFLAGS)" in \
-+ *OPENSSL_NO_HW*) continue;; \
- *DSO_DLFCN*) sfx="so";; \
- *DSO_DL*) sfx="sl";; \
- *) sfx="bad";; \
diff --git a/package/openssl/patches/patch-Configure b/package/openssl/patches/patch-Configure
index fb07479f9..9275cd530 100644
--- a/package/openssl/patches/patch-Configure
+++ b/package/openssl/patches/patch-Configure
@@ -1,10 +1,9 @@
-diff -Nur openssl-0.9.8l.orig/Configure openssl-0.9.8l/Configure
---- openssl-0.9.8l.orig/Configure 2009-11-05 13:07:06.000000000 +0100
-+++ openssl-0.9.8l/Configure 2009-12-06 02:14:45.000000000 +0100
-@@ -364,6 +364,7 @@
- "linux-alpha+bwx-gcc","gcc:-O3 -DL_ENDIAN -DTERMIO::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- "linux-alpha-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${no_asm}",
- "linux-alpha+bwx-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${no_asm}",
+--- openssl-1.0.0.orig/Configure 2010-01-19 22:40:54.000000000 +0100
++++ openssl-1.0.0/Configure 2010-05-29 15:58:43.561613735 +0200
+@@ -379,6 +379,7 @@ my %table=(
+ "linux-alpha+bwx-gcc","gcc:-O3 -DL_ENDIAN -DTERMIO::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL:${alpha_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ "linux-alpha-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${alpha_asm}",
+ "linux-alpha+bwx-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${alpha_asm}",
+"linux-embedded","gcc:-DTERMIO \$(OPTIMIZATION_FLAGS) -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
#### *BSD [do see comment about ${BSDthreads} above!]
diff --git a/package/openssl/patches/patch-Makefile_shared b/package/openssl/patches/patch-Makefile_shared
deleted file mode 100644
index 7665b6ce9..000000000
--- a/package/openssl/patches/patch-Makefile_shared
+++ /dev/null
@@ -1,19 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- openssl-0.9.8j.orig/Makefile.shared 2008-09-17 17:56:40.000000000 +0200
-+++ openssl-0.9.8j/Makefile.shared 2009-01-08 14:29:26.619518188 +0100
-@@ -93,7 +93,6 @@ LINK_APP= \
- LDCMD="$${LDCMD:-$(CC)}"; LDFLAGS="$${LDFLAGS:-$(CFLAGS)}"; \
- LIBPATH=`for x in $$LIBDEPS; do if echo $$x | grep '^ *-L' > /dev/null 2>&1; then echo $$x | sed -e 's/^ *-L//'; fi; done | uniq`; \
- LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
-- LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
- $${LDCMD} $${LDFLAGS} -o $${APPNAME:=$(APPNAME)} $(OBJECTS) $${LIBDEPS} )
-
- LINK_SO= \
-@@ -103,7 +102,6 @@ LINK_SO= \
- SHAREDFLAGS="$${SHAREDFLAGS:-$(CFLAGS) $(SHARED_LDFLAGS)}"; \
- LIBPATH=`for x in $$LIBDEPS; do if echo $$x | grep '^ *-L' > /dev/null 2>&1; then echo $$x | sed -e 's/^ *-L//'; fi; done | uniq`; \
- LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
-- LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
- $${SHAREDCMD} $${SHAREDFLAGS} \
- -o $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX \
- $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS $$LIBDEPS \
diff --git a/package/openssl/patches/patch-apps_speed_c b/package/openssl/patches/patch-apps_speed_c
deleted file mode 100644
index 3fd410d7a..000000000
--- a/package/openssl/patches/patch-apps_speed_c
+++ /dev/null
@@ -1,16 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- openssl-0.9.8i.orig/apps/speed.c 2007-11-15 14:33:47.000000000 +0100
-+++ openssl-0.9.8i/apps/speed.c 2008-10-22 11:47:28.000000000 +0200
-@@ -110,10 +110,10 @@
-
- #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(OPENSSL_SYS_MACOSX)
- # define USE_TOD
--#elif !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VXWORKS) && (!defined(OPENSSL_SYS_VMS) || defined(__DECC))
-+#elif !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VXWORKS) && (!defined(OPENSSL_SYS_VMS) || defined(__DECC)) && defined(__linux__)
- # define TIMES
- #endif
--#if !defined(_UNICOS) && !defined(__OpenBSD__) && !defined(sgi) && !defined(__FreeBSD__) && !(defined(__bsdi) || defined(__bsdi__)) && !defined(_AIX) && !defined(OPENSSL_SYS_MPE) && !defined(__NetBSD__) && !defined(OPENSSL_SYS_VXWORKS) /* FIXME */
-+#if !defined(_UNICOS) && !defined(__OpenBSD__) && !defined(sgi) && !defined(__FreeBSD__) && !(defined(__bsdi) || defined(__bsdi__)) && !defined(_AIX) && !defined(OPENSSL_SYS_MPE) && !defined(__NetBSD__) && !defined(OPENSSL_SYS_VXWORKS) && !defined(__linux__) /* FIXME */
- # define TIMEB
- #endif
-
diff --git a/package/openssl/patches/patch-util_shlib_wrap_sh b/package/openssl/patches/patch-util_shlib_wrap_sh
deleted file mode 100644
index b7a56f304..000000000
--- a/package/openssl/patches/patch-util_shlib_wrap_sh
+++ /dev/null
@@ -1,17 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- openssl-0.9.8j.orig/util/shlib_wrap.sh 2007-08-27 10:52:57.000000000 +0200
-+++ openssl-0.9.8j/util/shlib_wrap.sh 2009-01-08 14:11:14.967293819 +0100
-@@ -57,11 +57,10 @@ SunOS|IRIX*)
- eval $rld_var=\"${THERE}'${'$rld_var':+:$'$rld_var'}'\"; export $rld_var
- unset rld_var
- ;;
--*) LD_LIBRARY_PATH="${THERE}:$LD_LIBRARY_PATH" # Linux, ELF HP-UX
-- DYLD_LIBRARY_PATH="${THERE}:$DYLD_LIBRARY_PATH" # MacOS X
-+*) DYLD_LIBRARY_PATH="${THERE}:$DYLD_LIBRARY_PATH" # MacOS X
- SHLIB_PATH="${THERE}:$SHLIB_PATH" # legacy HP-UX
- LIBPATH="${THERE}:$LIBPATH" # AIX, OS/2
-- export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH
-+ export DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH
- # Even though $PATH is adjusted [for Windows sake], it doesn't
- # necessarily does the trick. Trouble is that with introduction
- # of SafeDllSearchMode in XP/2003 it's more appropriate to copy
diff --git a/package/openswan/Makefile b/package/openswan/Makefile
index 6c0adce62..13110a76d 100644
--- a/package/openswan/Makefile
+++ b/package/openswan/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= openswan
-PKG_VERSION:= 2.6.24
+PKG_VERSION:= 2.6.26
PKG_RELEASE:= 1
-PKG_MD5SUM:= 1c76b6982c05392f7c360afb92699661
+PKG_MD5SUM:= ac514a8c09d871407b16848c67d0d806
PKG_DESCR:= IPSec software
PKG_SECTION:= net
PKG_DEPENDS:= ip libgmp
diff --git a/package/pcre/Makefile b/package/pcre/Makefile
index db1b57920..aabb33acf 100644
--- a/package/pcre/Makefile
+++ b/package/pcre/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= pcre
-PKG_VERSION:= 8.00
+PKG_VERSION:= 8.02
PKG_RELEASE:= 1
-PKG_MD5SUM:= c95500eeda12c8c7edc6b0926d60952c
+PKG_MD5SUM:= 214462e9718e3f9197cba114dc6b00b8
PKG_DESCR:= a Perl Compatible Regular Expression library
PKG_SECTION:= libs
PKG_URL:= http://www.pcre.org
diff --git a/package/postgresql/Makefile b/package/postgresql/Makefile
index 3f89ddf1c..4419a3c61 100644
--- a/package/postgresql/Makefile
+++ b/package/postgresql/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= postgresql
-PKG_VERSION:= 8.3.7
+PKG_VERSION:= 8.4.4
PKG_RELEASE:= 1
-PKG_MD5SUM:= 6e36f3b4dd27ae0c352376ea9f843de2
+PKG_MD5SUM:= ae7f305eb9388b187e8f07dee0cec55c
PKG_DESCR:= PostgreSQL database library
PKG_SECTION:= libs
PKG_BUILDDEP+= zlib
@@ -25,17 +25,14 @@ INSTALL_STYLE:= manual
PKG_CONFIGURE_ARGS:=\
--disable-integer-datetimes \
- --without-java \
- --without-krb4 \
--without-krb5 \
--without-openssl \
--without-pam \
--without-perl \
--without-python \
--without-readline \
- --without-rendezvous \
+ --without-bonjour \
--without-tcl \
- --without-tk \
--with-zlib="yes"
CONFIGURE_ARGS+= ${PKG_CONFIGURE_ARGS}
@@ -60,6 +57,6 @@ do-build:
do-install:
${INSTALL_DIR} ${IDIR_LIBPQ}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libpq.so.* ${IDIR_LIBPQ}/usr/lib
+ ${CP} ${WRKINST}/usr/lib/libpq.so* ${IDIR_LIBPQ}/usr/lib
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/postgresql/patches/patch-src_include_Makefile b/package/postgresql/patches/patch-src_include_Makefile
new file mode 100644
index 000000000..169bee10e
--- /dev/null
+++ b/package/postgresql/patches/patch-src_include_Makefile
@@ -0,0 +1,19 @@
+--- postgresql-8.4.4.orig/src/include/Makefile 2009-07-20 22:48:58.000000000 +0200
++++ postgresql-8.4.4/src/include/Makefile 2010-05-29 18:30:38.481613604 +0200
+@@ -40,7 +40,6 @@ install: all installdirs
+ # These headers are needed for server-side development
+ $(INSTALL_DATA) pg_config.h '$(DESTDIR)$(includedir_server)'
+ $(INSTALL_DATA) pg_config_os.h '$(DESTDIR)$(includedir_server)'
+- $(INSTALL_DATA) utils/fmgroids.h '$(DESTDIR)$(includedir_server)/utils'
+ # We don't use INSTALL_DATA for performance reasons --- there are a lot of files
+ cp $(srcdir)/*.h '$(DESTDIR)$(includedir_server)'/ || exit; \
+ chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/*.h || exit; \
+@@ -62,7 +61,7 @@ uninstall:
+
+
+ clean:
+- rm -f utils/fmgroids.h parser/gram.h utils/probes.h
++ rm -f parser/gram.h utils/probes.h
+
+ distclean maintainer-clean: clean
+ rm -f pg_config.h dynloader.h pg_config_os.h stamp-h
diff --git a/package/ruby/Makefile b/package/ruby/Makefile
index 21ec52811..2fd190fde 100644
--- a/package/ruby/Makefile
+++ b/package/ruby/Makefile
@@ -4,14 +4,17 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= ruby
-PKG_VERSION:= 1.9.1-p378
+PKG_VERSION:= 1.9
PKG_RELEASE:= 1
PKG_MD5SUM:= 9fc5941bda150ac0a33b299e1e53654c
PKG_DESCR:= interpreter for the ruby language
PKG_SECTION:= net
PKG_NOPARALLEL:= 1
PKG_URL:= http://www.ruby-lang.org
-PKG_SITES:= ftp://ftp.ruby-lang.org/pub/ruby/1.9/
+PKG_SITES:= ftp://ftp.ruby-lang.org/pub/ruby/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}-stable.tar.gz
+WRKDIST= ${WRKDIR}/${PKG_NAME}-1.9.1-p378
include ${TOPDIR}/mk/package.mk
diff --git a/package/ruby/patches/patch-Makefile_in b/package/ruby/patches/patch-Makefile_in
index 0e1e996bc..992921e8c 100644
--- a/package/ruby/patches/patch-Makefile_in
+++ b/package/ruby/patches/patch-Makefile_in
@@ -1,11 +1,11 @@
--- ruby-1.9.1-p378.orig/Makefile.in 2009-11-12 17:01:28.000000000 +0100
-+++ ruby-1.9.1-p378/Makefile.in 2010-02-13 21:10:02.000000000 +0100
++++ ruby-1.9.1-p378/Makefile.in 2010-06-02 20:50:05.821613650 +0200
@@ -274,7 +274,7 @@ INSNS = opt_sc.inc optinsn.inc optunifs.
-
+
$(INSNS):
- @$(RM) $(PROGRAM)
+ @$(RM) $(PROGRAM)
- $(BASERUBY) -Ks $(srcdir)/tool/insns2vm.rb $(INSNS2VMOPT) $@
+ $(BASERUBY) $(srcdir)/tool/insns2vm.rb $(INSNS2VMOPT) $@
-
+
node_name.inc:
- $(BASERUBY) -n $(srcdir)/tool/node_name.rb $? > $@
+ $(BASERUBY) -n $(srcdir)/tool/node_name.rb $? > $@
diff --git a/package/ruby/patches/patch-common_mk b/package/ruby/patches/patch-common_mk
index 06a4a7e10..80870ae97 100644
--- a/package/ruby/patches/patch-common_mk
+++ b/package/ruby/patches/patch-common_mk
@@ -1,10 +1,11 @@
--- ruby-1.9.1-p378.orig/common.mk 2009-11-12 17:01:28.000000000 +0100
-+++ ruby-1.9.1-p378/common.mk 2010-02-13 20:20:27.000000000 +0100
++++ ruby-1.9.1-p378/common.mk 2010-06-02 20:50:05.701612890 +0200
@@ -400,7 +400,7 @@ extconf: $(PREP)
- $(RUNRUBY) -C "$(EXTCONFDIR)" $(EXTCONF) $(EXTCONFARGS)
-
+ $(RUNRUBY) -C "$(EXTCONFDIR)" $(EXTCONF) $(EXTCONFARGS)
+
$(RBCONFIG): $(srcdir)/mkconfig.rb config.status $(PREP)
- @$(MINIRUBY) $(srcdir)/mkconfig.rb -timestamp=$@ \
+ $(MINIRUBY) $(srcdir)/mkconfig.rb -timestamp=$@ \
- -install_name=$(RUBY_INSTALL_NAME) \
- -so_name=$(RUBY_SO_NAME) rbconfig.rb
+ -install_name=$(RUBY_INSTALL_NAME) \
+ -so_name=$(RUBY_SO_NAME) rbconfig.rb
+
diff --git a/package/ruby/patches/patch-ext_openssl_ossl_c b/package/ruby/patches/patch-ext_openssl_ossl_c
new file mode 100644
index 000000000..2b649c7dd
--- /dev/null
+++ b/package/ruby/patches/patch-ext_openssl_ossl_c
@@ -0,0 +1,29 @@
+--- ruby-1.9.1-p378.orig/ext/openssl/ossl.c 2009-01-15 16:39:30.000000000 +0100
++++ ruby-1.9.1-p378/ext/openssl/ossl.c 2010-06-12 21:01:58.171613505 +0200
+@@ -92,7 +92,7 @@ ossl_x509_ary2sk(VALUE ary)
+
+ #define OSSL_IMPL_SK2ARY(name, type) \
+ VALUE \
+-ossl_##name##_sk2ary(STACK *sk) \
++ossl_##name##_sk2ary(STACK_OF(type) *sk) \
+ { \
+ type *t; \
+ int i, num; \
+@@ -102,7 +102,7 @@ ossl_##name##_sk2ary(STACK *sk) \
+ OSSL_Debug("empty sk!"); \
+ return Qnil; \
+ } \
+- num = sk_num(sk); \
++ num = sk_##type##_num(sk); \
+ if (num < 0) { \
+ OSSL_Debug("items in sk < -1???"); \
+ return rb_ary_new(); \
+@@ -110,7 +110,7 @@ ossl_##name##_sk2ary(STACK *sk) \
+ ary = rb_ary_new2(num); \
+ \
+ for (i=0; i<num; i++) { \
+- t = (type *)sk_value(sk, i); \
++ t = sk_##type##_value(sk, i); \
+ rb_ary_push(ary, ossl_##name##_new(t)); \
+ } \
+ return ary; \
diff --git a/package/ruby/patches/patch-ext_openssl_ossl_h b/package/ruby/patches/patch-ext_openssl_ossl_h
new file mode 100644
index 000000000..b33b476aa
--- /dev/null
+++ b/package/ruby/patches/patch-ext_openssl_ossl_h
@@ -0,0 +1,19 @@
+--- ruby-1.9.1-p378.orig/ext/openssl/ossl.h 2008-09-26 05:05:47.000000000 +0200
++++ ruby-1.9.1-p378/ext/openssl/ossl.h 2010-06-12 21:10:22.781613550 +0200
+@@ -109,6 +109,16 @@ extern VALUE eOSSLError;
+ int string2hex(const unsigned char *, int, char **, int *);
+
+ /*
++ * Compatibility
++ */
++#if OPENSSL_VERSION_NUMBER >= 0x10000000L
++#define OSSL_MORE_CONST const
++#define STACK _STACK
++#else
++#define OSSL_MORE_CONST
++#endif
++
++/*
+ * Data Conversion
+ */
+ STACK_OF(X509) *ossl_x509_ary2sk0(VALUE);
diff --git a/package/ruby/patches/patch-ext_openssl_ossl_pkcs7_c b/package/ruby/patches/patch-ext_openssl_ossl_pkcs7_c
new file mode 100644
index 000000000..1649e0f10
--- /dev/null
+++ b/package/ruby/patches/patch-ext_openssl_ossl_pkcs7_c
@@ -0,0 +1,12 @@
+--- ruby-1.9.1-p378.orig/ext/openssl/ossl_pkcs7.c 2008-07-22 17:34:23.000000000 +0200
++++ ruby-1.9.1-p378/ext/openssl/ossl_pkcs7.c 2010-06-02 21:05:44.261613234 +0200
+@@ -572,7 +572,8 @@ ossl_pkcs7_add_certificate(VALUE self, V
+ return self;
+ }
+
+-static STACK *
++
++static STACK_OF(X509) *
+ pkcs7_get_certs_or_crls(VALUE self, int want_certs)
+ {
+ PKCS7 *pkcs7;
diff --git a/package/samba/Makefile b/package/samba/Makefile
index e953e2253..e1e41963c 100644
--- a/package/samba/Makefile
+++ b/package/samba/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= samba
-PKG_VERSION:= 3.4.5
+PKG_VERSION:= 3.5.3
PKG_RELEASE:= 1
-PKG_MD5SUM:= 8e8a484782f2b7716b6c6bd9a7d2bf71
+PKG_MD5SUM:= 7c8d2a34b649380d5df838c3e030dbec
PKG_DESCR:= NetBIOS/SMB file and print server
PKG_SECTION:= net
PKG_URL:= http://www.samba.org
diff --git a/package/samba/patches/patch-client_mount_cifs_c b/package/samba/patches/patch-client_mount_cifs_c
new file mode 100644
index 000000000..4ddd91f9c
--- /dev/null
+++ b/package/samba/patches/patch-client_mount_cifs_c
@@ -0,0 +1,19 @@
+--- samba-3.5.3.orig/client/mount.cifs.c 2010-05-17 13:51:23.000000000 +0200
++++ samba-3.5.3/client/mount.cifs.c 2010-06-11 12:39:34.501613636 +0200
+@@ -39,7 +39,6 @@
+ #include <mntent.h>
+ #include <fcntl.h>
+ #include <limits.h>
+-#include <fstab.h>
+ #include "mount.h"
+
+ #define MOUNT_CIFS_VERSION_MAJOR "1"
+@@ -112,7 +111,7 @@
+ * The legacy behavior is now disabled by default. To reenable it, set the
+ * following #define to true.
+ */
+-#define CIFS_LEGACY_SETUID_CHECK 0
++#define CIFS_LEGACY_SETUID_CHECK 1
+
+ /*
+ * When an unprivileged user runs a setuid mount.cifs, we set certain mount
diff --git a/package/samba/patches/patch-source3_client_mtab_c b/package/samba/patches/patch-source3_client_mtab_c
deleted file mode 100644
index d6cac2914..000000000
--- a/package/samba/patches/patch-source3_client_mtab_c
+++ /dev/null
@@ -1,10 +0,0 @@
---- samba-3.4.3.orig/source3/client/mtab.c 2009-10-29 08:47:16.000000000 +0100
-+++ samba-3.4.3/source3/client/mtab.c 2009-11-01 15:45:07.303242285 +0100
-@@ -32,6 +32,7 @@
- #include <errno.h>
- #include <stdio.h>
- #include <sys/time.h>
-+#include <sys/stat.h>
- #include <time.h>
- #include <fcntl.h>
- #include <mntent.h>
diff --git a/package/samba/patches/patch-source3_configure b/package/samba/patches/patch-source3_configure
deleted file mode 100644
index b99b66528..000000000
--- a/package/samba/patches/patch-source3_configure
+++ /dev/null
@@ -1,196 +0,0 @@
---- samba-3.4.3.orig/source3/configure 2009-10-29 09:18:27.000000000 +0100
-+++ samba-3.4.3/source3/configure 2009-11-01 14:23:21.339243541 +0100
-@@ -45625,193 +45625,6 @@ fi
-
- rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-
--#
--#
--#
--case "$host_os" in
-- *linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu)
-- # glibc <= 2.3.2 has a broken getgrouplist
-- if test "$cross_compiling" = yes; then
-- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
--$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
--{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling
--See \`config.log' for more details." >&5
--$as_echo "$as_me: error: cannot run test program while cross compiling
--See \`config.log' for more details." >&2;}
-- { (exit 1); exit 1; }; }; }
--else
-- cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h. */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
--/* end confdefs.h. */
--
--#include <unistd.h>
--#include <sys/utsname.h>
--main() {
-- /* glibc up to 2.3 has a broken getgrouplist */
--#if defined(__GLIBC__) && defined(__GLIBC_MINOR__)
-- int libc_major = __GLIBC__;
-- int libc_minor = __GLIBC_MINOR__;
--
-- if (libc_major < 2)
-- exit(1);
-- if ((libc_major == 2) && (libc_minor <= 3))
-- exit(1);
--#endif
-- exit(0);
--}
--
--_ACEOF
--rm -f conftest$ac_exeext
--if { (ac_try="$ac_link"
--case "(($ac_try" in
-- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-- *) ac_try_echo=$ac_try;;
--esac
--eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
--$as_echo "$ac_try_echo") >&5
-- (eval "$ac_link") 2>&5
-- ac_status=$?
-- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-- { (case "(($ac_try" in
-- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-- *) ac_try_echo=$ac_try;;
--esac
--eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
--$as_echo "$ac_try_echo") >&5
-- (eval "$ac_try") 2>&5
-- ac_status=$?
-- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); }; }; then
-- linux_getgrouplist_ok=yes
--else
-- $as_echo "$as_me: program exited with status $ac_status" >&5
--$as_echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
--( exit $ac_status )
--linux_getgrouplist_ok=no
--fi
--rm -rf conftest.dSYM
--rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
--fi
--
--
-- if test x"$linux_getgrouplist_ok" = x"yes"; then
--
--cat >>confdefs.h <<\_ACEOF
--#define HAVE_GETGROUPLIST 1
--_ACEOF
--
-- fi
-- ;;
-- *)
--
--for ac_func in getgrouplist
--do
--as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
--{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
--$as_echo_n "checking for $ac_func... " >&6; }
--if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
-- $as_echo_n "(cached) " >&6
--else
-- cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h. */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
--/* end confdefs.h. */
--/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
-- For example, HP-UX 11i <limits.h> declares gettimeofday. */
--#define $ac_func innocuous_$ac_func
--
--/* System header to define __stub macros and hopefully few prototypes,
-- which can conflict with char $ac_func (); below.
-- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-- <limits.h> exists even on freestanding compilers. */
--
--#ifdef __STDC__
--# include <limits.h>
--#else
--# include <assert.h>
--#endif
--
--#undef $ac_func
--
--/* Override any GCC internal prototype to avoid an error.
-- Use char because int might match the return type of a GCC
-- builtin and then its argument prototype would still apply. */
--#ifdef __cplusplus
--extern "C"
--#endif
--char $ac_func ();
--/* The GNU C library defines this for functions which it implements
-- to always fail with ENOSYS. Some functions are actually named
-- something starting with __ and the normal name is an alias. */
--#if defined __stub_$ac_func || defined __stub___$ac_func
--choke me
--#endif
--
--int
--main ()
--{
--return $ac_func ();
-- ;
-- return 0;
--}
--_ACEOF
--rm -f conftest.$ac_objext conftest$ac_exeext
--if { (ac_try="$ac_link"
--case "(($ac_try" in
-- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-- *) ac_try_echo=$ac_try;;
--esac
--eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
--$as_echo "$ac_try_echo") >&5
-- (eval "$ac_link") 2>conftest.er1
-- ac_status=$?
-- grep -v '^ *+' conftest.er1 >conftest.err
-- rm -f conftest.er1
-- cat conftest.err >&5
-- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); } && {
-- test -z "$ac_c_werror_flag" ||
-- test ! -s conftest.err
-- } && test -s conftest$ac_exeext && {
-- test "$cross_compiling" = yes ||
-- $as_test_x conftest$ac_exeext
-- }; then
-- eval "$as_ac_var=yes"
--else
-- $as_echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
-- eval "$as_ac_var=no"
--fi
--
--rm -rf conftest.dSYM
--rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-- conftest$ac_exeext conftest.$ac_ext
--fi
--ac_res=`eval 'as_val=${'$as_ac_var'}
-- $as_echo "$as_val"'`
-- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
--$as_echo "$ac_res" >&6; }
--as_val=`eval 'as_val=${'$as_ac_var'}
-- $as_echo "$as_val"'`
-- if test "x$as_val" = x""yes; then
-- cat >>confdefs.h <<_ACEOF
--#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
--_ACEOF
--
--fi
--done
--
-- ;;
--esac
-
- #
- # stat64 family may need <sys/stat.h> on some systems, notably ReliantUNIX
diff --git a/package/samba/patches/patch-source3_registry_reg_perfcount_c b/package/samba/patches/patch-source3_registry_reg_perfcount_c
index 650394f73..684036b5b 100644
--- a/package/samba/patches/patch-source3_registry_reg_perfcount_c
+++ b/package/samba/patches/patch-source3_registry_reg_perfcount_c
@@ -1,6 +1,6 @@
---- samba-3.4.3.orig/source3/registry/reg_perfcount.c 2009-10-29 08:47:16.000000000 +0100
-+++ samba-3.4.3/source3/registry/reg_perfcount.c 2009-11-20 21:11:54.000000000 +0100
-@@ -613,14 +613,14 @@ static bool _reg_perfcount_add_counter(P
+--- samba-3.5.3.orig/source3/registry/reg_perfcount.c 2010-05-17 13:51:23.000000000 +0200
++++ samba-3.5.3/source3/registry/reg_perfcount.c 2010-06-11 12:21:42.911613348 +0200
+@@ -618,14 +618,14 @@ static bool _reg_perfcount_add_counter(s
obj = NULL;
memset(buf, 0, PERFCOUNT_MAX_LEN);
memcpy(buf, data.dptr, data.dsize);
diff --git a/package/squid/Makefile b/package/squid/Makefile
index 24dbef89e..838ded033 100644
--- a/package/squid/Makefile
+++ b/package/squid/Makefile
@@ -4,15 +4,15 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= squid
-PKG_VERSION:= 3.0.STABLE20
-PKG_RELEASE:= 3
-PKG_MD5SUM:= b69577cfc5cfb6808ec426e3a933220d
+PKG_VERSION:= 3.1.4
+PKG_RELEASE:= 1
+PKG_MD5SUM:= c70ef1198e6a6c1ae80bc57cd3592e36
PKG_DESCR:= squid web and cache proxy
PKG_SECTION:= net
PKG_DEPENDS:= libopenssl libpthread
PKG_BUILDDEP+= openssl
PKG_URL:= http://www.squid-cache.org
-PKG_SITES:= http://www.squid-cache.org/Versions/v3/3.0/
+PKG_SITES:= http://www.squid-cache.org/Versions/v3/3.1/
PKG_MULTI:= 1
#PKG_CXX:= SQUID
@@ -40,9 +40,6 @@ endif
ifneq (${ADK_PACKAGE_SQUID_MOD_NTLM_AUTH_FAKEAUTH},)
NTLM_AUTH_HELPERS+= fakeauth
endif
-ifneq (${ADK_PACKAGE_SQUID_MOD_NTLM_AUTH_SMB_AUTH},)
-NTLM_AUTH_HELPERS+= SMB
-endif
include ${TOPDIR}/mk/package.mk
@@ -64,7 +61,6 @@ $(eval $(call PKG_template,SQUID_MOD_DIGEST_AUTH_PASSWORD,${PKG_NAME}-mod-digest
$(eval $(call PKG_template,SQUID_MOD_EXTERNAL_ACL_IP_USER,${PKG_NAME}-mod-external-acl-ip-user,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
$(eval $(call PKG_template,SQUID_MOD_EXTERNAL_ACL_UNIX_GROUP,${PKG_NAME}-mod-external-acl-unix-group,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
$(eval $(call PKG_template,SQUID_MOD_NTLM_AUTH_FAKEAUTH,${PKG_NAME}-mod-ntlm-auth-fakeauth,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-$(eval $(call PKG_template,SQUID_MOD_NTLM_AUTH_SMB_AUTH,${PKG_NAME}-mod-ntlm-auth-smb-auth,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
$(eval $(call PKG_mod_template,SQUID_MOD_BASIC_AUTH_GETPWNAM,getpwname_auth))
$(eval $(call PKG_mod_template,SQUID_MOD_BASIC_AUTH_LDAP,ldap))
@@ -75,10 +71,9 @@ $(eval $(call PKG_mod_template,SQUID_MOD_EXTERNAL_ACL_IP_USER,ip_user_check))
$(eval $(call PKG_mod_template,SQUID_MOD_EXTERNAL_ACL_LDAP_GROUP,ldap_auth))
$(eval $(call PKG_mod_template,SQUID_MOD_EXTERNAL_ACL_UNIX_GROUP,squid_unix_group))
$(eval $(call PKG_mod_template,SQUID_MOD_NTLM_AUTH_FAKEAUTH,fakeauth_auth))
-$(eval $(call PKG_mod_template,SQUID_MOD_NTLM_AUTH_SMB_AUTH,ntlm_auth))
#ifeq ($(ADK_COMPILE_SQUID_WITH_UCLIBCXX),y)
-#CONFIGURE_ENV+= CXXFLAGS="-fno-threadsafe-statics -fno-builtin -nostdinc++ \
+#CONFIGURE_ENV+= CXXFLAGS="-fno-threadsafe-statics -fno-builtin -nostdinc++ \
# -I${STAGING_DIR}/usr/include/uClibc++" \
# LIBS="-nodefaultlibs -luClibc++ -ldl -lm"
#endif
@@ -103,7 +98,8 @@ CONFIGURE_ENV+= ac_cv_sizeof_void_p=4 \
ac_cv_func___va_copy=no \
ac_cv_epoll_works=yes \
ac_cv_lib_nsl_main=no \
- ac_cv_func_strnstr=no
+ ac_cv_func_strnstr=no \
+ squid_cv_pf_inet6=yes
CONFIGURE_ARGS+= --datadir=/usr/share/squid \
--libexecdir=/usr/lib/squid \
--sysconfdir=/etc/squid \
@@ -111,6 +107,7 @@ CONFIGURE_ARGS+= --datadir=/usr/share/squid \
--enable-x-accelerator-vary \
--with-pthreads \
--with-dl \
+ --disable-debug-cbdata \
--enable-kill-parent-hack \
--enable-arp-acl \
--enable-ssl \
@@ -118,11 +115,11 @@ CONFIGURE_ARGS+= --datadir=/usr/share/squid \
--enable-default-err-language=English \
--enable-linux-netfilter \
--enable-icmp \
- --enable-external-acl-helpers="" \
--enable-underscores \
--enable-cache-digests \
--enable-referer-log \
--enable-delay-pools \
+ --without-libcap \
--disable-snmp \
--disable-esi \
--disable-htcp \
@@ -130,6 +127,7 @@ CONFIGURE_ARGS+= --datadir=/usr/share/squid \
--disable-wccpv2 \
--enable-useragent-log \
--with-openssl=${STAGING_DIR}/usr \
+ --enable-negotiate-auth-helpers=no \
--enable-auth="${AUTH_MODULES}" \
--enable-basic-auth-helpers="${BASIC_AUTH_HELPERS}" \
--enable-ntlm-auth-helpers="${NTLM_AUTH_HELPERS}" \
diff --git a/package/squid/patches/autotool.patch b/package/squid/patches/autotool.patch
index 20a65b912..cccadad14 100644
--- a/package/squid/patches/autotool.patch
+++ b/package/squid/patches/autotool.patch