2780 lines
162 KiB
Diff
2780 lines
162 KiB
Diff
diff -ru recordmydesktop-0.3.8.1.autogen/aclocal.m4 recordmydesktop-0.3.8.1/aclocal.m4
|
|
--- recordmydesktop-0.3.8.1.autogen/aclocal.m4 2008-12-13 18:40:01.000000000 +0100
|
|
+++ recordmydesktop-0.3.8.1/aclocal.m4 2010-01-15 10:28:27.157827827 +0100
|
|
@@ -1,7 +1,7 @@
|
|
-# generated automatically by aclocal 1.10.2 -*- Autoconf -*-
|
|
+# generated automatically by aclocal 1.11 -*- Autoconf -*-
|
|
|
|
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
|
-# 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
|
+# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
|
|
# This file is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
@@ -31,10 +31,10 @@
|
|
# 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.10'
|
|
+[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.10.2], [],
|
|
+m4_if([$1], [1.11], [],
|
|
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
|
|
])
|
|
|
|
@@ -50,7 +50,7 @@
|
|
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
|
|
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
|
|
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
|
|
-[AM_AUTOMAKE_VERSION([1.10.2])dnl
|
|
+[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]))])
|
|
@@ -110,14 +110,14 @@
|
|
|
|
# AM_CONDITIONAL -*- Autoconf -*-
|
|
|
|
-# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006
|
|
+# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
|
|
# Free Software Foundation, Inc.
|
|
#
|
|
# This file is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
-# serial 8
|
|
+# serial 9
|
|
|
|
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
|
|
# -------------------------------------
|
|
@@ -130,6 +130,7 @@
|
|
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
|
|
if $2; then
|
|
$1_TRUE=
|
|
$1_FALSE='#'
|
|
@@ -143,14 +144,14 @@
|
|
Usually this means the macro was only invoked conditionally.]])
|
|
fi])])
|
|
|
|
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
|
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
|
|
# Free Software Foundation, Inc.
|
|
#
|
|
# This file is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
-# serial 9
|
|
+# serial 10
|
|
|
|
# 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,
|
|
@@ -207,6 +208,16 @@
|
|
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
|
|
@@ -224,7 +235,17 @@
|
|
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
|
|
@@ -234,19 +255,23 @@
|
|
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=sub/conftest.${OBJEXT-o} \
|
|
+ source=sub/conftest.c object=$am__obj \
|
|
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
|
|
- $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
|
|
+ $SHELL ./depcomp $depcc -c $am__minus_obj 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 sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
|
|
+ grep $am__obj 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
|
|
@@ -310,59 +335,61 @@
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
-#serial 4
|
|
+#serial 5
|
|
|
|
# _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"
|
|
+[{
|
|
+ # 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
|
|
done
|
|
-done
|
|
+}
|
|
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
|
|
|
|
|
|
@@ -394,13 +421,13 @@
|
|
# Do all the work for Automake. -*- Autoconf -*-
|
|
|
|
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
|
-# 2005, 2006, 2008 Free Software Foundation, Inc.
|
|
+# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
|
|
#
|
|
# This file is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
-# serial 13
|
|
+# serial 16
|
|
|
|
# This macro actually does too much. Some checks are only needed if
|
|
# your package does certain things. But this isn't really a big deal.
|
|
@@ -417,7 +444,7 @@
|
|
# 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.60])dnl
|
|
+[AC_PREREQ([2.62])dnl
|
|
dnl Autoconf wants to disallow AM_ names. We explicitly allow
|
|
dnl the ones we care about.
|
|
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
|
|
@@ -468,8 +495,8 @@
|
|
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
|
|
AM_MISSING_PROG(AUTOHEADER, autoheader)
|
|
AM_MISSING_PROG(MAKEINFO, makeinfo)
|
|
-AM_PROG_INSTALL_SH
|
|
-AM_PROG_INSTALL_STRIP
|
|
+AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
|
+AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
|
|
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
|
|
# We need awk for the "check" target. The system "awk" is bad on
|
|
# some platforms.
|
|
@@ -477,23 +504,36 @@
|
|
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
|
|
+ [_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(OBJC)],
|
|
+ [define([AC_PROG_OBJC],
|
|
+ defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])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.
|
|
@@ -517,7 +557,7 @@
|
|
done
|
|
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
|
|
|
|
-# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
|
|
+# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
|
|
#
|
|
# This file is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
@@ -528,7 +568,14 @@
|
|
# Define $install_sh.
|
|
AC_DEFUN([AM_PROG_INSTALL_SH],
|
|
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
|
-install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
|
|
+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
|
|
AC_SUBST(install_sh)])
|
|
|
|
# Copyright (C) 2003, 2005 Free Software Foundation, Inc.
|
|
@@ -554,13 +601,13 @@
|
|
|
|
# Check to see how 'make' treats includes. -*- Autoconf -*-
|
|
|
|
-# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
|
|
+# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc.
|
|
#
|
|
# This file is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
-# serial 3
|
|
+# serial 4
|
|
|
|
# AM_MAKE_INCLUDE()
|
|
# -----------------
|
|
@@ -569,7 +616,7 @@
|
|
[am_make=${MAKE-make}
|
|
cat > confinc << 'END'
|
|
am__doit:
|
|
- @echo done
|
|
+ @echo this is the am__doit target
|
|
.PHONY: am__doit
|
|
END
|
|
# If we don't find an include directive, just comment out the code.
|
|
@@ -579,24 +626,24 @@
|
|
_am_result=none
|
|
# First try GNU make style include.
|
|
echo "include confinc" > confmf
|
|
-# 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
|
|
+# 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
|
|
# Now try BSD make style include.
|
|
if test "$am__include" = "#"; then
|
|
echo '.include "confinc"' > confmf
|
|
- if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
|
|
- am__include=.include
|
|
- am__quote="\""
|
|
- _am_result=BSD
|
|
- fi
|
|
+ case `$am_make -s -f confmf 2> /dev/null` in #(
|
|
+ *the\ am__doit\ target*)
|
|
+ am__include=.include
|
|
+ am__quote="\""
|
|
+ _am_result=BSD
|
|
+ ;;
|
|
+ esac
|
|
fi
|
|
AC_SUBST([am__include])
|
|
AC_SUBST([am__quote])
|
|
@@ -641,14 +688,14 @@
|
|
|
|
# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
|
|
|
|
-# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005
|
|
+# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
|
|
# Free Software Foundation, Inc.
|
|
#
|
|
# This file is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
-# serial 5
|
|
+# serial 6
|
|
|
|
# AM_MISSING_PROG(NAME, PROGRAM)
|
|
# ------------------------------
|
|
@@ -665,7 +712,14 @@
|
|
AC_DEFUN([AM_MISSING_HAS_RUN],
|
|
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
|
AC_REQUIRE_AUX_FILE([missing])dnl
|
|
-test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
|
|
+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
|
|
# Use eval to expand $SHELL
|
|
if eval "$MISSING --run true"; then
|
|
am_missing_run="$MISSING --run "
|
|
@@ -736,14 +790,14 @@
|
|
|
|
# Check to make sure that the build environment is sane. -*- Autoconf -*-
|
|
|
|
-# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
|
|
+# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
|
|
# Free Software Foundation, Inc.
|
|
#
|
|
# This file is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
-# serial 4
|
|
+# serial 5
|
|
|
|
# AM_SANITY_CHECK
|
|
# ---------------
|
|
@@ -752,16 +806,29 @@
|
|
# 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" \
|
|
@@ -814,18 +881,25 @@
|
|
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
|
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
|
|
|
-# Copyright (C) 2006 Free Software Foundation, Inc.
|
|
+# Copyright (C) 2006, 2008 Free Software Foundation, Inc.
|
|
#
|
|
# This file is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
+# serial 2
|
|
+
|
|
# _AM_SUBST_NOTMAKE(VARIABLE)
|
|
# ---------------------------
|
|
# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
|
|
# 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.
|
|
Nur in recordmydesktop-0.3.8.1: autom4te.cache.
|
|
diff -ru recordmydesktop-0.3.8.1.autogen/config.h.in recordmydesktop-0.3.8.1/config.h.in
|
|
--- recordmydesktop-0.3.8.1.autogen/config.h.in 2008-12-13 18:40:22.000000000 +0100
|
|
+++ recordmydesktop-0.3.8.1/config.h.in 2010-01-15 10:28:30.000000000 +0100
|
|
@@ -22,6 +22,9 @@
|
|
/* Define to 1 if you have the `ICE' library (-lICE). */
|
|
#undef HAVE_LIBICE
|
|
|
|
+/* Define to 1 if you have the `jack' library (-ljack). */
|
|
+#undef HAVE_LIBJACK
|
|
+
|
|
/* Define to 1 if you have the `m' library (-lm). */
|
|
#undef HAVE_LIBM
|
|
|
|
Nur in recordmydesktop-0.3.8.1: config.h.in~.
|
|
diff -ru recordmydesktop-0.3.8.1.autogen/configure recordmydesktop-0.3.8.1/configure
|
|
--- recordmydesktop-0.3.8.1.autogen/configure 2008-12-13 18:40:03.000000000 +0100
|
|
+++ recordmydesktop-0.3.8.1/configure 2010-01-15 10:28:29.550819280 +0100
|
|
@@ -635,7 +635,9 @@
|
|
# include <unistd.h>
|
|
#endif"
|
|
|
|
-ac_subst_vars='LTLIBOBJS
|
|
+ac_subst_vars='am__EXEEXT_FALSE
|
|
+am__EXEEXT_TRUE
|
|
+LTLIBOBJS
|
|
LIBOBJS
|
|
X_EXTRA_LIBS
|
|
X_LIBS
|
|
@@ -1849,7 +1851,7 @@
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
|
|
|
|
-am__api_version='1.10'
|
|
+am__api_version='1.11'
|
|
|
|
ac_aux_dir=
|
|
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
|
|
@@ -1980,16 +1982,33 @@
|
|
# 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_echo "$as_me:$LINENO: error: unsafe absolute working directory name" >&5
|
|
+$as_echo "$as_me: error: unsafe absolute working directory name" >&2;}
|
|
+ { (exit 1); exit 1; }; };;
|
|
+esac
|
|
+case $srcdir in
|
|
+ *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
|
|
+ { { $as_echo "$as_me:$LINENO: error: unsafe srcdir value: \`$srcdir'" >&5
|
|
+$as_echo "$as_me: error: unsafe srcdir value: \`$srcdir'" >&2;}
|
|
+ { (exit 1); exit 1; }; };;
|
|
+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" \
|
|
@@ -2033,7 +2052,14 @@
|
|
# expand $ac_aux_dir to an absolute path
|
|
am_aux_dir=`cd $ac_aux_dir && pwd`
|
|
|
|
-test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
|
|
+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
|
|
# Use eval to expand $SHELL
|
|
if eval "$MISSING --run true"; then
|
|
am_missing_run="$MISSING --run "
|
|
@@ -2043,6 +2069,115 @@
|
|
$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:$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:$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:$LINENO: result: $STRIP" >&5
|
|
+$as_echo "$STRIP" >&6; }
|
|
+else
|
|
+ { $as_echo "$as_me:$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:$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:$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:$LINENO: result: $ac_ct_STRIP" >&5
|
|
+$as_echo "$ac_ct_STRIP" >&6; }
|
|
+else
|
|
+ { $as_echo "$as_me:$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:$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:$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
|
|
@@ -2225,108 +2360,6 @@
|
|
|
|
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
|
|
|
|
-install_sh=${install_sh-"\$(SHELL) $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:$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:$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:$LINENO: result: $STRIP" >&5
|
|
-$as_echo "$STRIP" >&6; }
|
|
-else
|
|
- { $as_echo "$as_me:$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:$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:$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:$LINENO: result: $ac_ct_STRIP" >&5
|
|
-$as_echo "$ac_ct_STRIP" >&6; }
|
|
-else
|
|
- { $as_echo "$as_me:$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:$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"
|
|
-
|
|
# We need awk for the "check" target. The system "awk" is bad on
|
|
# some platforms.
|
|
# Always define AMTAR for backward compatibility.
|
|
@@ -3288,7 +3321,7 @@
|
|
am_make=${MAKE-make}
|
|
cat > confinc << 'END'
|
|
am__doit:
|
|
- @echo done
|
|
+ @echo this is the am__doit target
|
|
.PHONY: am__doit
|
|
END
|
|
# If we don't find an include directive, just comment out the code.
|
|
@@ -3299,24 +3332,24 @@
|
|
_am_result=none
|
|
# First try GNU make style include.
|
|
echo "include confinc" > confmf
|
|
-# 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
|
|
+# 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
|
|
# Now try BSD make style include.
|
|
if test "$am__include" = "#"; then
|
|
echo '.include "confinc"' > confmf
|
|
- if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
|
|
- am__include=.include
|
|
- am__quote="\""
|
|
- _am_result=BSD
|
|
- fi
|
|
+ case `$am_make -s -f confmf 2> /dev/null` in #(
|
|
+ *the\ am__doit\ target*)
|
|
+ am__include=.include
|
|
+ am__quote="\""
|
|
+ _am_result=BSD
|
|
+ ;;
|
|
+ esac
|
|
fi
|
|
|
|
|
|
@@ -3373,6 +3406,11 @@
|
|
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
|
|
@@ -3390,7 +3428,17 @@
|
|
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
|
|
@@ -3400,19 +3448,23 @@
|
|
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=sub/conftest.${OBJEXT-o} \
|
|
+ source=sub/conftest.c object=$am__obj \
|
|
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
|
|
- $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
|
|
+ $SHELL ./depcomp $depcc -c $am__minus_obj 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 sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
|
|
+ grep $am__obj 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
|
|
@@ -8654,6 +8706,7 @@
|
|
|
|
|
|
if test x$jack = xtrue ; then
|
|
+
|
|
{ $as_echo "$as_me:$LINENO: checking for jack_activate in -ljack" >&5
|
|
$as_echo_n "checking for jack_activate in -ljack... " >&6; }
|
|
if test "${ac_cv_lib_jack_jack_activate+set}" = set; then
|
|
@@ -8720,7 +8773,12 @@
|
|
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_jack_jack_activate" >&5
|
|
$as_echo "$ac_cv_lib_jack_jack_activate" >&6; }
|
|
if test "x$ac_cv_lib_jack_jack_activate" = x""yes; then
|
|
- jack_lib_found=true
|
|
+ cat >>confdefs.h <<_ACEOF
|
|
+#define HAVE_LIBJACK 1
|
|
+_ACEOF
|
|
+
|
|
+ LIBS="-ljack $LIBS"
|
|
+
|
|
fi
|
|
|
|
fi
|
|
@@ -9224,6 +9282,14 @@
|
|
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_echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
|
|
Usually this means the macro was only invoked conditionally." >&5
|
|
@@ -10406,27 +10472,28 @@
|
|
|
|
|
|
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"" || {
|
|
+ # 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" ||
|
|
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|
X"$mf" : 'X\(//\)[^/]' \| \
|
|
X"$mf" : 'X\(//\)$' \| \
|
|
@@ -10449,28 +10516,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\(//\)$' \| \
|
|
@@ -10493,7 +10560,7 @@
|
|
q
|
|
}
|
|
s/.*/./; q'`
|
|
- { as_dir=$dirpart/$fdir
|
|
+ { as_dir=$dirpart/$fdir
|
|
case $as_dir in #(
|
|
-*) as_dir=./$as_dir;;
|
|
esac
|
|
@@ -10534,10 +10601,11 @@
|
|
} || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
|
|
$as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
|
|
{ (exit 1); exit 1; }; }; }
|
|
- # echo "creating $dirpart/$file"
|
|
- echo '# dummy' > "$dirpart/$file"
|
|
+ # echo "creating $dirpart/$file"
|
|
+ echo '# dummy' > "$dirpart/$file"
|
|
+ done
|
|
done
|
|
-done
|
|
+}
|
|
;;
|
|
|
|
esac
|
|
@@ -10584,18 +10652,12 @@
|
|
if test x$audio_backend != xOSS; then
|
|
audio_backend="ALSA"
|
|
fi
|
|
-if test x$jack_lib_found = xtrue ; then
|
|
- jack_support="Enabled"
|
|
-else
|
|
- jack_support="Disabled"
|
|
-fi
|
|
echo ""
|
|
echo ""
|
|
echo "****************************************"
|
|
echo ""
|
|
echo "Audio driver that will be used: $audio_backend"
|
|
echo ""
|
|
-echo "Compile with Jack support: $jack_support"
|
|
echo ""
|
|
echo "****************************************"
|
|
echo ""
|
|
diff -ru recordmydesktop-0.3.8.1.autogen/doc/Makefile.in recordmydesktop-0.3.8.1/doc/Makefile.in
|
|
--- recordmydesktop-0.3.8.1.autogen/doc/Makefile.in 2008-12-13 18:40:04.000000000 +0100
|
|
+++ recordmydesktop-0.3.8.1/doc/Makefile.in 2010-01-15 10:28:32.728827405 +0100
|
|
@@ -1,8 +1,9 @@
|
|
-# Makefile.in generated by automake 1.10.2 from Makefile.am.
|
|
+# Makefile.in generated by automake 1.11 from Makefile.am.
|
|
# @configure_input@
|
|
|
|
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
-# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
|
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
|
|
+# Inc.
|
|
# This Makefile.in is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
@@ -15,8 +16,9 @@
|
|
@SET_MAKE@
|
|
VPATH = @srcdir@
|
|
pkgdatadir = $(datadir)/@PACKAGE@
|
|
-pkglibdir = $(libdir)/@PACKAGE@
|
|
pkgincludedir = $(includedir)/@PACKAGE@
|
|
+pkglibdir = $(libdir)/@PACKAGE@
|
|
+pkglibexecdir = $(libexecdir)/@PACKAGE@
|
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
install_sh_DATA = $(install_sh) -c -m 644
|
|
install_sh_PROGRAM = $(install_sh) -c
|
|
@@ -40,8 +42,30 @@
|
|
mkinstalldirs = $(install_sh) -d
|
|
CONFIG_HEADER = $(top_builddir)/config.h
|
|
CONFIG_CLEAN_FILES =
|
|
+CONFIG_CLEAN_VPATH_FILES =
|
|
SOURCES =
|
|
DIST_SOURCES =
|
|
+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
|
|
am__installdirs = "$(DESTDIR)$(man1dir)"
|
|
NROFF = nroff
|
|
@@ -159,9 +183,9 @@
|
|
exit 1;; \
|
|
esac; \
|
|
done; \
|
|
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
|
|
- cd $(top_srcdir) && \
|
|
- $(AUTOMAKE) --gnu doc/Makefile
|
|
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
|
|
+ $(am__cd) $(top_srcdir) && \
|
|
+ $(AUTOMAKE) --gnu doc/Makefile
|
|
.PRECIOUS: Makefile
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
@case '$?' in \
|
|
@@ -179,51 +203,45 @@
|
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
-install-man1: $(man1_MANS) $(man_MANS)
|
|
+$(am__aclocal_m4_deps):
|
|
+install-man1: $(man_MANS)
|
|
@$(NORMAL_INSTALL)
|
|
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; \
|
|
+ @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; \
|
|
done; \
|
|
- for i in $$list; do \
|
|
- if test -f $$i; then file=$$i; \
|
|
- else file=$(srcdir)/$$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
|
|
+ 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; }
|
|
+
|
|
uninstall-man1:
|
|
@$(NORMAL_UNINSTALL)
|
|
- @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
|
|
+ @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; }
|
|
tags: TAGS
|
|
TAGS:
|
|
|
|
@@ -232,6 +250,19 @@
|
|
|
|
|
|
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
|
|
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
list='$(DISTFILES)'; \
|
|
@@ -247,13 +278,17 @@
|
|
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); 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 -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
|
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
|
fi; \
|
|
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
+ cp -fpR $$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
|
|
@@ -284,6 +319,7 @@
|
|
|
|
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)
|
|
|
|
maintainer-clean-generic:
|
|
@echo "This command is intended for maintainers to use"
|
|
@@ -302,6 +338,8 @@
|
|
|
|
html: html-am
|
|
|
|
+html-am:
|
|
+
|
|
info: info-am
|
|
|
|
info-am:
|
|
@@ -310,18 +348,28 @@
|
|
|
|
install-dvi: install-dvi-am
|
|
|
|
+install-dvi-am:
|
|
+
|
|
install-exec-am:
|
|
|
|
install-html: install-html-am
|
|
|
|
+install-html-am:
|
|
+
|
|
install-info: install-info-am
|
|
|
|
+install-info-am:
|
|
+
|
|
install-man: install-man1
|
|
|
|
install-pdf: install-pdf-am
|
|
|
|
+install-pdf-am:
|
|
+
|
|
install-ps: install-ps-am
|
|
|
|
+install-ps-am:
|
|
+
|
|
installcheck-am:
|
|
|
|
maintainer-clean: maintainer-clean-am
|
|
@@ -357,6 +405,7 @@
|
|
mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \
|
|
uninstall-am uninstall-man uninstall-man1
|
|
|
|
+
|
|
# 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 -ru recordmydesktop-0.3.8.1.autogen/Makefile.in recordmydesktop-0.3.8.1/Makefile.in
|
|
--- recordmydesktop-0.3.8.1.autogen/Makefile.in 2008-12-13 18:40:05.000000000 +0100
|
|
+++ recordmydesktop-0.3.8.1/Makefile.in 2010-01-15 10:28:33.213843260 +0100
|
|
@@ -1,8 +1,9 @@
|
|
-# Makefile.in generated by automake 1.10.2 from Makefile.am.
|
|
+# Makefile.in generated by automake 1.11 from Makefile.am.
|
|
# @configure_input@
|
|
|
|
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
-# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
|
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
|
|
+# Inc.
|
|
# This Makefile.in is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
@@ -15,8 +16,9 @@
|
|
@SET_MAKE@
|
|
VPATH = @srcdir@
|
|
pkgdatadir = $(datadir)/@PACKAGE@
|
|
-pkglibdir = $(libdir)/@PACKAGE@
|
|
pkgincludedir = $(includedir)/@PACKAGE@
|
|
+pkglibdir = $(libdir)/@PACKAGE@
|
|
+pkglibexecdir = $(libexecdir)/@PACKAGE@
|
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
install_sh_DATA = $(install_sh) -c -m 644
|
|
install_sh_PROGRAM = $(install_sh) -c
|
|
@@ -46,6 +48,7 @@
|
|
mkinstalldirs = $(install_sh) -d
|
|
CONFIG_HEADER = config.h
|
|
CONFIG_CLEAN_FILES =
|
|
+CONFIG_CLEAN_VPATH_FILES =
|
|
SOURCES =
|
|
DIST_SOURCES =
|
|
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
|
@@ -57,6 +60,9 @@
|
|
ps-recursive uninstall-recursive
|
|
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
|
distclean-recursive maintainer-clean-recursive
|
|
+AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
|
|
+ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
|
|
+ distdir dist dist-all distcheck
|
|
ETAGS = etags
|
|
CTAGS = ctags
|
|
DIST_SUBDIRS = $(SUBDIRS)
|
|
@@ -64,9 +70,34 @@
|
|
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)"; }; }
|
|
+am__relativize = \
|
|
+ dir0=`pwd`; \
|
|
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
|
+ sed_rest='s,^[^/]*/*,,'; \
|
|
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
|
|
+ sed_butlast='s,/*[^/]*$$,,'; \
|
|
+ while test -n "$$dir1"; do \
|
|
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
|
|
+ if test "$$first" != "."; then \
|
|
+ if test "$$first" = ".."; then \
|
|
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
|
|
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
|
|
+ else \
|
|
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
|
|
+ if test "$$first2" = "$$first"; then \
|
|
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
|
|
+ else \
|
|
+ dir2="../$$dir2"; \
|
|
+ fi; \
|
|
+ dir0="$$dir0"/"$$first"; \
|
|
+ fi; \
|
|
+ fi; \
|
|
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
|
+ done; \
|
|
+ reldir="$$dir2"
|
|
DIST_ARCHIVES = $(distdir).tar.gz
|
|
GZIP_ENV = --best
|
|
distuninstallcheck_listfiles = find . -type f -print
|
|
@@ -180,15 +211,15 @@
|
|
@for dep in $?; do \
|
|
case '$(am__configure_deps)' in \
|
|
*$$dep*) \
|
|
- echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
|
|
- cd $(srcdir) && $(AUTOMAKE) --gnu \
|
|
+ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
|
|
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
|
|
&& exit 0; \
|
|
exit 1;; \
|
|
esac; \
|
|
done; \
|
|
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
|
|
- cd $(top_srcdir) && \
|
|
- $(AUTOMAKE) --gnu Makefile
|
|
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
|
|
+ $(am__cd) $(top_srcdir) && \
|
|
+ $(AUTOMAKE) --gnu Makefile
|
|
.PRECIOUS: Makefile
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
@case '$?' in \
|
|
@@ -204,9 +235,10 @@
|
|
$(SHELL) ./config.status --recheck
|
|
|
|
$(top_srcdir)/configure: $(am__configure_deps)
|
|
- cd $(srcdir) && $(AUTOCONF)
|
|
+ $(am__cd) $(srcdir) && $(AUTOCONF)
|
|
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
- cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
|
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
|
+$(am__aclocal_m4_deps):
|
|
|
|
config.h: stamp-h1
|
|
@if test ! -f $@; then \
|
|
@@ -218,7 +250,7 @@
|
|
@rm -f stamp-h1
|
|
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
|
$(srcdir)/config.h.in: $(am__configure_deps)
|
|
- cd $(top_srcdir) && $(AUTOHEADER)
|
|
+ ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
|
rm -f stamp-h1
|
|
touch $@
|
|
|
|
@@ -249,7 +281,7 @@
|
|
else \
|
|
local_target="$$target"; \
|
|
fi; \
|
|
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
|| eval $$failcom; \
|
|
done; \
|
|
if test "$$dot_seen" = "no"; then \
|
|
@@ -283,16 +315,16 @@
|
|
else \
|
|
local_target="$$target"; \
|
|
fi; \
|
|
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
|| eval $$failcom; \
|
|
done && test -z "$$fail"
|
|
tags-recursive:
|
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
|
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
|
done
|
|
ctags-recursive:
|
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
|
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
|
done
|
|
|
|
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
|
@@ -307,7 +339,7 @@
|
|
|
|
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
|
$(TAGS_FILES) $(LISP)
|
|
- tags=; \
|
|
+ set x; \
|
|
here=`pwd`; \
|
|
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
|
include_option=--etags-include; \
|
|
@@ -319,7 +351,7 @@
|
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
if test "$$subdir" = .; then :; else \
|
|
test ! -f $$subdir/TAGS || \
|
|
- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
|
|
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
|
fi; \
|
|
done; \
|
|
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
|
@@ -328,36 +360,41 @@
|
|
done | \
|
|
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
|
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
|
- if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
|
+ shift; \
|
|
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
|
test -n "$$unique" || unique=$$empty_fix; \
|
|
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
- $$tags $$unique; \
|
|
+ if test $$# -gt 0; then \
|
|
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
+ "$$@" $$unique; \
|
|
+ else \
|
|
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
+ $$unique; \
|
|
+ fi; \
|
|
fi
|
|
ctags: CTAGS
|
|
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
|
$(TAGS_FILES) $(LISP)
|
|
- tags=; \
|
|
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)$$tags$$unique" \
|
|
+ test -z "$(CTAGS_ARGS)$$unique" \
|
|
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
- $$tags $$unique
|
|
+ $$unique
|
|
|
|
GTAGS:
|
|
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
- && cd $(top_srcdir) \
|
|
- && gtags -i $(GTAGS_ARGS) $$here
|
|
+ && $(am__cd) $(top_srcdir) \
|
|
+ && gtags -i $(GTAGS_ARGS) "$$here"
|
|
|
|
distclean-tags:
|
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
|
|
distdir: $(DISTFILES)
|
|
$(am__remove_distdir)
|
|
- test -d $(distdir) || mkdir $(distdir)
|
|
+ test -d "$(distdir)" || mkdir "$(distdir)"
|
|
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
list='$(DISTFILES)'; \
|
|
@@ -373,38 +410,54 @@
|
|
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); 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 -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
|
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
|
fi; \
|
|
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
+ cp -fpR $$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
|
|
- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
|
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
|
if test "$$subdir" = .; then :; else \
|
|
test -d "$(distdir)/$$subdir" \
|
|
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
|
|| exit 1; \
|
|
- distdir=`$(am__cd) $(distdir) && pwd`; \
|
|
- top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
|
|
- (cd $$subdir && \
|
|
+ fi; \
|
|
+ done
|
|
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
|
+ if test "$$subdir" = .; then :; else \
|
|
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
|
+ $(am__relativize); \
|
|
+ new_distdir=$$reldir; \
|
|
+ dir1=$$subdir; dir2="$(top_distdir)"; \
|
|
+ $(am__relativize); \
|
|
+ new_top_distdir=$$reldir; \
|
|
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
|
|
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
|
|
+ ($(am__cd) $$subdir && \
|
|
$(MAKE) $(AM_MAKEFLAGS) \
|
|
- top_distdir="$$top_distdir" \
|
|
- distdir="$$distdir/$$subdir" \
|
|
+ top_distdir="$$new_top_distdir" \
|
|
+ distdir="$$new_distdir" \
|
|
am__remove_distdir=: \
|
|
am__skip_length_check=: \
|
|
+ am__skip_mode_fix=: \
|
|
distdir) \
|
|
|| exit 1; \
|
|
fi; \
|
|
done
|
|
- -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
|
+ -test -n "$(am__skip_mode_fix)" \
|
|
+ || 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)
|
|
+ || chmod -R a+r "$(distdir)"
|
|
dist-gzip: distdir
|
|
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
|
$(am__remove_distdir)
|
|
@@ -417,6 +470,10 @@
|
|
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)
|
|
@@ -445,6 +502,8 @@
|
|
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*) \
|
|
@@ -456,9 +515,11 @@
|
|
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-$$$$/" \
|
|
- && cd $(distdir)/_build \
|
|
+ && am__cwd=`pwd` \
|
|
+ && $(am__cd) $(distdir)/_build \
|
|
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
|
$(DISTCHECK_CONFIGURE_FLAGS) \
|
|
&& $(MAKE) $(AM_MAKEFLAGS) \
|
|
@@ -480,13 +541,15 @@
|
|
&& rm -rf "$$dc_destdir" \
|
|
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
|
&& rm -rf $(DIST_ARCHIVES) \
|
|
- && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
|
|
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
|
+ && cd "$$am__cwd" \
|
|
+ || exit 1
|
|
$(am__remove_distdir)
|
|
@(echo "$(distdir) archives ready for distribution: "; \
|
|
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
|
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
|
distuninstallcheck:
|
|
- @cd $(distuninstallcheck_dir) \
|
|
+ @$(am__cd) '$(distuninstallcheck_dir)' \
|
|
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|
|
|| { echo "ERROR: files left after uninstall:" ; \
|
|
if test -n "$(DESTDIR)"; then \
|
|
@@ -528,6 +591,7 @@
|
|
|
|
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)
|
|
|
|
maintainer-clean-generic:
|
|
@echo "This command is intended for maintainers to use"
|
|
@@ -547,6 +611,8 @@
|
|
|
|
html: html-recursive
|
|
|
|
+html-am:
|
|
+
|
|
info: info-recursive
|
|
|
|
info-am:
|
|
@@ -555,18 +621,28 @@
|
|
|
|
install-dvi: install-dvi-recursive
|
|
|
|
+install-dvi-am:
|
|
+
|
|
install-exec-am:
|
|
|
|
install-html: install-html-recursive
|
|
|
|
+install-html-am:
|
|
+
|
|
install-info: install-info-recursive
|
|
|
|
+install-info-am:
|
|
+
|
|
install-man:
|
|
|
|
install-pdf: install-pdf-recursive
|
|
|
|
+install-pdf-am:
|
|
+
|
|
install-ps: install-ps-recursive
|
|
|
|
+install-ps-am:
|
|
+
|
|
installcheck-am:
|
|
|
|
maintainer-clean: maintainer-clean-recursive
|
|
@@ -589,24 +665,25 @@
|
|
|
|
uninstall-am:
|
|
|
|
-.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
|
|
- install-strip
|
|
+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
|
|
+ ctags-recursive install-am install-strip tags-recursive
|
|
|
|
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
|
|
all all-am am--refresh check check-am clean clean-generic \
|
|
ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
|
|
- dist-lzma dist-shar dist-tarZ dist-zip distcheck distclean \
|
|
- distclean-generic distclean-hdr distclean-tags distcleancheck \
|
|
- distdir distuninstallcheck dvi dvi-am html html-am info \
|
|
- info-am install install-am install-data install-data-am \
|
|
- install-dvi install-dvi-am install-exec install-exec-am \
|
|
- install-html install-html-am install-info install-info-am \
|
|
- install-man install-pdf install-pdf-am install-ps \
|
|
- install-ps-am install-strip installcheck installcheck-am \
|
|
- installdirs installdirs-am maintainer-clean \
|
|
+ dist-lzma dist-shar dist-tarZ dist-xz dist-zip distcheck \
|
|
+ distclean distclean-generic distclean-hdr distclean-tags \
|
|
+ distcleancheck distdir distuninstallcheck dvi dvi-am html \
|
|
+ html-am info info-am install install-am install-data \
|
|
+ install-data-am install-dvi install-dvi-am install-exec \
|
|
+ install-exec-am install-html install-html-am install-info \
|
|
+ install-info-am install-man install-pdf install-pdf-am \
|
|
+ install-ps install-ps-am install-strip installcheck \
|
|
+ installcheck-am installdirs installdirs-am maintainer-clean \
|
|
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
|
|
pdf-am ps ps-am tags tags-recursive uninstall uninstall-am
|
|
|
|
+
|
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
.NOEXPORT:
|
|
diff -ru recordmydesktop-0.3.8.1.autogen/src/Makefile.in recordmydesktop-0.3.8.1/src/Makefile.in
|
|
--- recordmydesktop-0.3.8.1.autogen/src/Makefile.in 2008-12-13 18:40:04.000000000 +0100
|
|
+++ recordmydesktop-0.3.8.1/src/Makefile.in 2010-01-15 10:28:33.130948770 +0100
|
|
@@ -1,8 +1,9 @@
|
|
-# Makefile.in generated by automake 1.10.2 from Makefile.am.
|
|
+# Makefile.in generated by automake 1.11 from Makefile.am.
|
|
# @configure_input@
|
|
|
|
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
-# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
|
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
|
|
+# Inc.
|
|
# This Makefile.in is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
# with or without modifications, as long as this notice is preserved.
|
|
@@ -16,8 +17,9 @@
|
|
|
|
VPATH = @srcdir@
|
|
pkgdatadir = $(datadir)/@PACKAGE@
|
|
-pkglibdir = $(libdir)/@PACKAGE@
|
|
pkgincludedir = $(includedir)/@PACKAGE@
|
|
+pkglibdir = $(libdir)/@PACKAGE@
|
|
+pkglibexecdir = $(libexecdir)/@PACKAGE@
|
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
install_sh_DATA = $(install_sh) -c -m 644
|
|
install_sh_PROGRAM = $(install_sh) -c
|
|
@@ -44,8 +46,8 @@
|
|
mkinstalldirs = $(install_sh) -d
|
|
CONFIG_HEADER = $(top_builddir)/config.h
|
|
CONFIG_CLEAN_FILES =
|
|
+CONFIG_CLEAN_VPATH_FILES =
|
|
am__installdirs = "$(DESTDIR)$(bindir)"
|
|
-binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
|
|
PROGRAMS = $(bin_PROGRAMS)
|
|
am_recordmydesktop_OBJECTS = recordmydesktop-rmd.$(OBJEXT) \
|
|
recordmydesktop-rmd_cache.$(OBJEXT) \
|
|
@@ -98,6 +100,7 @@
|
|
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
|
|
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)
|
|
@@ -106,6 +109,8 @@
|
|
DIST_SOURCES = $(recordmydesktop_SOURCES) $(test_rectinsert_SOURCES)
|
|
ETAGS = etags
|
|
CTAGS = ctags
|
|
+am__tty_colors = \
|
|
+red=; grn=; lgn=; blu=; std=
|
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
ACLOCAL = @ACLOCAL@
|
|
AMTAR = @AMTAR@
|
|
@@ -304,9 +309,9 @@
|
|
exit 1;; \
|
|
esac; \
|
|
done; \
|
|
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
|
|
- cd $(top_srcdir) && \
|
|
- $(AUTOMAKE) --gnu src/Makefile
|
|
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
|
|
+ $(am__cd) $(top_srcdir) && \
|
|
+ $(AUTOMAKE) --gnu src/Makefile
|
|
.PRECIOUS: Makefile
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
@case '$?' in \
|
|
@@ -324,26 +329,41 @@
|
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
+$(am__aclocal_m4_deps):
|
|
install-binPROGRAMS: $(bin_PROGRAMS)
|
|
@$(NORMAL_INSTALL)
|
|
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
|
|
+ @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
|
|
|
|
uninstall-binPROGRAMS:
|
|
@$(NORMAL_UNINSTALL)
|
|
- @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
|
|
+ @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
|
|
|
|
clean-binPROGRAMS:
|
|
-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
|
|
@@ -402,560 +422,560 @@
|
|
|
|
.c.o:
|
|
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
|
@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@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
|
@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) '$<'`
|
|
|
|
recordmydesktop-rmd.o: rmd.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd.Tpo -c -o recordmydesktop-rmd.o `test -f 'rmd.c' || echo '$(srcdir)/'`rmd.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd.Tpo $(DEPDIR)/recordmydesktop-rmd.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd.Tpo $(DEPDIR)/recordmydesktop-rmd.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd.c' object='recordmydesktop-rmd.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd.o `test -f 'rmd.c' || echo '$(srcdir)/'`rmd.c
|
|
|
|
recordmydesktop-rmd.obj: rmd.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd.Tpo -c -o recordmydesktop-rmd.obj `if test -f 'rmd.c'; then $(CYGPATH_W) 'rmd.c'; else $(CYGPATH_W) '$(srcdir)/rmd.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd.Tpo $(DEPDIR)/recordmydesktop-rmd.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd.Tpo $(DEPDIR)/recordmydesktop-rmd.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd.c' object='recordmydesktop-rmd.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd.obj `if test -f 'rmd.c'; then $(CYGPATH_W) 'rmd.c'; else $(CYGPATH_W) '$(srcdir)/rmd.c'; fi`
|
|
|
|
recordmydesktop-rmd_cache.o: rmd_cache.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_cache.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_cache.Tpo -c -o recordmydesktop-rmd_cache.o `test -f 'rmd_cache.c' || echo '$(srcdir)/'`rmd_cache.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_cache.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_cache.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_cache.c' object='recordmydesktop-rmd_cache.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_cache.o `test -f 'rmd_cache.c' || echo '$(srcdir)/'`rmd_cache.c
|
|
|
|
recordmydesktop-rmd_cache.obj: rmd_cache.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_cache.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_cache.Tpo -c -o recordmydesktop-rmd_cache.obj `if test -f 'rmd_cache.c'; then $(CYGPATH_W) 'rmd_cache.c'; else $(CYGPATH_W) '$(srcdir)/rmd_cache.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_cache.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_cache.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_cache.c' object='recordmydesktop-rmd_cache.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_cache.obj `if test -f 'rmd_cache.c'; then $(CYGPATH_W) 'rmd_cache.c'; else $(CYGPATH_W) '$(srcdir)/rmd_cache.c'; fi`
|
|
|
|
recordmydesktop-rmd_cache_audio.o: rmd_cache_audio.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_cache_audio.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_cache_audio.Tpo -c -o recordmydesktop-rmd_cache_audio.o `test -f 'rmd_cache_audio.c' || echo '$(srcdir)/'`rmd_cache_audio.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_cache_audio.Tpo $(DEPDIR)/recordmydesktop-rmd_cache_audio.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_cache_audio.Tpo $(DEPDIR)/recordmydesktop-rmd_cache_audio.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_cache_audio.c' object='recordmydesktop-rmd_cache_audio.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_cache_audio.o `test -f 'rmd_cache_audio.c' || echo '$(srcdir)/'`rmd_cache_audio.c
|
|
|
|
recordmydesktop-rmd_cache_audio.obj: rmd_cache_audio.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_cache_audio.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_cache_audio.Tpo -c -o recordmydesktop-rmd_cache_audio.obj `if test -f 'rmd_cache_audio.c'; then $(CYGPATH_W) 'rmd_cache_audio.c'; else $(CYGPATH_W) '$(srcdir)/rmd_cache_audio.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_cache_audio.Tpo $(DEPDIR)/recordmydesktop-rmd_cache_audio.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_cache_audio.Tpo $(DEPDIR)/recordmydesktop-rmd_cache_audio.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_cache_audio.c' object='recordmydesktop-rmd_cache_audio.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_cache_audio.obj `if test -f 'rmd_cache_audio.c'; then $(CYGPATH_W) 'rmd_cache_audio.c'; else $(CYGPATH_W) '$(srcdir)/rmd_cache_audio.c'; fi`
|
|
|
|
recordmydesktop-rmd_cache_frame.o: rmd_cache_frame.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_cache_frame.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_cache_frame.Tpo -c -o recordmydesktop-rmd_cache_frame.o `test -f 'rmd_cache_frame.c' || echo '$(srcdir)/'`rmd_cache_frame.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_cache_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_cache_frame.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_cache_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_cache_frame.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_cache_frame.c' object='recordmydesktop-rmd_cache_frame.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_cache_frame.o `test -f 'rmd_cache_frame.c' || echo '$(srcdir)/'`rmd_cache_frame.c
|
|
|
|
recordmydesktop-rmd_cache_frame.obj: rmd_cache_frame.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_cache_frame.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_cache_frame.Tpo -c -o recordmydesktop-rmd_cache_frame.obj `if test -f 'rmd_cache_frame.c'; then $(CYGPATH_W) 'rmd_cache_frame.c'; else $(CYGPATH_W) '$(srcdir)/rmd_cache_frame.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_cache_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_cache_frame.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_cache_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_cache_frame.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_cache_frame.c' object='recordmydesktop-rmd_cache_frame.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_cache_frame.obj `if test -f 'rmd_cache_frame.c'; then $(CYGPATH_W) 'rmd_cache_frame.c'; else $(CYGPATH_W) '$(srcdir)/rmd_cache_frame.c'; fi`
|
|
|
|
recordmydesktop-rmd_capture_sound.o: rmd_capture_sound.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_capture_sound.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_capture_sound.Tpo -c -o recordmydesktop-rmd_capture_sound.o `test -f 'rmd_capture_sound.c' || echo '$(srcdir)/'`rmd_capture_sound.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_capture_sound.Tpo $(DEPDIR)/recordmydesktop-rmd_capture_sound.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_capture_sound.Tpo $(DEPDIR)/recordmydesktop-rmd_capture_sound.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_capture_sound.c' object='recordmydesktop-rmd_capture_sound.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_capture_sound.o `test -f 'rmd_capture_sound.c' || echo '$(srcdir)/'`rmd_capture_sound.c
|
|
|
|
recordmydesktop-rmd_capture_sound.obj: rmd_capture_sound.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_capture_sound.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_capture_sound.Tpo -c -o recordmydesktop-rmd_capture_sound.obj `if test -f 'rmd_capture_sound.c'; then $(CYGPATH_W) 'rmd_capture_sound.c'; else $(CYGPATH_W) '$(srcdir)/rmd_capture_sound.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_capture_sound.Tpo $(DEPDIR)/recordmydesktop-rmd_capture_sound.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_capture_sound.Tpo $(DEPDIR)/recordmydesktop-rmd_capture_sound.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_capture_sound.c' object='recordmydesktop-rmd_capture_sound.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_capture_sound.obj `if test -f 'rmd_capture_sound.c'; then $(CYGPATH_W) 'rmd_capture_sound.c'; else $(CYGPATH_W) '$(srcdir)/rmd_capture_sound.c'; fi`
|
|
|
|
recordmydesktop-rmd_encode_cache.o: rmd_encode_cache.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_encode_cache.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_encode_cache.Tpo -c -o recordmydesktop-rmd_encode_cache.o `test -f 'rmd_encode_cache.c' || echo '$(srcdir)/'`rmd_encode_cache.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_encode_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_cache.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_encode_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_cache.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_encode_cache.c' object='recordmydesktop-rmd_encode_cache.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_encode_cache.o `test -f 'rmd_encode_cache.c' || echo '$(srcdir)/'`rmd_encode_cache.c
|
|
|
|
recordmydesktop-rmd_encode_cache.obj: rmd_encode_cache.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_encode_cache.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_encode_cache.Tpo -c -o recordmydesktop-rmd_encode_cache.obj `if test -f 'rmd_encode_cache.c'; then $(CYGPATH_W) 'rmd_encode_cache.c'; else $(CYGPATH_W) '$(srcdir)/rmd_encode_cache.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_encode_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_cache.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_encode_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_cache.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_encode_cache.c' object='recordmydesktop-rmd_encode_cache.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_encode_cache.obj `if test -f 'rmd_encode_cache.c'; then $(CYGPATH_W) 'rmd_encode_cache.c'; else $(CYGPATH_W) '$(srcdir)/rmd_encode_cache.c'; fi`
|
|
|
|
recordmydesktop-rmd_encode_image_buffer.o: rmd_encode_image_buffer.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_encode_image_buffer.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_encode_image_buffer.Tpo -c -o recordmydesktop-rmd_encode_image_buffer.o `test -f 'rmd_encode_image_buffer.c' || echo '$(srcdir)/'`rmd_encode_image_buffer.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_encode_image_buffer.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_image_buffer.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_encode_image_buffer.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_image_buffer.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_encode_image_buffer.c' object='recordmydesktop-rmd_encode_image_buffer.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_encode_image_buffer.o `test -f 'rmd_encode_image_buffer.c' || echo '$(srcdir)/'`rmd_encode_image_buffer.c
|
|
|
|
recordmydesktop-rmd_encode_image_buffer.obj: rmd_encode_image_buffer.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_encode_image_buffer.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_encode_image_buffer.Tpo -c -o recordmydesktop-rmd_encode_image_buffer.obj `if test -f 'rmd_encode_image_buffer.c'; then $(CYGPATH_W) 'rmd_encode_image_buffer.c'; else $(CYGPATH_W) '$(srcdir)/rmd_encode_image_buffer.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_encode_image_buffer.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_image_buffer.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_encode_image_buffer.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_image_buffer.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_encode_image_buffer.c' object='recordmydesktop-rmd_encode_image_buffer.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_encode_image_buffer.obj `if test -f 'rmd_encode_image_buffer.c'; then $(CYGPATH_W) 'rmd_encode_image_buffer.c'; else $(CYGPATH_W) '$(srcdir)/rmd_encode_image_buffer.c'; fi`
|
|
|
|
recordmydesktop-rmd_encode_sound_buffer.o: rmd_encode_sound_buffer.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_encode_sound_buffer.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_encode_sound_buffer.Tpo -c -o recordmydesktop-rmd_encode_sound_buffer.o `test -f 'rmd_encode_sound_buffer.c' || echo '$(srcdir)/'`rmd_encode_sound_buffer.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_encode_sound_buffer.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_sound_buffer.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_encode_sound_buffer.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_sound_buffer.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_encode_sound_buffer.c' object='recordmydesktop-rmd_encode_sound_buffer.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_encode_sound_buffer.o `test -f 'rmd_encode_sound_buffer.c' || echo '$(srcdir)/'`rmd_encode_sound_buffer.c
|
|
|
|
recordmydesktop-rmd_encode_sound_buffer.obj: rmd_encode_sound_buffer.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_encode_sound_buffer.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_encode_sound_buffer.Tpo -c -o recordmydesktop-rmd_encode_sound_buffer.obj `if test -f 'rmd_encode_sound_buffer.c'; then $(CYGPATH_W) 'rmd_encode_sound_buffer.c'; else $(CYGPATH_W) '$(srcdir)/rmd_encode_sound_buffer.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_encode_sound_buffer.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_sound_buffer.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_encode_sound_buffer.Tpo $(DEPDIR)/recordmydesktop-rmd_encode_sound_buffer.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_encode_sound_buffer.c' object='recordmydesktop-rmd_encode_sound_buffer.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_encode_sound_buffer.obj `if test -f 'rmd_encode_sound_buffer.c'; then $(CYGPATH_W) 'rmd_encode_sound_buffer.c'; else $(CYGPATH_W) '$(srcdir)/rmd_encode_sound_buffer.c'; fi`
|
|
|
|
recordmydesktop-rmd_error.o: rmd_error.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_error.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_error.Tpo -c -o recordmydesktop-rmd_error.o `test -f 'rmd_error.c' || echo '$(srcdir)/'`rmd_error.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_error.Tpo $(DEPDIR)/recordmydesktop-rmd_error.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_error.Tpo $(DEPDIR)/recordmydesktop-rmd_error.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_error.c' object='recordmydesktop-rmd_error.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_error.o `test -f 'rmd_error.c' || echo '$(srcdir)/'`rmd_error.c
|
|
|
|
recordmydesktop-rmd_error.obj: rmd_error.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_error.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_error.Tpo -c -o recordmydesktop-rmd_error.obj `if test -f 'rmd_error.c'; then $(CYGPATH_W) 'rmd_error.c'; else $(CYGPATH_W) '$(srcdir)/rmd_error.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_error.Tpo $(DEPDIR)/recordmydesktop-rmd_error.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_error.Tpo $(DEPDIR)/recordmydesktop-rmd_error.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_error.c' object='recordmydesktop-rmd_error.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_error.obj `if test -f 'rmd_error.c'; then $(CYGPATH_W) 'rmd_error.c'; else $(CYGPATH_W) '$(srcdir)/rmd_error.c'; fi`
|
|
|
|
recordmydesktop-rmd_flush_to_ogg.o: rmd_flush_to_ogg.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_flush_to_ogg.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_flush_to_ogg.Tpo -c -o recordmydesktop-rmd_flush_to_ogg.o `test -f 'rmd_flush_to_ogg.c' || echo '$(srcdir)/'`rmd_flush_to_ogg.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_flush_to_ogg.Tpo $(DEPDIR)/recordmydesktop-rmd_flush_to_ogg.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_flush_to_ogg.Tpo $(DEPDIR)/recordmydesktop-rmd_flush_to_ogg.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_flush_to_ogg.c' object='recordmydesktop-rmd_flush_to_ogg.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_flush_to_ogg.o `test -f 'rmd_flush_to_ogg.c' || echo '$(srcdir)/'`rmd_flush_to_ogg.c
|
|
|
|
recordmydesktop-rmd_flush_to_ogg.obj: rmd_flush_to_ogg.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_flush_to_ogg.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_flush_to_ogg.Tpo -c -o recordmydesktop-rmd_flush_to_ogg.obj `if test -f 'rmd_flush_to_ogg.c'; then $(CYGPATH_W) 'rmd_flush_to_ogg.c'; else $(CYGPATH_W) '$(srcdir)/rmd_flush_to_ogg.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_flush_to_ogg.Tpo $(DEPDIR)/recordmydesktop-rmd_flush_to_ogg.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_flush_to_ogg.Tpo $(DEPDIR)/recordmydesktop-rmd_flush_to_ogg.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_flush_to_ogg.c' object='recordmydesktop-rmd_flush_to_ogg.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_flush_to_ogg.obj `if test -f 'rmd_flush_to_ogg.c'; then $(CYGPATH_W) 'rmd_flush_to_ogg.c'; else $(CYGPATH_W) '$(srcdir)/rmd_flush_to_ogg.c'; fi`
|
|
|
|
recordmydesktop-rmd_frame.o: rmd_frame.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_frame.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_frame.Tpo -c -o recordmydesktop-rmd_frame.o `test -f 'rmd_frame.c' || echo '$(srcdir)/'`rmd_frame.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_frame.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_frame.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_frame.c' object='recordmydesktop-rmd_frame.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_frame.o `test -f 'rmd_frame.c' || echo '$(srcdir)/'`rmd_frame.c
|
|
|
|
recordmydesktop-rmd_frame.obj: rmd_frame.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_frame.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_frame.Tpo -c -o recordmydesktop-rmd_frame.obj `if test -f 'rmd_frame.c'; then $(CYGPATH_W) 'rmd_frame.c'; else $(CYGPATH_W) '$(srcdir)/rmd_frame.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_frame.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_frame.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_frame.c' object='recordmydesktop-rmd_frame.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_frame.obj `if test -f 'rmd_frame.c'; then $(CYGPATH_W) 'rmd_frame.c'; else $(CYGPATH_W) '$(srcdir)/rmd_frame.c'; fi`
|
|
|
|
recordmydesktop-rmd_get_frame.o: rmd_get_frame.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_get_frame.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_get_frame.Tpo -c -o recordmydesktop-rmd_get_frame.o `test -f 'rmd_get_frame.c' || echo '$(srcdir)/'`rmd_get_frame.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_get_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_get_frame.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_get_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_get_frame.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_get_frame.c' object='recordmydesktop-rmd_get_frame.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_get_frame.o `test -f 'rmd_get_frame.c' || echo '$(srcdir)/'`rmd_get_frame.c
|
|
|
|
recordmydesktop-rmd_get_frame.obj: rmd_get_frame.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_get_frame.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_get_frame.Tpo -c -o recordmydesktop-rmd_get_frame.obj `if test -f 'rmd_get_frame.c'; then $(CYGPATH_W) 'rmd_get_frame.c'; else $(CYGPATH_W) '$(srcdir)/rmd_get_frame.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_get_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_get_frame.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_get_frame.Tpo $(DEPDIR)/recordmydesktop-rmd_get_frame.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_get_frame.c' object='recordmydesktop-rmd_get_frame.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_get_frame.obj `if test -f 'rmd_get_frame.c'; then $(CYGPATH_W) 'rmd_get_frame.c'; else $(CYGPATH_W) '$(srcdir)/rmd_get_frame.c'; fi`
|
|
|
|
recordmydesktop-rmd_getzpixmap.o: rmd_getzpixmap.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_getzpixmap.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_getzpixmap.Tpo -c -o recordmydesktop-rmd_getzpixmap.o `test -f 'rmd_getzpixmap.c' || echo '$(srcdir)/'`rmd_getzpixmap.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_getzpixmap.Tpo $(DEPDIR)/recordmydesktop-rmd_getzpixmap.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_getzpixmap.Tpo $(DEPDIR)/recordmydesktop-rmd_getzpixmap.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_getzpixmap.c' object='recordmydesktop-rmd_getzpixmap.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_getzpixmap.o `test -f 'rmd_getzpixmap.c' || echo '$(srcdir)/'`rmd_getzpixmap.c
|
|
|
|
recordmydesktop-rmd_getzpixmap.obj: rmd_getzpixmap.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_getzpixmap.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_getzpixmap.Tpo -c -o recordmydesktop-rmd_getzpixmap.obj `if test -f 'rmd_getzpixmap.c'; then $(CYGPATH_W) 'rmd_getzpixmap.c'; else $(CYGPATH_W) '$(srcdir)/rmd_getzpixmap.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_getzpixmap.Tpo $(DEPDIR)/recordmydesktop-rmd_getzpixmap.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_getzpixmap.Tpo $(DEPDIR)/recordmydesktop-rmd_getzpixmap.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_getzpixmap.c' object='recordmydesktop-rmd_getzpixmap.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_getzpixmap.obj `if test -f 'rmd_getzpixmap.c'; then $(CYGPATH_W) 'rmd_getzpixmap.c'; else $(CYGPATH_W) '$(srcdir)/rmd_getzpixmap.c'; fi`
|
|
|
|
recordmydesktop-rmd_init_encoder.o: rmd_init_encoder.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_init_encoder.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_init_encoder.Tpo -c -o recordmydesktop-rmd_init_encoder.o `test -f 'rmd_init_encoder.c' || echo '$(srcdir)/'`rmd_init_encoder.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_init_encoder.Tpo $(DEPDIR)/recordmydesktop-rmd_init_encoder.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_init_encoder.Tpo $(DEPDIR)/recordmydesktop-rmd_init_encoder.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_init_encoder.c' object='recordmydesktop-rmd_init_encoder.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_init_encoder.o `test -f 'rmd_init_encoder.c' || echo '$(srcdir)/'`rmd_init_encoder.c
|
|
|
|
recordmydesktop-rmd_init_encoder.obj: rmd_init_encoder.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_init_encoder.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_init_encoder.Tpo -c -o recordmydesktop-rmd_init_encoder.obj `if test -f 'rmd_init_encoder.c'; then $(CYGPATH_W) 'rmd_init_encoder.c'; else $(CYGPATH_W) '$(srcdir)/rmd_init_encoder.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_init_encoder.Tpo $(DEPDIR)/recordmydesktop-rmd_init_encoder.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_init_encoder.Tpo $(DEPDIR)/recordmydesktop-rmd_init_encoder.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_init_encoder.c' object='recordmydesktop-rmd_init_encoder.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_init_encoder.obj `if test -f 'rmd_init_encoder.c'; then $(CYGPATH_W) 'rmd_init_encoder.c'; else $(CYGPATH_W) '$(srcdir)/rmd_init_encoder.c'; fi`
|
|
|
|
recordmydesktop-rmd_initialize_data.o: rmd_initialize_data.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_initialize_data.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_initialize_data.Tpo -c -o recordmydesktop-rmd_initialize_data.o `test -f 'rmd_initialize_data.c' || echo '$(srcdir)/'`rmd_initialize_data.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_initialize_data.Tpo $(DEPDIR)/recordmydesktop-rmd_initialize_data.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_initialize_data.Tpo $(DEPDIR)/recordmydesktop-rmd_initialize_data.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_initialize_data.c' object='recordmydesktop-rmd_initialize_data.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_initialize_data.o `test -f 'rmd_initialize_data.c' || echo '$(srcdir)/'`rmd_initialize_data.c
|
|
|
|
recordmydesktop-rmd_initialize_data.obj: rmd_initialize_data.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_initialize_data.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_initialize_data.Tpo -c -o recordmydesktop-rmd_initialize_data.obj `if test -f 'rmd_initialize_data.c'; then $(CYGPATH_W) 'rmd_initialize_data.c'; else $(CYGPATH_W) '$(srcdir)/rmd_initialize_data.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_initialize_data.Tpo $(DEPDIR)/recordmydesktop-rmd_initialize_data.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_initialize_data.Tpo $(DEPDIR)/recordmydesktop-rmd_initialize_data.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_initialize_data.c' object='recordmydesktop-rmd_initialize_data.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_initialize_data.obj `if test -f 'rmd_initialize_data.c'; then $(CYGPATH_W) 'rmd_initialize_data.c'; else $(CYGPATH_W) '$(srcdir)/rmd_initialize_data.c'; fi`
|
|
|
|
recordmydesktop-rmd_jack.o: rmd_jack.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_jack.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_jack.Tpo -c -o recordmydesktop-rmd_jack.o `test -f 'rmd_jack.c' || echo '$(srcdir)/'`rmd_jack.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_jack.Tpo $(DEPDIR)/recordmydesktop-rmd_jack.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_jack.Tpo $(DEPDIR)/recordmydesktop-rmd_jack.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_jack.c' object='recordmydesktop-rmd_jack.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_jack.o `test -f 'rmd_jack.c' || echo '$(srcdir)/'`rmd_jack.c
|
|
|
|
recordmydesktop-rmd_jack.obj: rmd_jack.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_jack.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_jack.Tpo -c -o recordmydesktop-rmd_jack.obj `if test -f 'rmd_jack.c'; then $(CYGPATH_W) 'rmd_jack.c'; else $(CYGPATH_W) '$(srcdir)/rmd_jack.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_jack.Tpo $(DEPDIR)/recordmydesktop-rmd_jack.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_jack.Tpo $(DEPDIR)/recordmydesktop-rmd_jack.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_jack.c' object='recordmydesktop-rmd_jack.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_jack.obj `if test -f 'rmd_jack.c'; then $(CYGPATH_W) 'rmd_jack.c'; else $(CYGPATH_W) '$(srcdir)/rmd_jack.c'; fi`
|
|
|
|
recordmydesktop-rmd_load_cache.o: rmd_load_cache.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_load_cache.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_load_cache.Tpo -c -o recordmydesktop-rmd_load_cache.o `test -f 'rmd_load_cache.c' || echo '$(srcdir)/'`rmd_load_cache.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_load_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_load_cache.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_load_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_load_cache.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_load_cache.c' object='recordmydesktop-rmd_load_cache.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_load_cache.o `test -f 'rmd_load_cache.c' || echo '$(srcdir)/'`rmd_load_cache.c
|
|
|
|
recordmydesktop-rmd_load_cache.obj: rmd_load_cache.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_load_cache.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_load_cache.Tpo -c -o recordmydesktop-rmd_load_cache.obj `if test -f 'rmd_load_cache.c'; then $(CYGPATH_W) 'rmd_load_cache.c'; else $(CYGPATH_W) '$(srcdir)/rmd_load_cache.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_load_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_load_cache.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_load_cache.Tpo $(DEPDIR)/recordmydesktop-rmd_load_cache.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_load_cache.c' object='recordmydesktop-rmd_load_cache.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_load_cache.obj `if test -f 'rmd_load_cache.c'; then $(CYGPATH_W) 'rmd_load_cache.c'; else $(CYGPATH_W) '$(srcdir)/rmd_load_cache.c'; fi`
|
|
|
|
recordmydesktop-rmd_make_dummy_pointer.o: rmd_make_dummy_pointer.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_make_dummy_pointer.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_make_dummy_pointer.Tpo -c -o recordmydesktop-rmd_make_dummy_pointer.o `test -f 'rmd_make_dummy_pointer.c' || echo '$(srcdir)/'`rmd_make_dummy_pointer.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_make_dummy_pointer.Tpo $(DEPDIR)/recordmydesktop-rmd_make_dummy_pointer.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_make_dummy_pointer.Tpo $(DEPDIR)/recordmydesktop-rmd_make_dummy_pointer.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_make_dummy_pointer.c' object='recordmydesktop-rmd_make_dummy_pointer.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_make_dummy_pointer.o `test -f 'rmd_make_dummy_pointer.c' || echo '$(srcdir)/'`rmd_make_dummy_pointer.c
|
|
|
|
recordmydesktop-rmd_make_dummy_pointer.obj: rmd_make_dummy_pointer.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_make_dummy_pointer.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_make_dummy_pointer.Tpo -c -o recordmydesktop-rmd_make_dummy_pointer.obj `if test -f 'rmd_make_dummy_pointer.c'; then $(CYGPATH_W) 'rmd_make_dummy_pointer.c'; else $(CYGPATH_W) '$(srcdir)/rmd_make_dummy_pointer.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_make_dummy_pointer.Tpo $(DEPDIR)/recordmydesktop-rmd_make_dummy_pointer.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_make_dummy_pointer.Tpo $(DEPDIR)/recordmydesktop-rmd_make_dummy_pointer.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_make_dummy_pointer.c' object='recordmydesktop-rmd_make_dummy_pointer.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_make_dummy_pointer.obj `if test -f 'rmd_make_dummy_pointer.c'; then $(CYGPATH_W) 'rmd_make_dummy_pointer.c'; else $(CYGPATH_W) '$(srcdir)/rmd_make_dummy_pointer.c'; fi`
|
|
|
|
recordmydesktop-rmd_math.o: rmd_math.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_math.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_math.Tpo -c -o recordmydesktop-rmd_math.o `test -f 'rmd_math.c' || echo '$(srcdir)/'`rmd_math.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_math.Tpo $(DEPDIR)/recordmydesktop-rmd_math.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_math.Tpo $(DEPDIR)/recordmydesktop-rmd_math.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_math.c' object='recordmydesktop-rmd_math.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_math.o `test -f 'rmd_math.c' || echo '$(srcdir)/'`rmd_math.c
|
|
|
|
recordmydesktop-rmd_math.obj: rmd_math.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_math.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_math.Tpo -c -o recordmydesktop-rmd_math.obj `if test -f 'rmd_math.c'; then $(CYGPATH_W) 'rmd_math.c'; else $(CYGPATH_W) '$(srcdir)/rmd_math.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_math.Tpo $(DEPDIR)/recordmydesktop-rmd_math.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_math.Tpo $(DEPDIR)/recordmydesktop-rmd_math.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_math.c' object='recordmydesktop-rmd_math.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_math.obj `if test -f 'rmd_math.c'; then $(CYGPATH_W) 'rmd_math.c'; else $(CYGPATH_W) '$(srcdir)/rmd_math.c'; fi`
|
|
|
|
recordmydesktop-rmd_opendev.o: rmd_opendev.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_opendev.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_opendev.Tpo -c -o recordmydesktop-rmd_opendev.o `test -f 'rmd_opendev.c' || echo '$(srcdir)/'`rmd_opendev.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_opendev.Tpo $(DEPDIR)/recordmydesktop-rmd_opendev.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_opendev.Tpo $(DEPDIR)/recordmydesktop-rmd_opendev.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_opendev.c' object='recordmydesktop-rmd_opendev.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_opendev.o `test -f 'rmd_opendev.c' || echo '$(srcdir)/'`rmd_opendev.c
|
|
|
|
recordmydesktop-rmd_opendev.obj: rmd_opendev.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_opendev.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_opendev.Tpo -c -o recordmydesktop-rmd_opendev.obj `if test -f 'rmd_opendev.c'; then $(CYGPATH_W) 'rmd_opendev.c'; else $(CYGPATH_W) '$(srcdir)/rmd_opendev.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_opendev.Tpo $(DEPDIR)/recordmydesktop-rmd_opendev.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_opendev.Tpo $(DEPDIR)/recordmydesktop-rmd_opendev.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_opendev.c' object='recordmydesktop-rmd_opendev.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_opendev.obj `if test -f 'rmd_opendev.c'; then $(CYGPATH_W) 'rmd_opendev.c'; else $(CYGPATH_W) '$(srcdir)/rmd_opendev.c'; fi`
|
|
|
|
recordmydesktop-rmd_parseargs.o: rmd_parseargs.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_parseargs.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_parseargs.Tpo -c -o recordmydesktop-rmd_parseargs.o `test -f 'rmd_parseargs.c' || echo '$(srcdir)/'`rmd_parseargs.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_parseargs.Tpo $(DEPDIR)/recordmydesktop-rmd_parseargs.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_parseargs.Tpo $(DEPDIR)/recordmydesktop-rmd_parseargs.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_parseargs.c' object='recordmydesktop-rmd_parseargs.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_parseargs.o `test -f 'rmd_parseargs.c' || echo '$(srcdir)/'`rmd_parseargs.c
|
|
|
|
recordmydesktop-rmd_parseargs.obj: rmd_parseargs.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_parseargs.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_parseargs.Tpo -c -o recordmydesktop-rmd_parseargs.obj `if test -f 'rmd_parseargs.c'; then $(CYGPATH_W) 'rmd_parseargs.c'; else $(CYGPATH_W) '$(srcdir)/rmd_parseargs.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_parseargs.Tpo $(DEPDIR)/recordmydesktop-rmd_parseargs.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_parseargs.Tpo $(DEPDIR)/recordmydesktop-rmd_parseargs.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_parseargs.c' object='recordmydesktop-rmd_parseargs.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_parseargs.obj `if test -f 'rmd_parseargs.c'; then $(CYGPATH_W) 'rmd_parseargs.c'; else $(CYGPATH_W) '$(srcdir)/rmd_parseargs.c'; fi`
|
|
|
|
recordmydesktop-rmd_poll_events.o: rmd_poll_events.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_poll_events.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_poll_events.Tpo -c -o recordmydesktop-rmd_poll_events.o `test -f 'rmd_poll_events.c' || echo '$(srcdir)/'`rmd_poll_events.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_poll_events.Tpo $(DEPDIR)/recordmydesktop-rmd_poll_events.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_poll_events.Tpo $(DEPDIR)/recordmydesktop-rmd_poll_events.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_poll_events.c' object='recordmydesktop-rmd_poll_events.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_poll_events.o `test -f 'rmd_poll_events.c' || echo '$(srcdir)/'`rmd_poll_events.c
|
|
|
|
recordmydesktop-rmd_poll_events.obj: rmd_poll_events.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_poll_events.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_poll_events.Tpo -c -o recordmydesktop-rmd_poll_events.obj `if test -f 'rmd_poll_events.c'; then $(CYGPATH_W) 'rmd_poll_events.c'; else $(CYGPATH_W) '$(srcdir)/rmd_poll_events.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_poll_events.Tpo $(DEPDIR)/recordmydesktop-rmd_poll_events.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_poll_events.Tpo $(DEPDIR)/recordmydesktop-rmd_poll_events.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_poll_events.c' object='recordmydesktop-rmd_poll_events.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_poll_events.obj `if test -f 'rmd_poll_events.c'; then $(CYGPATH_W) 'rmd_poll_events.c'; else $(CYGPATH_W) '$(srcdir)/rmd_poll_events.c'; fi`
|
|
|
|
recordmydesktop-rmd_queryextensions.o: rmd_queryextensions.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_queryextensions.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_queryextensions.Tpo -c -o recordmydesktop-rmd_queryextensions.o `test -f 'rmd_queryextensions.c' || echo '$(srcdir)/'`rmd_queryextensions.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_queryextensions.Tpo $(DEPDIR)/recordmydesktop-rmd_queryextensions.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_queryextensions.Tpo $(DEPDIR)/recordmydesktop-rmd_queryextensions.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_queryextensions.c' object='recordmydesktop-rmd_queryextensions.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_queryextensions.o `test -f 'rmd_queryextensions.c' || echo '$(srcdir)/'`rmd_queryextensions.c
|
|
|
|
recordmydesktop-rmd_queryextensions.obj: rmd_queryextensions.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_queryextensions.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_queryextensions.Tpo -c -o recordmydesktop-rmd_queryextensions.obj `if test -f 'rmd_queryextensions.c'; then $(CYGPATH_W) 'rmd_queryextensions.c'; else $(CYGPATH_W) '$(srcdir)/rmd_queryextensions.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_queryextensions.Tpo $(DEPDIR)/recordmydesktop-rmd_queryextensions.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_queryextensions.Tpo $(DEPDIR)/recordmydesktop-rmd_queryextensions.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_queryextensions.c' object='recordmydesktop-rmd_queryextensions.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_queryextensions.obj `if test -f 'rmd_queryextensions.c'; then $(CYGPATH_W) 'rmd_queryextensions.c'; else $(CYGPATH_W) '$(srcdir)/rmd_queryextensions.c'; fi`
|
|
|
|
recordmydesktop-rmd_rectinsert.o: rmd_rectinsert.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_rectinsert.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_rectinsert.Tpo -c -o recordmydesktop-rmd_rectinsert.o `test -f 'rmd_rectinsert.c' || echo '$(srcdir)/'`rmd_rectinsert.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_rectinsert.Tpo $(DEPDIR)/recordmydesktop-rmd_rectinsert.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_rectinsert.Tpo $(DEPDIR)/recordmydesktop-rmd_rectinsert.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_rectinsert.c' object='recordmydesktop-rmd_rectinsert.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_rectinsert.o `test -f 'rmd_rectinsert.c' || echo '$(srcdir)/'`rmd_rectinsert.c
|
|
|
|
recordmydesktop-rmd_rectinsert.obj: rmd_rectinsert.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_rectinsert.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_rectinsert.Tpo -c -o recordmydesktop-rmd_rectinsert.obj `if test -f 'rmd_rectinsert.c'; then $(CYGPATH_W) 'rmd_rectinsert.c'; else $(CYGPATH_W) '$(srcdir)/rmd_rectinsert.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_rectinsert.Tpo $(DEPDIR)/recordmydesktop-rmd_rectinsert.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_rectinsert.Tpo $(DEPDIR)/recordmydesktop-rmd_rectinsert.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_rectinsert.c' object='recordmydesktop-rmd_rectinsert.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_rectinsert.obj `if test -f 'rmd_rectinsert.c'; then $(CYGPATH_W) 'rmd_rectinsert.c'; else $(CYGPATH_W) '$(srcdir)/rmd_rectinsert.c'; fi`
|
|
|
|
recordmydesktop-rmd_register_callbacks.o: rmd_register_callbacks.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_register_callbacks.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_register_callbacks.Tpo -c -o recordmydesktop-rmd_register_callbacks.o `test -f 'rmd_register_callbacks.c' || echo '$(srcdir)/'`rmd_register_callbacks.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_register_callbacks.Tpo $(DEPDIR)/recordmydesktop-rmd_register_callbacks.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_register_callbacks.Tpo $(DEPDIR)/recordmydesktop-rmd_register_callbacks.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_register_callbacks.c' object='recordmydesktop-rmd_register_callbacks.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_register_callbacks.o `test -f 'rmd_register_callbacks.c' || echo '$(srcdir)/'`rmd_register_callbacks.c
|
|
|
|
recordmydesktop-rmd_register_callbacks.obj: rmd_register_callbacks.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_register_callbacks.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_register_callbacks.Tpo -c -o recordmydesktop-rmd_register_callbacks.obj `if test -f 'rmd_register_callbacks.c'; then $(CYGPATH_W) 'rmd_register_callbacks.c'; else $(CYGPATH_W) '$(srcdir)/rmd_register_callbacks.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_register_callbacks.Tpo $(DEPDIR)/recordmydesktop-rmd_register_callbacks.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_register_callbacks.Tpo $(DEPDIR)/recordmydesktop-rmd_register_callbacks.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_register_callbacks.c' object='recordmydesktop-rmd_register_callbacks.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_register_callbacks.obj `if test -f 'rmd_register_callbacks.c'; then $(CYGPATH_W) 'rmd_register_callbacks.c'; else $(CYGPATH_W) '$(srcdir)/rmd_register_callbacks.c'; fi`
|
|
|
|
recordmydesktop-rmd_rescue.o: rmd_rescue.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_rescue.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_rescue.Tpo -c -o recordmydesktop-rmd_rescue.o `test -f 'rmd_rescue.c' || echo '$(srcdir)/'`rmd_rescue.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_rescue.Tpo $(DEPDIR)/recordmydesktop-rmd_rescue.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_rescue.Tpo $(DEPDIR)/recordmydesktop-rmd_rescue.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_rescue.c' object='recordmydesktop-rmd_rescue.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_rescue.o `test -f 'rmd_rescue.c' || echo '$(srcdir)/'`rmd_rescue.c
|
|
|
|
recordmydesktop-rmd_rescue.obj: rmd_rescue.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_rescue.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_rescue.Tpo -c -o recordmydesktop-rmd_rescue.obj `if test -f 'rmd_rescue.c'; then $(CYGPATH_W) 'rmd_rescue.c'; else $(CYGPATH_W) '$(srcdir)/rmd_rescue.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_rescue.Tpo $(DEPDIR)/recordmydesktop-rmd_rescue.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_rescue.Tpo $(DEPDIR)/recordmydesktop-rmd_rescue.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_rescue.c' object='recordmydesktop-rmd_rescue.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_rescue.obj `if test -f 'rmd_rescue.c'; then $(CYGPATH_W) 'rmd_rescue.c'; else $(CYGPATH_W) '$(srcdir)/rmd_rescue.c'; fi`
|
|
|
|
recordmydesktop-rmd_setbrwindow.o: rmd_setbrwindow.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_setbrwindow.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_setbrwindow.Tpo -c -o recordmydesktop-rmd_setbrwindow.o `test -f 'rmd_setbrwindow.c' || echo '$(srcdir)/'`rmd_setbrwindow.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_setbrwindow.Tpo $(DEPDIR)/recordmydesktop-rmd_setbrwindow.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_setbrwindow.Tpo $(DEPDIR)/recordmydesktop-rmd_setbrwindow.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_setbrwindow.c' object='recordmydesktop-rmd_setbrwindow.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_setbrwindow.o `test -f 'rmd_setbrwindow.c' || echo '$(srcdir)/'`rmd_setbrwindow.c
|
|
|
|
recordmydesktop-rmd_setbrwindow.obj: rmd_setbrwindow.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_setbrwindow.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_setbrwindow.Tpo -c -o recordmydesktop-rmd_setbrwindow.obj `if test -f 'rmd_setbrwindow.c'; then $(CYGPATH_W) 'rmd_setbrwindow.c'; else $(CYGPATH_W) '$(srcdir)/rmd_setbrwindow.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_setbrwindow.Tpo $(DEPDIR)/recordmydesktop-rmd_setbrwindow.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_setbrwindow.Tpo $(DEPDIR)/recordmydesktop-rmd_setbrwindow.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_setbrwindow.c' object='recordmydesktop-rmd_setbrwindow.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_setbrwindow.obj `if test -f 'rmd_setbrwindow.c'; then $(CYGPATH_W) 'rmd_setbrwindow.c'; else $(CYGPATH_W) '$(srcdir)/rmd_setbrwindow.c'; fi`
|
|
|
|
recordmydesktop-rmd_shortcuts.o: rmd_shortcuts.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_shortcuts.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_shortcuts.Tpo -c -o recordmydesktop-rmd_shortcuts.o `test -f 'rmd_shortcuts.c' || echo '$(srcdir)/'`rmd_shortcuts.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_shortcuts.Tpo $(DEPDIR)/recordmydesktop-rmd_shortcuts.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_shortcuts.Tpo $(DEPDIR)/recordmydesktop-rmd_shortcuts.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_shortcuts.c' object='recordmydesktop-rmd_shortcuts.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_shortcuts.o `test -f 'rmd_shortcuts.c' || echo '$(srcdir)/'`rmd_shortcuts.c
|
|
|
|
recordmydesktop-rmd_shortcuts.obj: rmd_shortcuts.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_shortcuts.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_shortcuts.Tpo -c -o recordmydesktop-rmd_shortcuts.obj `if test -f 'rmd_shortcuts.c'; then $(CYGPATH_W) 'rmd_shortcuts.c'; else $(CYGPATH_W) '$(srcdir)/rmd_shortcuts.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_shortcuts.Tpo $(DEPDIR)/recordmydesktop-rmd_shortcuts.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_shortcuts.Tpo $(DEPDIR)/recordmydesktop-rmd_shortcuts.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_shortcuts.c' object='recordmydesktop-rmd_shortcuts.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_shortcuts.obj `if test -f 'rmd_shortcuts.c'; then $(CYGPATH_W) 'rmd_shortcuts.c'; else $(CYGPATH_W) '$(srcdir)/rmd_shortcuts.c'; fi`
|
|
|
|
recordmydesktop-rmd_specsfile.o: rmd_specsfile.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_specsfile.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_specsfile.Tpo -c -o recordmydesktop-rmd_specsfile.o `test -f 'rmd_specsfile.c' || echo '$(srcdir)/'`rmd_specsfile.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_specsfile.Tpo $(DEPDIR)/recordmydesktop-rmd_specsfile.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_specsfile.Tpo $(DEPDIR)/recordmydesktop-rmd_specsfile.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_specsfile.c' object='recordmydesktop-rmd_specsfile.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_specsfile.o `test -f 'rmd_specsfile.c' || echo '$(srcdir)/'`rmd_specsfile.c
|
|
|
|
recordmydesktop-rmd_specsfile.obj: rmd_specsfile.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_specsfile.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_specsfile.Tpo -c -o recordmydesktop-rmd_specsfile.obj `if test -f 'rmd_specsfile.c'; then $(CYGPATH_W) 'rmd_specsfile.c'; else $(CYGPATH_W) '$(srcdir)/rmd_specsfile.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_specsfile.Tpo $(DEPDIR)/recordmydesktop-rmd_specsfile.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_specsfile.Tpo $(DEPDIR)/recordmydesktop-rmd_specsfile.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_specsfile.c' object='recordmydesktop-rmd_specsfile.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_specsfile.obj `if test -f 'rmd_specsfile.c'; then $(CYGPATH_W) 'rmd_specsfile.c'; else $(CYGPATH_W) '$(srcdir)/rmd_specsfile.c'; fi`
|
|
|
|
recordmydesktop-rmd_threads.o: rmd_threads.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_threads.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_threads.Tpo -c -o recordmydesktop-rmd_threads.o `test -f 'rmd_threads.c' || echo '$(srcdir)/'`rmd_threads.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_threads.Tpo $(DEPDIR)/recordmydesktop-rmd_threads.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_threads.Tpo $(DEPDIR)/recordmydesktop-rmd_threads.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_threads.c' object='recordmydesktop-rmd_threads.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_threads.o `test -f 'rmd_threads.c' || echo '$(srcdir)/'`rmd_threads.c
|
|
|
|
recordmydesktop-rmd_threads.obj: rmd_threads.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_threads.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_threads.Tpo -c -o recordmydesktop-rmd_threads.obj `if test -f 'rmd_threads.c'; then $(CYGPATH_W) 'rmd_threads.c'; else $(CYGPATH_W) '$(srcdir)/rmd_threads.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_threads.Tpo $(DEPDIR)/recordmydesktop-rmd_threads.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_threads.Tpo $(DEPDIR)/recordmydesktop-rmd_threads.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_threads.c' object='recordmydesktop-rmd_threads.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_threads.obj `if test -f 'rmd_threads.c'; then $(CYGPATH_W) 'rmd_threads.c'; else $(CYGPATH_W) '$(srcdir)/rmd_threads.c'; fi`
|
|
|
|
recordmydesktop-rmd_timer.o: rmd_timer.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_timer.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_timer.Tpo -c -o recordmydesktop-rmd_timer.o `test -f 'rmd_timer.c' || echo '$(srcdir)/'`rmd_timer.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_timer.Tpo $(DEPDIR)/recordmydesktop-rmd_timer.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_timer.Tpo $(DEPDIR)/recordmydesktop-rmd_timer.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_timer.c' object='recordmydesktop-rmd_timer.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_timer.o `test -f 'rmd_timer.c' || echo '$(srcdir)/'`rmd_timer.c
|
|
|
|
recordmydesktop-rmd_timer.obj: rmd_timer.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_timer.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_timer.Tpo -c -o recordmydesktop-rmd_timer.obj `if test -f 'rmd_timer.c'; then $(CYGPATH_W) 'rmd_timer.c'; else $(CYGPATH_W) '$(srcdir)/rmd_timer.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_timer.Tpo $(DEPDIR)/recordmydesktop-rmd_timer.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_timer.Tpo $(DEPDIR)/recordmydesktop-rmd_timer.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_timer.c' object='recordmydesktop-rmd_timer.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_timer.obj `if test -f 'rmd_timer.c'; then $(CYGPATH_W) 'rmd_timer.c'; else $(CYGPATH_W) '$(srcdir)/rmd_timer.c'; fi`
|
|
|
|
recordmydesktop-rmd_update_image.o: rmd_update_image.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_update_image.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_update_image.Tpo -c -o recordmydesktop-rmd_update_image.o `test -f 'rmd_update_image.c' || echo '$(srcdir)/'`rmd_update_image.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_update_image.Tpo $(DEPDIR)/recordmydesktop-rmd_update_image.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_update_image.Tpo $(DEPDIR)/recordmydesktop-rmd_update_image.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_update_image.c' object='recordmydesktop-rmd_update_image.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_update_image.o `test -f 'rmd_update_image.c' || echo '$(srcdir)/'`rmd_update_image.c
|
|
|
|
recordmydesktop-rmd_update_image.obj: rmd_update_image.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_update_image.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_update_image.Tpo -c -o recordmydesktop-rmd_update_image.obj `if test -f 'rmd_update_image.c'; then $(CYGPATH_W) 'rmd_update_image.c'; else $(CYGPATH_W) '$(srcdir)/rmd_update_image.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_update_image.Tpo $(DEPDIR)/recordmydesktop-rmd_update_image.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_update_image.Tpo $(DEPDIR)/recordmydesktop-rmd_update_image.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_update_image.c' object='recordmydesktop-rmd_update_image.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_update_image.obj `if test -f 'rmd_update_image.c'; then $(CYGPATH_W) 'rmd_update_image.c'; else $(CYGPATH_W) '$(srcdir)/rmd_update_image.c'; fi`
|
|
|
|
recordmydesktop-rmd_wm_check.o: rmd_wm_check.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_wm_check.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_wm_check.Tpo -c -o recordmydesktop-rmd_wm_check.o `test -f 'rmd_wm_check.c' || echo '$(srcdir)/'`rmd_wm_check.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_wm_check.Tpo $(DEPDIR)/recordmydesktop-rmd_wm_check.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_wm_check.Tpo $(DEPDIR)/recordmydesktop-rmd_wm_check.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_wm_check.c' object='recordmydesktop-rmd_wm_check.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_wm_check.o `test -f 'rmd_wm_check.c' || echo '$(srcdir)/'`rmd_wm_check.c
|
|
|
|
recordmydesktop-rmd_wm_check.obj: rmd_wm_check.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_wm_check.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_wm_check.Tpo -c -o recordmydesktop-rmd_wm_check.obj `if test -f 'rmd_wm_check.c'; then $(CYGPATH_W) 'rmd_wm_check.c'; else $(CYGPATH_W) '$(srcdir)/rmd_wm_check.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_wm_check.Tpo $(DEPDIR)/recordmydesktop-rmd_wm_check.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_wm_check.Tpo $(DEPDIR)/recordmydesktop-rmd_wm_check.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_wm_check.c' object='recordmydesktop-rmd_wm_check.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_wm_check.obj `if test -f 'rmd_wm_check.c'; then $(CYGPATH_W) 'rmd_wm_check.c'; else $(CYGPATH_W) '$(srcdir)/rmd_wm_check.c'; fi`
|
|
|
|
recordmydesktop-rmd_wm_is_compositing.o: rmd_wm_is_compositing.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_wm_is_compositing.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_wm_is_compositing.Tpo -c -o recordmydesktop-rmd_wm_is_compositing.o `test -f 'rmd_wm_is_compositing.c' || echo '$(srcdir)/'`rmd_wm_is_compositing.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_wm_is_compositing.Tpo $(DEPDIR)/recordmydesktop-rmd_wm_is_compositing.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_wm_is_compositing.Tpo $(DEPDIR)/recordmydesktop-rmd_wm_is_compositing.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_wm_is_compositing.c' object='recordmydesktop-rmd_wm_is_compositing.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_wm_is_compositing.o `test -f 'rmd_wm_is_compositing.c' || echo '$(srcdir)/'`rmd_wm_is_compositing.c
|
|
|
|
recordmydesktop-rmd_wm_is_compositing.obj: rmd_wm_is_compositing.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_wm_is_compositing.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_wm_is_compositing.Tpo -c -o recordmydesktop-rmd_wm_is_compositing.obj `if test -f 'rmd_wm_is_compositing.c'; then $(CYGPATH_W) 'rmd_wm_is_compositing.c'; else $(CYGPATH_W) '$(srcdir)/rmd_wm_is_compositing.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_wm_is_compositing.Tpo $(DEPDIR)/recordmydesktop-rmd_wm_is_compositing.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_wm_is_compositing.Tpo $(DEPDIR)/recordmydesktop-rmd_wm_is_compositing.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_wm_is_compositing.c' object='recordmydesktop-rmd_wm_is_compositing.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_wm_is_compositing.obj `if test -f 'rmd_wm_is_compositing.c'; then $(CYGPATH_W) 'rmd_wm_is_compositing.c'; else $(CYGPATH_W) '$(srcdir)/rmd_wm_is_compositing.c'; fi`
|
|
|
|
recordmydesktop-rmd_yuv_utils.o: rmd_yuv_utils.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_yuv_utils.o -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_yuv_utils.Tpo -c -o recordmydesktop-rmd_yuv_utils.o `test -f 'rmd_yuv_utils.c' || echo '$(srcdir)/'`rmd_yuv_utils.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_yuv_utils.Tpo $(DEPDIR)/recordmydesktop-rmd_yuv_utils.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_yuv_utils.Tpo $(DEPDIR)/recordmydesktop-rmd_yuv_utils.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_yuv_utils.c' object='recordmydesktop-rmd_yuv_utils.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_yuv_utils.o `test -f 'rmd_yuv_utils.c' || echo '$(srcdir)/'`rmd_yuv_utils.c
|
|
|
|
recordmydesktop-rmd_yuv_utils.obj: rmd_yuv_utils.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-rmd_yuv_utils.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-rmd_yuv_utils.Tpo -c -o recordmydesktop-rmd_yuv_utils.obj `if test -f 'rmd_yuv_utils.c'; then $(CYGPATH_W) 'rmd_yuv_utils.c'; else $(CYGPATH_W) '$(srcdir)/rmd_yuv_utils.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-rmd_yuv_utils.Tpo $(DEPDIR)/recordmydesktop-rmd_yuv_utils.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-rmd_yuv_utils.Tpo $(DEPDIR)/recordmydesktop-rmd_yuv_utils.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_yuv_utils.c' object='recordmydesktop-rmd_yuv_utils.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-rmd_yuv_utils.obj `if test -f 'rmd_yuv_utils.c'; then $(CYGPATH_W) 'rmd_yuv_utils.c'; else $(CYGPATH_W) '$(srcdir)/rmd_yuv_utils.c'; fi`
|
|
|
|
recordmydesktop-skeleton.o: skeleton.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-skeleton.o -MD -MP -MF $(DEPDIR)/recordmydesktop-skeleton.Tpo -c -o recordmydesktop-skeleton.o `test -f 'skeleton.c' || echo '$(srcdir)/'`skeleton.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-skeleton.Tpo $(DEPDIR)/recordmydesktop-skeleton.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-skeleton.Tpo $(DEPDIR)/recordmydesktop-skeleton.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='skeleton.c' object='recordmydesktop-skeleton.o' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-skeleton.o `test -f 'skeleton.c' || echo '$(srcdir)/'`skeleton.c
|
|
|
|
recordmydesktop-skeleton.obj: skeleton.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT recordmydesktop-skeleton.obj -MD -MP -MF $(DEPDIR)/recordmydesktop-skeleton.Tpo -c -o recordmydesktop-skeleton.obj `if test -f 'skeleton.c'; then $(CYGPATH_W) 'skeleton.c'; else $(CYGPATH_W) '$(srcdir)/skeleton.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/recordmydesktop-skeleton.Tpo $(DEPDIR)/recordmydesktop-skeleton.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/recordmydesktop-skeleton.Tpo $(DEPDIR)/recordmydesktop-skeleton.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='skeleton.c' object='recordmydesktop-skeleton.obj' libtool=no @AMDEPBACKSLASH@
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(recordmydesktop_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o recordmydesktop-skeleton.obj `if test -f 'skeleton.c'; then $(CYGPATH_W) 'skeleton.c'; else $(CYGPATH_W) '$(srcdir)/skeleton.c'; fi`
|
|
|
|
test_rectinsert-test-rectinsert.o: test-rectinsert.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rectinsert_CFLAGS) $(CFLAGS) -MT test_rectinsert-test-rectinsert.o -MD -MP -MF $(DEPDIR)/test_rectinsert-test-rectinsert.Tpo -c -o test_rectinsert-test-rectinsert.o `test -f 'test-rectinsert.c' || echo '$(srcdir)/'`test-rectinsert.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/test_rectinsert-test-rectinsert.Tpo $(DEPDIR)/test_rectinsert-test-rectinsert.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_rectinsert-test-rectinsert.Tpo $(DEPDIR)/test_rectinsert-test-rectinsert.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-rectinsert.c' object='test_rectinsert-test-rectinsert.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) $(test_rectinsert_CFLAGS) $(CFLAGS) -c -o test_rectinsert-test-rectinsert.o `test -f 'test-rectinsert.c' || echo '$(srcdir)/'`test-rectinsert.c
|
|
|
|
test_rectinsert-test-rectinsert.obj: test-rectinsert.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rectinsert_CFLAGS) $(CFLAGS) -MT test_rectinsert-test-rectinsert.obj -MD -MP -MF $(DEPDIR)/test_rectinsert-test-rectinsert.Tpo -c -o test_rectinsert-test-rectinsert.obj `if test -f 'test-rectinsert.c'; then $(CYGPATH_W) 'test-rectinsert.c'; else $(CYGPATH_W) '$(srcdir)/test-rectinsert.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/test_rectinsert-test-rectinsert.Tpo $(DEPDIR)/test_rectinsert-test-rectinsert.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_rectinsert-test-rectinsert.Tpo $(DEPDIR)/test_rectinsert-test-rectinsert.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-rectinsert.c' object='test_rectinsert-test-rectinsert.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) $(test_rectinsert_CFLAGS) $(CFLAGS) -c -o test_rectinsert-test-rectinsert.obj `if test -f 'test-rectinsert.c'; then $(CYGPATH_W) 'test-rectinsert.c'; else $(CYGPATH_W) '$(srcdir)/test-rectinsert.c'; fi`
|
|
|
|
test_rectinsert-test-rectinsert-data.o: test-rectinsert-data.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rectinsert_CFLAGS) $(CFLAGS) -MT test_rectinsert-test-rectinsert-data.o -MD -MP -MF $(DEPDIR)/test_rectinsert-test-rectinsert-data.Tpo -c -o test_rectinsert-test-rectinsert-data.o `test -f 'test-rectinsert-data.c' || echo '$(srcdir)/'`test-rectinsert-data.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/test_rectinsert-test-rectinsert-data.Tpo $(DEPDIR)/test_rectinsert-test-rectinsert-data.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_rectinsert-test-rectinsert-data.Tpo $(DEPDIR)/test_rectinsert-test-rectinsert-data.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-rectinsert-data.c' object='test_rectinsert-test-rectinsert-data.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) $(test_rectinsert_CFLAGS) $(CFLAGS) -c -o test_rectinsert-test-rectinsert-data.o `test -f 'test-rectinsert-data.c' || echo '$(srcdir)/'`test-rectinsert-data.c
|
|
|
|
test_rectinsert-test-rectinsert-data.obj: test-rectinsert-data.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rectinsert_CFLAGS) $(CFLAGS) -MT test_rectinsert-test-rectinsert-data.obj -MD -MP -MF $(DEPDIR)/test_rectinsert-test-rectinsert-data.Tpo -c -o test_rectinsert-test-rectinsert-data.obj `if test -f 'test-rectinsert-data.c'; then $(CYGPATH_W) 'test-rectinsert-data.c'; else $(CYGPATH_W) '$(srcdir)/test-rectinsert-data.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/test_rectinsert-test-rectinsert-data.Tpo $(DEPDIR)/test_rectinsert-test-rectinsert-data.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_rectinsert-test-rectinsert-data.Tpo $(DEPDIR)/test_rectinsert-test-rectinsert-data.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test-rectinsert-data.c' object='test_rectinsert-test-rectinsert-data.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) $(test_rectinsert_CFLAGS) $(CFLAGS) -c -o test_rectinsert-test-rectinsert-data.obj `if test -f 'test-rectinsert-data.c'; then $(CYGPATH_W) 'test-rectinsert-data.c'; else $(CYGPATH_W) '$(srcdir)/test-rectinsert-data.c'; fi`
|
|
|
|
test_rectinsert-rmd_rectinsert.o: rmd_rectinsert.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rectinsert_CFLAGS) $(CFLAGS) -MT test_rectinsert-rmd_rectinsert.o -MD -MP -MF $(DEPDIR)/test_rectinsert-rmd_rectinsert.Tpo -c -o test_rectinsert-rmd_rectinsert.o `test -f 'rmd_rectinsert.c' || echo '$(srcdir)/'`rmd_rectinsert.c
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/test_rectinsert-rmd_rectinsert.Tpo $(DEPDIR)/test_rectinsert-rmd_rectinsert.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_rectinsert-rmd_rectinsert.Tpo $(DEPDIR)/test_rectinsert-rmd_rectinsert.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_rectinsert.c' object='test_rectinsert-rmd_rectinsert.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) $(test_rectinsert_CFLAGS) $(CFLAGS) -c -o test_rectinsert-rmd_rectinsert.o `test -f 'rmd_rectinsert.c' || echo '$(srcdir)/'`rmd_rectinsert.c
|
|
|
|
test_rectinsert-rmd_rectinsert.obj: rmd_rectinsert.c
|
|
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rectinsert_CFLAGS) $(CFLAGS) -MT test_rectinsert-rmd_rectinsert.obj -MD -MP -MF $(DEPDIR)/test_rectinsert-rmd_rectinsert.Tpo -c -o test_rectinsert-rmd_rectinsert.obj `if test -f 'rmd_rectinsert.c'; then $(CYGPATH_W) 'rmd_rectinsert.c'; else $(CYGPATH_W) '$(srcdir)/rmd_rectinsert.c'; fi`
|
|
-@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/test_rectinsert-rmd_rectinsert.Tpo $(DEPDIR)/test_rectinsert-rmd_rectinsert.Po
|
|
+@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_rectinsert-rmd_rectinsert.Tpo $(DEPDIR)/test_rectinsert-rmd_rectinsert.Po
|
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='rmd_rectinsert.c' object='test_rectinsert-rmd_rectinsert.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) $(test_rectinsert_CFLAGS) $(CFLAGS) -c -o test_rectinsert-rmd_rectinsert.obj `if test -f 'rmd_rectinsert.c'; then $(CYGPATH_W) 'rmd_rectinsert.c'; else $(CYGPATH_W) '$(srcdir)/rmd_rectinsert.c'; fi`
|
|
@@ -972,7 +992,7 @@
|
|
|
|
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
$(TAGS_FILES) $(LISP)
|
|
- tags=; \
|
|
+ set x; \
|
|
here=`pwd`; \
|
|
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
unique=`for i in $$list; do \
|
|
@@ -980,29 +1000,34 @@
|
|
done | \
|
|
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
|
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
|
- if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
|
+ shift; \
|
|
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
|
test -n "$$unique" || unique=$$empty_fix; \
|
|
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
- $$tags $$unique; \
|
|
+ if test $$# -gt 0; then \
|
|
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
+ "$$@" $$unique; \
|
|
+ else \
|
|
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
+ $$unique; \
|
|
+ fi; \
|
|
fi
|
|
ctags: CTAGS
|
|
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
$(TAGS_FILES) $(LISP)
|
|
- tags=; \
|
|
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
unique=`for i in $$list; do \
|
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
done | \
|
|
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
|
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
|
- test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
|
+ test -z "$(CTAGS_ARGS)$$unique" \
|
|
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
- $$tags $$unique
|
|
+ $$unique
|
|
|
|
GTAGS:
|
|
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
- && cd $(top_srcdir) \
|
|
- && gtags -i $(GTAGS_ARGS) $$here
|
|
+ && $(am__cd) $(top_srcdir) \
|
|
+ && gtags -i $(GTAGS_ARGS) "$$here"
|
|
|
|
distclean-tags:
|
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
@@ -1011,6 +1036,7 @@
|
|
@failed=0; all=0; xfail=0; xpass=0; skip=0; \
|
|
srcdir=$(srcdir); export srcdir; \
|
|
list=' $(TESTS) '; \
|
|
+ $(am__tty_colors); \
|
|
if test -n "$$list"; then \
|
|
for tst in $$list; do \
|
|
if test -f ./$$tst; then dir=./; \
|
|
@@ -1022,10 +1048,10 @@
|
|
*[\ \ ]$$tst[\ \ ]*) \
|
|
xpass=`expr $$xpass + 1`; \
|
|
failed=`expr $$failed + 1`; \
|
|
- echo "XPASS: $$tst"; \
|
|
+ col=$$red; res=XPASS; \
|
|
;; \
|
|
*) \
|
|
- echo "PASS: $$tst"; \
|
|
+ col=$$grn; res=PASS; \
|
|
;; \
|
|
esac; \
|
|
elif test $$? -ne 77; then \
|
|
@@ -1033,17 +1059,18 @@
|
|
case " $(XFAIL_TESTS) " in \
|
|
*[\ \ ]$$tst[\ \ ]*) \
|
|
xfail=`expr $$xfail + 1`; \
|
|
- echo "XFAIL: $$tst"; \
|
|
+ col=$$lgn; res=XFAIL; \
|
|
;; \
|
|
*) \
|
|
failed=`expr $$failed + 1`; \
|
|
- echo "FAIL: $$tst"; \
|
|
+ col=$$red; res=FAIL; \
|
|
;; \
|
|
esac; \
|
|
else \
|
|
skip=`expr $$skip + 1`; \
|
|
- echo "SKIP: $$tst"; \
|
|
+ col=$$blu; res=SKIP; \
|
|
fi; \
|
|
+ echo "$${col}$$res$${std}: $$tst"; \
|
|
done; \
|
|
if test "$$all" -eq 1; then \
|
|
tests="test"; \
|
|
@@ -1085,11 +1112,15 @@
|
|
dashes="$$report"; \
|
|
fi; \
|
|
dashes=`echo "$$dashes" | sed s/./=/g`; \
|
|
- echo "$$dashes"; \
|
|
+ if test "$$failed" -eq 0; then \
|
|
+ echo "$$grn$$dashes"; \
|
|
+ else \
|
|
+ echo "$$red$$dashes"; \
|
|
+ fi; \
|
|
echo "$$banner"; \
|
|
test -z "$$skipped" || echo "$$skipped"; \
|
|
test -z "$$report" || echo "$$report"; \
|
|
- echo "$$dashes"; \
|
|
+ echo "$$dashes$$std"; \
|
|
test "$$failed" -eq 0; \
|
|
else :; fi
|
|
|
|
@@ -1109,13 +1140,17 @@
|
|
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); 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 -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
|
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
|
fi; \
|
|
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
+ cp -fpR $$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
|
|
@@ -1148,6 +1183,7 @@
|
|
|
|
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)
|
|
|
|
maintainer-clean-generic:
|
|
@echo "This command is intended for maintainers to use"
|
|
@@ -1168,6 +1204,8 @@
|
|
|
|
html: html-am
|
|
|
|
+html-am:
|
|
+
|
|
info: info-am
|
|
|
|
info-am:
|
|
@@ -1176,18 +1214,28 @@
|
|
|
|
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-pdf: install-pdf-am
|
|
|
|
+install-pdf-am:
|
|
+
|
|
install-ps: install-ps-am
|
|
|
|
+install-ps-am:
|
|
+
|
|
installcheck-am:
|
|
|
|
maintainer-clean: maintainer-clean-am
|
|
@@ -1209,7 +1257,7 @@
|
|
|
|
uninstall-am: uninstall-binPROGRAMS
|
|
|
|
-.MAKE: install-am install-strip
|
|
+.MAKE: check-am install-am install-strip
|
|
|
|
.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
|
|
clean-binPROGRAMS clean-generic ctags distclean \
|
|
@@ -1224,6 +1272,7 @@
|
|
mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
|
|
tags uninstall uninstall-am uninstall-binPROGRAMS
|
|
|
|
+
|
|
# 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:
|