Blame Makefile.in

Packit 130fc8
# Makefile.in generated by automake 1.15 from Makefile.am.
Packit 130fc8
# @configure_input@
Packit 130fc8
Packit 130fc8
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
Packit 130fc8
Packit 130fc8
# This Makefile.in is free software; the Free Software Foundation
Packit 130fc8
# gives unlimited permission to copy and/or distribute it,
Packit 130fc8
# with or without modifications, as long as this notice is preserved.
Packit 130fc8
Packit 130fc8
# This program is distributed in the hope that it will be useful,
Packit 130fc8
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
Packit 130fc8
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
Packit 130fc8
# PARTICULAR PURPOSE.
Packit 130fc8
Packit 130fc8
@SET_MAKE@
Packit 130fc8
Packit 130fc8
Packit 130fc8
Packit 130fc8
Packit 130fc8
Packit 130fc8
VPATH = @srcdir@
Packit 130fc8
am__is_gnu_make = { \
Packit 130fc8
  if test -z '$(MAKELEVEL)'; then \
Packit 130fc8
    false; \
Packit 130fc8
  elif test -n '$(MAKE_HOST)'; then \
Packit 130fc8
    true; \
Packit 130fc8
  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
Packit 130fc8
    true; \
Packit 130fc8
  else \
Packit 130fc8
    false; \
Packit 130fc8
  fi; \
Packit 130fc8
}
Packit 130fc8
am__make_running_with_option = \
Packit 130fc8
  case $${target_option-} in \
Packit 130fc8
      ?) ;; \
Packit 130fc8
      *) echo "am__make_running_with_option: internal error: invalid" \
Packit 130fc8
              "target option '$${target_option-}' specified" >&2; \
Packit 130fc8
         exit 1;; \
Packit 130fc8
  esac; \
Packit 130fc8
  has_opt=no; \
Packit 130fc8
  sane_makeflags=$$MAKEFLAGS; \
Packit 130fc8
  if $(am__is_gnu_make); then \
Packit 130fc8
    sane_makeflags=$$MFLAGS; \
Packit 130fc8
  else \
Packit 130fc8
    case $$MAKEFLAGS in \
Packit 130fc8
      *\\[\ \	]*) \
Packit 130fc8
        bs=\\; \
Packit 130fc8
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
Packit 130fc8
          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
Packit 130fc8
    esac; \
Packit 130fc8
  fi; \
Packit 130fc8
  skip_next=no; \
Packit 130fc8
  strip_trailopt () \
Packit 130fc8
  { \
Packit 130fc8
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
Packit 130fc8
  }; \
Packit 130fc8
  for flg in $$sane_makeflags; do \
Packit 130fc8
    test $$skip_next = yes && { skip_next=no; continue; }; \
Packit 130fc8
    case $$flg in \
Packit 130fc8
      *=*|--*) continue;; \
Packit 130fc8
        -*I) strip_trailopt 'I'; skip_next=yes;; \
Packit 130fc8
      -*I?*) strip_trailopt 'I';; \
Packit 130fc8
        -*O) strip_trailopt 'O'; skip_next=yes;; \
Packit 130fc8
      -*O?*) strip_trailopt 'O';; \
Packit 130fc8
        -*l) strip_trailopt 'l'; skip_next=yes;; \
Packit 130fc8
      -*l?*) strip_trailopt 'l';; \
Packit 130fc8
      -[dEDm]) skip_next=yes;; \
Packit 130fc8
      -[JT]) skip_next=yes;; \
Packit 130fc8
    esac; \
Packit 130fc8
    case $$flg in \
Packit 130fc8
      *$$target_option*) has_opt=yes; break;; \
Packit 130fc8
    esac; \
Packit 130fc8
  done; \
Packit 130fc8
  test $$has_opt = yes
Packit 130fc8
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
Packit 130fc8
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
Packit 130fc8
pkgdatadir = $(datadir)/@PACKAGE@
Packit 130fc8
pkgincludedir = $(includedir)/@PACKAGE@
Packit 130fc8
pkglibdir = $(libdir)/@PACKAGE@
Packit 130fc8
pkglibexecdir = $(libexecdir)/@PACKAGE@
Packit 130fc8
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
Packit 130fc8
install_sh_DATA = $(install_sh) -c -m 644
Packit 130fc8
install_sh_PROGRAM = $(install_sh) -c
Packit 130fc8
install_sh_SCRIPT = $(install_sh) -c
Packit 130fc8
INSTALL_HEADER = $(INSTALL_DATA)
Packit 130fc8
transform = $(program_transform_name)
Packit 130fc8
NORMAL_INSTALL = :
Packit 130fc8
PRE_INSTALL = :
Packit 130fc8
POST_INSTALL = :
Packit 130fc8
NORMAL_UNINSTALL = :
Packit 130fc8
PRE_UNINSTALL = :
Packit 130fc8
POST_UNINSTALL = :
Packit 130fc8
build_triplet = @build@
Packit 130fc8
host_triplet = @host@
Packit 130fc8
Packit 130fc8
# Win32 DLLs can't have undefined symbols (so this needs explicit linking
Packit 130fc8
# against the Python DLL), and Python expects extensions to be *.pyd
Packit 130fc8
# instead of *.dll
Packit 130fc8
@WINDOWS_TRUE@am__append_1 = \
Packit 130fc8
@WINDOWS_TRUE@	-no-undefined \
Packit 130fc8
@WINDOWS_TRUE@	-shrext ".pyd" \
Packit 130fc8
@WINDOWS_TRUE@	$(NULL)
Packit 130fc8
Packit 130fc8
@WINDOWS_TRUE@am__append_2 = \
Packit 130fc8
@WINDOWS_TRUE@	$(PYTHON_LIBS) \
Packit 130fc8
@WINDOWS_TRUE@	$(NULL)
Packit 130fc8
Packit 130fc8
@HAVE_PYTHON_3_FALSE@am__append_3 = \
Packit 130fc8
@HAVE_PYTHON_3_FALSE@    dbus/gobject_service.py \
Packit 130fc8
@HAVE_PYTHON_3_FALSE@    $(NULL)
Packit 130fc8
Packit 130fc8
@HAVE_PYTHON_3_TRUE@am__append_4 = test/test-exception-py3.py
Packit 130fc8
@HAVE_PYTHON_3_FALSE@am__append_5 = test/test-exception-py2.py
Packit 130fc8
TESTS = $(am__EXEEXT_2) $(am__EXEEXT_3) $(am__EXEEXT_1)
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@nobase_installed_test_PROGRAMS =  \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@	$(am__EXEEXT_1)
Packit 130fc8
@ENABLE_INSTALLED_TESTS_FALSE@noinst_PROGRAMS = $(am__EXEEXT_1)
Packit 130fc8
@ENABLE_DOCS_TRUE@am__append_6 = $(nodist_doc_DATA)
Packit 130fc8
subdir = .
Packit 130fc8
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
Packit 130fc8
am__aclocal_m4_deps = $(top_srcdir)/m4/am-check-python-headers.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_append_compile_flags.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_append_flag.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_append_link_flags.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_check_compile_flag.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_check_link_flag.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_compiler_flags.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_compiler_flags_cflags.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_compiler_flags_gir.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_compiler_flags_ldflags.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_generate_changelog.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_is_release.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_python_module.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ax_require_defined.m4 \
Packit 130fc8
	$(top_srcdir)/m4/dbus-py-add-rst2htmlflag.m4 \
Packit 130fc8
	$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
Packit 130fc8
	$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
Packit 130fc8
	$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/pkg.m4 \
Packit 130fc8
	$(top_srcdir)/configure.ac
Packit 130fc8
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
Packit 130fc8
	$(ACLOCAL_M4)
Packit 130fc8
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
Packit 130fc8
	$(am__configure_deps) $(am__dist_noinst_SCRIPTS_DIST) \
Packit 130fc8
	$(am__nobase_dist_installed_test_SCRIPTS_DIST) \
Packit 130fc8
	$(am__nobase_dist_installed_test_PYTHON_DIST) \
Packit 130fc8
	$(am__nobase_python_PYTHON_DIST) $(dist_doc_DATA) \
Packit 130fc8
	$(dbusinclude_HEADERS) $(am__DIST_COMMON)
Packit 130fc8
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
Packit 130fc8
 configure.lineno config.status.lineno
Packit 130fc8
mkinstalldirs = $(install_sh) -d
Packit 130fc8
CONFIG_HEADER = config.h
Packit 130fc8
CONFIG_CLEAN_FILES = dbus-python.pc
Packit 130fc8
CONFIG_CLEAN_VPATH_FILES =
Packit 130fc8
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
Packit 130fc8
am__vpath_adj = case $$p in \
Packit 130fc8
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
Packit 130fc8
    *) f=$$p;; \
Packit 130fc8
  esac;
Packit 130fc8
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
Packit 130fc8
am__install_max = 40
Packit 130fc8
am__nobase_strip_setup = \
Packit 130fc8
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
Packit 130fc8
am__nobase_strip = \
Packit 130fc8
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
Packit 130fc8
am__nobase_list = $(am__nobase_strip_setup); \
Packit 130fc8
  for p in $$list; do echo "$$p $$p"; done | \
Packit 130fc8
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
Packit 130fc8
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
Packit 130fc8
    if (++n[$$2] == $(am__install_max)) \
Packit 130fc8
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
Packit 130fc8
    END { for (dir in files) print dir, files[dir] }'
Packit 130fc8
am__base_list = \
Packit 130fc8
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
Packit 130fc8
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
Packit 130fc8
am__uninstall_files_from_dir = { \
Packit 130fc8
  test -z "$$files" \
Packit 130fc8
    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
Packit 130fc8
    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
Packit 130fc8
         $(am__cd) "$$dir" && rm -f $$files; }; \
Packit 130fc8
  }
Packit 130fc8
am__installdirs = "$(DESTDIR)$(installed_testdir)" \
Packit 130fc8
	"$(DESTDIR)$(pyexecdir)" "$(DESTDIR)$(installed_testdir)" \
Packit 130fc8
	"$(DESTDIR)$(installed_testdir)" \
Packit 130fc8
	"$(DESTDIR)$(installed_testdir)" "$(DESTDIR)$(pythondir)" \
Packit 130fc8
	"$(DESTDIR)$(docdir)" "$(DESTDIR)$(installed_test_metadir)" \
Packit 130fc8
	"$(DESTDIR)$(installed_test_testdir)" "$(DESTDIR)$(docdir)" \
Packit 130fc8
	"$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(dbusincludedir)"
Packit 130fc8
LTLIBRARIES = $(nobase_installed_test_LTLIBRARIES) \
Packit 130fc8
	$(noinst_LTLIBRARIES) $(pyexec_LTLIBRARIES)
Packit 130fc8
am__DEPENDENCIES_1 =
Packit 130fc8
@WINDOWS_TRUE@am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1)
Packit 130fc8
am__DEPENDENCIES_3 = $(am__DEPENDENCIES_2)
Packit 130fc8
_dbus_bindings_la_DEPENDENCIES = $(am__DEPENDENCIES_3) \
Packit 130fc8
	$(am__DEPENDENCIES_1)
Packit 130fc8
am__dirstamp = $(am__leading_dot)dirstamp
Packit 130fc8
am__dbus_bindings_la_OBJECTS = _dbus_bindings/abstract.lo \
Packit 130fc8
	_dbus_bindings/bus.lo _dbus_bindings/bytes.lo \
Packit 130fc8
	_dbus_bindings/conn.lo _dbus_bindings/conn-methods.lo \
Packit 130fc8
	_dbus_bindings/containers.lo _dbus_bindings/debug.lo \
Packit 130fc8
	_dbus_bindings/exceptions.lo _dbus_bindings/float.lo \
Packit 130fc8
	_dbus_bindings/generic.lo _dbus_bindings/int.lo \
Packit 130fc8
	_dbus_bindings/unixfd.lo _dbus_bindings/libdbusconn.lo \
Packit 130fc8
	_dbus_bindings/mainloop.lo _dbus_bindings/message-append.lo \
Packit 130fc8
	_dbus_bindings/message.lo _dbus_bindings/message-get-args.lo \
Packit 130fc8
	_dbus_bindings/module.lo _dbus_bindings/pending-call.lo \
Packit 130fc8
	_dbus_bindings/server.lo _dbus_bindings/signature.lo \
Packit 130fc8
	_dbus_bindings/string.lo _dbus_bindings/validation.lo
Packit 130fc8
_dbus_bindings_la_OBJECTS = $(am__dbus_bindings_la_OBJECTS)
Packit 130fc8
AM_V_lt = $(am__v_lt_@AM_V@)
Packit 130fc8
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
Packit 130fc8
am__v_lt_0 = --silent
Packit 130fc8
am__v_lt_1 = 
Packit 130fc8
_dbus_bindings_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
Packit 130fc8
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
Packit 130fc8
	$(AM_CFLAGS) $(CFLAGS) $(_dbus_bindings_la_LDFLAGS) $(LDFLAGS) \
Packit 130fc8
	-o $@
Packit 130fc8
_dbus_glib_bindings_la_DEPENDENCIES = $(am__DEPENDENCIES_3) \
Packit 130fc8
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
Packit 130fc8
am__dbus_glib_bindings_la_OBJECTS = _dbus_glib_bindings/module.lo
Packit 130fc8
_dbus_glib_bindings_la_OBJECTS = $(am__dbus_glib_bindings_la_OBJECTS)
Packit 130fc8
_dbus_glib_bindings_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
Packit 130fc8
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
Packit 130fc8
	$(AM_CFLAGS) $(CFLAGS) $(_dbus_glib_bindings_la_LDFLAGS) \
Packit 130fc8
	$(LDFLAGS) -o $@
Packit 130fc8
test_dbus_py_test_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
Packit 130fc8
am_test_dbus_py_test_la_OBJECTS = test/dbus_py_test.lo
Packit 130fc8
test_dbus_py_test_la_OBJECTS = $(am_test_dbus_py_test_la_OBJECTS)
Packit 130fc8
test_dbus_py_test_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
Packit 130fc8
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
Packit 130fc8
	$(AM_CFLAGS) $(CFLAGS) $(test_dbus_py_test_la_LDFLAGS) \
Packit 130fc8
	$(LDFLAGS) -o $@
Packit 130fc8
@ENABLE_INSTALLED_TESTS_FALSE@am_test_dbus_py_test_la_rpath =
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@am_test_dbus_py_test_la_rpath = -rpath \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@	$(installed_testdir)/test
Packit 130fc8
am__EXEEXT_1 = test/test-import-repeatedly$(EXEEXT)
Packit 130fc8
PROGRAMS = $(nobase_installed_test_PROGRAMS) $(noinst_PROGRAMS)
Packit 130fc8
am_test_test_import_repeatedly_OBJECTS =  \
Packit 130fc8
	test/test_test_import_repeatedly-import-repeatedly.$(OBJEXT)
Packit 130fc8
test_test_import_repeatedly_OBJECTS =  \
Packit 130fc8
	$(am_test_test_import_repeatedly_OBJECTS)
Packit 130fc8
test_test_import_repeatedly_DEPENDENCIES = $(am__DEPENDENCIES_1)
Packit 130fc8
am__dist_noinst_SCRIPTS_DIST = test/test-client.py test/test-p2p.py \
Packit 130fc8
	test/test-signals.py test/test-standalone.py \
Packit 130fc8
	test/test-unusable-main-loop.py test/test-exception-py3.py \
Packit 130fc8
	test/test-exception-py2.py test/run-test.sh \
Packit 130fc8
	test/cross-test-client.py test/cross-test-server.py \
Packit 130fc8
	test/test-service.py test/wait-for-name.py \
Packit 130fc8
	test/with-session-bus.sh
Packit 130fc8
am__nobase_dist_installed_test_SCRIPTS_DIST = test/test-client.py \
Packit 130fc8
	test/test-p2p.py test/test-signals.py test/test-standalone.py \
Packit 130fc8
	test/test-unusable-main-loop.py test/test-exception-py3.py \
Packit 130fc8
	test/test-exception-py2.py test/run-test.sh \
Packit 130fc8
	test/cross-test-client.py test/cross-test-server.py \
Packit 130fc8
	test/test-service.py test/wait-for-name.py \
Packit 130fc8
	test/with-session-bus.sh
Packit 130fc8
SCRIPTS = $(dist_noinst_SCRIPTS) $(nobase_dist_installed_test_SCRIPTS)
Packit 130fc8
AM_V_P = $(am__v_P_@AM_V@)
Packit 130fc8
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
Packit 130fc8
am__v_P_0 = false
Packit 130fc8
am__v_P_1 = :
Packit 130fc8
AM_V_GEN = $(am__v_GEN_@AM_V@)
Packit 130fc8
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
Packit 130fc8
am__v_GEN_0 = @echo "  GEN     " $@;
Packit 130fc8
am__v_GEN_1 = 
Packit 130fc8
AM_V_at = $(am__v_at_@AM_V@)
Packit 130fc8
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
Packit 130fc8
am__v_at_0 = @
Packit 130fc8
am__v_at_1 = 
Packit 130fc8
DEFAULT_INCLUDES = -I.@am__isrc@
Packit 130fc8
depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
Packit 130fc8
am__depfiles_maybe = depfiles
Packit 130fc8
am__mv = mv -f
Packit 130fc8
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
Packit 130fc8
	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
Packit 130fc8
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
Packit 130fc8
	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
Packit 130fc8
	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
Packit 130fc8
	$(AM_CFLAGS) $(CFLAGS)
Packit 130fc8
AM_V_CC = $(am__v_CC_@AM_V@)
Packit 130fc8
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
Packit 130fc8
am__v_CC_0 = @echo "  CC      " $@;
Packit 130fc8
am__v_CC_1 = 
Packit 130fc8
CCLD = $(CC)
Packit 130fc8
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
Packit 130fc8
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
Packit 130fc8
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
Packit 130fc8
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
Packit 130fc8
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
Packit 130fc8
am__v_CCLD_0 = @echo "  CCLD    " $@;
Packit 130fc8
am__v_CCLD_1 = 
Packit 130fc8
SOURCES = $(_dbus_bindings_la_SOURCES) \
Packit 130fc8
	$(_dbus_glib_bindings_la_SOURCES) \
Packit 130fc8
	$(test_dbus_py_test_la_SOURCES) \
Packit 130fc8
	$(test_test_import_repeatedly_SOURCES)
Packit 130fc8
DIST_SOURCES = $(_dbus_bindings_la_SOURCES) \
Packit 130fc8
	$(_dbus_glib_bindings_la_SOURCES) \
Packit 130fc8
	$(test_dbus_py_test_la_SOURCES) \
Packit 130fc8
	$(test_test_import_repeatedly_SOURCES)
Packit 130fc8
am__can_run_installinfo = \
Packit 130fc8
  case $$AM_UPDATE_INFO_DIR in \
Packit 130fc8
    n|no|NO) false;; \
Packit 130fc8
    *) (install-info --version) >/dev/null 2>&1;; \
Packit 130fc8
  esac
Packit 130fc8
am__nobase_dist_installed_test_PYTHON_DIST = test/crosstest.py
Packit 130fc8
am__py_compile = PYTHON=$(PYTHON) $(SHELL) $(py_compile)
Packit 130fc8
am__pep3147_tweak = \
Packit 130fc8
  sed -e 's|\.py$$||' -e 's|[^/]*$$|__pycache__/&.*.py|'
Packit 130fc8
am__nobase_python_PYTHON_DIST = dbus/bus.py dbus/connection.py \
Packit 130fc8
	dbus/_compat.py dbus/_dbus.py dbus/decorators.py \
Packit 130fc8
	dbus/exceptions.py dbus/_expat_introspect_parser.py \
Packit 130fc8
	dbus/gi_service.py dbus/glib.py dbus/__init__.py \
Packit 130fc8
	dbus/lowlevel.py dbus/mainloop/__init__.py \
Packit 130fc8
	dbus/mainloop/glib.py dbus/proxies.py dbus/server.py \
Packit 130fc8
	dbus/service.py dbus/types.py dbus/gobject_service.py
Packit 130fc8
py_compile = $(top_srcdir)/build-aux/py-compile
Packit 130fc8
DATA = $(dist_doc_DATA) $(installed_test_meta_DATA) \
Packit 130fc8
	$(installed_test_test_DATA) $(nodist_doc_DATA) $(noinst_DATA) \
Packit 130fc8
	$(pkgconfig_DATA)
Packit 130fc8
HEADERS = $(dbusinclude_HEADERS)
Packit 130fc8
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
Packit 130fc8
	$(LISP)config.h.in
Packit 130fc8
# Read a list of newline-separated strings from the standard input,
Packit 130fc8
# and print each of them once, without duplicates.  Input order is
Packit 130fc8
# *not* preserved.
Packit 130fc8
am__uniquify_input = $(AWK) '\
Packit 130fc8
  BEGIN { nonempty = 0; } \
Packit 130fc8
  { items[$$0] = 1; nonempty = 1; } \
Packit 130fc8
  END { if (nonempty) { for (i in items) print i; }; } \
Packit 130fc8
'
Packit 130fc8
# Make sure the list of sources is unique.  This is necessary because,
Packit 130fc8
# e.g., the same source file might be shared among _SOURCES variables
Packit 130fc8
# for different programs/libraries.
Packit 130fc8
am__define_uniq_tagged_files = \
Packit 130fc8
  list='$(am__tagged_files)'; \
Packit 130fc8
  unique=`for i in $$list; do \
Packit 130fc8
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
Packit 130fc8
  done | $(am__uniquify_input)`
Packit 130fc8
ETAGS = etags
Packit 130fc8
CTAGS = ctags
Packit 130fc8
CSCOPE = cscope
Packit 130fc8
AM_RECURSIVE_TARGETS = cscope check recheck
Packit 130fc8
am__tty_colors_dummy = \
Packit 130fc8
  mgn= red= grn= lgn= blu= brg= std=; \
Packit 130fc8
  am__color_tests=no
Packit 130fc8
am__tty_colors = { \
Packit 130fc8
  $(am__tty_colors_dummy); \
Packit 130fc8
  if test "X$(AM_COLOR_TESTS)" = Xno; then \
Packit 130fc8
    am__color_tests=no; \
Packit 130fc8
  elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
Packit 130fc8
    am__color_tests=yes; \
Packit 130fc8
  elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
Packit 130fc8
    am__color_tests=yes; \
Packit 130fc8
  fi; \
Packit 130fc8
  if test $$am__color_tests = yes; then \
Packit 130fc8
    red='?[0;31m'; \
Packit 130fc8
    grn='?[0;32m'; \
Packit 130fc8
    lgn='?[1;32m'; \
Packit 130fc8
    blu='?[1;34m'; \
Packit 130fc8
    mgn='?[0;35m'; \
Packit 130fc8
    brg='?[1m'; \
Packit 130fc8
    std='?[m'; \
Packit 130fc8
  fi; \
Packit 130fc8
}
Packit 130fc8
am__recheck_rx = ^[ 	]*:recheck:[ 	]*
Packit 130fc8
am__global_test_result_rx = ^[ 	]*:global-test-result:[ 	]*
Packit 130fc8
am__copy_in_global_log_rx = ^[ 	]*:copy-in-global-log:[ 	]*
Packit 130fc8
# A command that, given a newline-separated list of test names on the
Packit 130fc8
# standard input, print the name of the tests that are to be re-run
Packit 130fc8
# upon "make recheck".
Packit 130fc8
am__list_recheck_tests = $(AWK) '{ \
Packit 130fc8
  recheck = 1; \
Packit 130fc8
  while ((rc = (getline line < ($$0 ".trs"))) != 0) \
Packit 130fc8
    { \
Packit 130fc8
      if (rc < 0) \
Packit 130fc8
        { \
Packit 130fc8
          if ((getline line2 < ($$0 ".log")) < 0) \
Packit 130fc8
	    recheck = 0; \
Packit 130fc8
          break; \
Packit 130fc8
        } \
Packit 130fc8
      else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
Packit 130fc8
        { \
Packit 130fc8
          recheck = 0; \
Packit 130fc8
          break; \
Packit 130fc8
        } \
Packit 130fc8
      else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
Packit 130fc8
        { \
Packit 130fc8
          break; \
Packit 130fc8
        } \
Packit 130fc8
    }; \
Packit 130fc8
  if (recheck) \
Packit 130fc8
    print $$0; \
Packit 130fc8
  close ($$0 ".trs"); \
Packit 130fc8
  close ($$0 ".log"); \
Packit 130fc8
}'
Packit 130fc8
# A command that, given a newline-separated list of test names on the
Packit 130fc8
# standard input, create the global log from their .trs and .log files.
Packit 130fc8
am__create_global_log = $(AWK) ' \
Packit 130fc8
function fatal(msg) \
Packit 130fc8
{ \
Packit 130fc8
  print "fatal: making $@: " msg | "cat >&2;; \
Packit 130fc8
  exit 1; \
Packit 130fc8
} \
Packit 130fc8
function rst_section(header) \
Packit 130fc8
{ \
Packit 130fc8
  print header; \
Packit 130fc8
  len = length(header); \
Packit 130fc8
  for (i = 1; i <= len; i = i + 1) \
Packit 130fc8
    printf "="; \
Packit 130fc8
  printf "\n\n"; \
Packit 130fc8
} \
Packit 130fc8
{ \
Packit 130fc8
  copy_in_global_log = 1; \
Packit 130fc8
  global_test_result = "RUN"; \
Packit 130fc8
  while ((rc = (getline line < ($$0 ".trs"))) != 0) \
Packit 130fc8
    { \
Packit 130fc8
      if (rc < 0) \
Packit 130fc8
         fatal("failed to read from " $$0 ".trs"); \
Packit 130fc8
      if (line ~ /$(am__global_test_result_rx)/) \
Packit 130fc8
        { \
Packit 130fc8
          sub("$(am__global_test_result_rx)", "", line); \
Packit 130fc8
          sub("[ 	]*$$", "", line); \
Packit 130fc8
          global_test_result = line; \
Packit 130fc8
        } \
Packit 130fc8
      else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
Packit 130fc8
        copy_in_global_log = 0; \
Packit 130fc8
    }; \
Packit 130fc8
  if (copy_in_global_log) \
Packit 130fc8
    { \
Packit 130fc8
      rst_section(global_test_result ": " $$0); \
Packit 130fc8
      while ((rc = (getline line < ($$0 ".log"))) != 0) \
Packit 130fc8
      { \
Packit 130fc8
        if (rc < 0) \
Packit 130fc8
          fatal("failed to read from " $$0 ".log"); \
Packit 130fc8
        print line; \
Packit 130fc8
      }; \
Packit 130fc8
      printf "\n"; \
Packit 130fc8
    }; \
Packit 130fc8
  close ($$0 ".trs"); \
Packit 130fc8
  close ($$0 ".log"); \
Packit 130fc8
}'
Packit 130fc8
# Restructured Text title.
Packit 130fc8
am__rst_title = { sed 's/.*/   &   /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
Packit 130fc8
# Solaris 10 'make', and several other traditional 'make' implementations,
Packit 130fc8
# pass "-e" to $(SHELL), and POSIX 2008 even requires this.  Work around it
Packit 130fc8
# by disabling -e (using the XSI extension "set +e") if it's set.
Packit 130fc8
am__sh_e_setup = case $$- in *e*) set +e;; esac
Packit 130fc8
# Default flags passed to test drivers.
Packit 130fc8
am__common_driver_flags = \
Packit 130fc8
  --color-tests "$$am__color_tests" \
Packit 130fc8
  --enable-hard-errors "$$am__enable_hard_errors" \
Packit 130fc8
  --expect-failure "$$am__expect_failure"
Packit 130fc8
# To be inserted before the command running the test.  Creates the
Packit 130fc8
# directory for the log if needed.  Stores in $dir the directory
Packit 130fc8
# containing $f, in $tst the test, in $log the log.  Executes the
Packit 130fc8
# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
Packit 130fc8
# passes TESTS_ENVIRONMENT.  Set up options for the wrapper that
Packit 130fc8
# will run the test scripts (or their associated LOG_COMPILER, if
Packit 130fc8
# thy have one).
Packit 130fc8
am__check_pre = \
Packit 130fc8
$(am__sh_e_setup);					\
Packit 130fc8
$(am__vpath_adj_setup) $(am__vpath_adj)			\
Packit 130fc8
$(am__tty_colors);					\
Packit 130fc8
srcdir=$(srcdir); export srcdir;			\
Packit 130fc8
case "$@" in						\
Packit 130fc8
  */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;;	\
Packit 130fc8
    *) am__odir=.;; 					\
Packit 130fc8
esac;							\
Packit 130fc8
test "x$$am__odir" = x"." || test -d "$$am__odir" 	\
Packit 130fc8
  || $(MKDIR_P) "$$am__odir" || exit $$?;		\
Packit 130fc8
if test -f "./$$f"; then dir=./;			\
Packit 130fc8
elif test -f "$$f"; then dir=;				\
Packit 130fc8
else dir="$(srcdir)/"; fi;				\
Packit 130fc8
tst=$$dir$$f; log='$@'; 				\
Packit 130fc8
if test -n '$(DISABLE_HARD_ERRORS)'; then		\
Packit 130fc8
  am__enable_hard_errors=no; 				\
Packit 130fc8
else							\
Packit 130fc8
  am__enable_hard_errors=yes; 				\
Packit 130fc8
fi; 							\
Packit 130fc8
case " $(XFAIL_TESTS) " in				\
Packit 130fc8
  *[\ \	]$$f[\ \	]* | *[\ \	]$$dir$$f[\ \	]*) \
Packit 130fc8
    am__expect_failure=yes;;				\
Packit 130fc8
  *)							\
Packit 130fc8
    am__expect_failure=no;;				\
Packit 130fc8
esac; 							\
Packit 130fc8
$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
Packit 130fc8
# A shell command to get the names of the tests scripts with any registered
Packit 130fc8
# extension removed (i.e., equivalently, the names of the test logs, with
Packit 130fc8
# the '.log' extension removed).  The result is saved in the shell variable
Packit 130fc8
# '$bases'.  This honors runtime overriding of TESTS and TEST_LOGS.  Sadly,
Packit 130fc8
# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
Packit 130fc8
# since that might cause problem with VPATH rewrites for suffix-less tests.
Packit 130fc8
# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
Packit 130fc8
am__set_TESTS_bases = \
Packit 130fc8
  bases='$(TEST_LOGS)'; \
Packit 130fc8
  bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
Packit 130fc8
  bases=`echo $$bases`
Packit 130fc8
RECHECK_LOGS = $(TEST_LOGS)
Packit 130fc8
am__EXEEXT_2 = test/test-client.py test/test-p2p.py \
Packit 130fc8
	test/test-signals.py test/test-standalone.py \
Packit 130fc8
	test/test-unusable-main-loop.py $(am__append_4) \
Packit 130fc8
	$(am__append_5)
Packit 130fc8
am__EXEEXT_3 = test/run-test.sh
Packit 130fc8
TEST_SUITE_LOG = test-suite.log
Packit 130fc8
LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
Packit 130fc8
LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
Packit 130fc8
am__set_b = \
Packit 130fc8
  case '$@' in \
Packit 130fc8
    */*) \
Packit 130fc8
      case '$*' in \
Packit 130fc8
        */*) b='$*';; \
Packit 130fc8
          *) b=`echo '$@' | sed 's/\.log$$//'`; \
Packit 130fc8
       esac;; \
Packit 130fc8
    *) \
Packit 130fc8
      b='$*';; \
Packit 130fc8
  esac
Packit 130fc8
am__test_logs1 = $(TESTS:=.log)
Packit 130fc8
am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
Packit 130fc8
am__test_logs3 = $(am__test_logs2:.sh.log=.log)
Packit 130fc8
SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
Packit 130fc8
SH_LOG_COMPILE = $(SH_LOG_COMPILER) $(AM_SH_LOG_FLAGS) $(SH_LOG_FLAGS)
Packit 130fc8
TEST_LOGS = $(am__test_logs3:.py.log=.log)
Packit 130fc8
PY_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
Packit 130fc8
PY_LOG_COMPILE = $(PY_LOG_COMPILER) $(AM_PY_LOG_FLAGS) $(PY_LOG_FLAGS)
Packit 130fc8
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
Packit 130fc8
	$(srcdir)/dbus-python.pc.in $(top_srcdir)/build-aux/compile \
Packit 130fc8
	$(top_srcdir)/build-aux/config.guess \
Packit 130fc8
	$(top_srcdir)/build-aux/config.sub \
Packit 130fc8
	$(top_srcdir)/build-aux/depcomp \
Packit 130fc8
	$(top_srcdir)/build-aux/install-sh \
Packit 130fc8
	$(top_srcdir)/build-aux/ltmain.sh \
Packit 130fc8
	$(top_srcdir)/build-aux/missing \
Packit 130fc8
	$(top_srcdir)/build-aux/py-compile \
Packit 130fc8
	$(top_srcdir)/build-aux/test-driver \
Packit 130fc8
	$(top_srcdir)/tools/check-coding-style.mk AUTHORS COPYING \
Packit 130fc8
	ChangeLog INSTALL NEWS README build-aux/compile \
Packit 130fc8
	build-aux/config.guess build-aux/config.sub build-aux/depcomp \
Packit 130fc8
	build-aux/install-sh build-aux/ltmain.sh build-aux/missing \
Packit 130fc8
	build-aux/py-compile
Packit 130fc8
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
Packit 130fc8
distdir = $(PACKAGE)-$(VERSION)
Packit 130fc8
top_distdir = $(distdir)
Packit 130fc8
am__remove_distdir = \
Packit 130fc8
  if test -d "$(distdir)"; then \
Packit 130fc8
    find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
Packit 130fc8
      && rm -rf "$(distdir)" \
Packit 130fc8
      || { sleep 5 && rm -rf "$(distdir)"; }; \
Packit 130fc8
  else :; fi
Packit 130fc8
am__post_remove_distdir = $(am__remove_distdir)
Packit 130fc8
DIST_ARCHIVES = $(distdir).tar.gz
Packit 130fc8
GZIP_ENV = --best
Packit 130fc8
DIST_TARGETS = dist-gzip
Packit 130fc8
distuninstallcheck_listfiles = find . -type f -print
Packit 130fc8
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
Packit 130fc8
  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
Packit 130fc8
distcleancheck_listfiles = find . -type f -print
Packit 130fc8
ACLOCAL = @ACLOCAL@
Packit 130fc8
AMTAR = @AMTAR@
Packit 130fc8
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
Packit 130fc8
AR = @AR@
Packit 130fc8
AUTOCONF = @AUTOCONF@
Packit 130fc8
AUTOHEADER = @AUTOHEADER@
Packit 130fc8
AUTOMAKE = @AUTOMAKE@
Packit 130fc8
AWK = @AWK@
Packit 130fc8
CC = @CC@
Packit 130fc8
CCDEPMODE = @CCDEPMODE@
Packit 130fc8
CFLAGS = @CFLAGS@
Packit 130fc8
CPP = @CPP@
Packit 130fc8
CPPFLAGS = @CPPFLAGS@
Packit 130fc8
CYGPATH_W = @CYGPATH_W@
Packit 130fc8
DBUS_CFLAGS = @DBUS_CFLAGS@
Packit 130fc8
DBUS_GLIB_CFLAGS = @DBUS_GLIB_CFLAGS@
Packit 130fc8
DBUS_GLIB_LIBS = @DBUS_GLIB_LIBS@
Packit 130fc8
DBUS_LIBS = @DBUS_LIBS@
Packit 130fc8
DBUS_PYTHON_MAJOR_VERSION = @DBUS_PYTHON_MAJOR_VERSION@
Packit 130fc8
DBUS_PYTHON_MICRO_VERSION = @DBUS_PYTHON_MICRO_VERSION@
Packit 130fc8
DBUS_PYTHON_MINOR_VERSION = @DBUS_PYTHON_MINOR_VERSION@
Packit 130fc8
DBUS_RUN_SESSION = @DBUS_RUN_SESSION@
Packit 130fc8
DEFS = @DEFS@
Packit 130fc8
DEPDIR = @DEPDIR@
Packit 130fc8
DLLTOOL = @DLLTOOL@
Packit 130fc8
DSYMUTIL = @DSYMUTIL@
Packit 130fc8
DUMPBIN = @DUMPBIN@
Packit 130fc8
ECHO_C = @ECHO_C@
Packit 130fc8
ECHO_N = @ECHO_N@
Packit 130fc8
ECHO_T = @ECHO_T@
Packit 130fc8
EGREP = @EGREP@
Packit 130fc8
EPYDOC = @EPYDOC@
Packit 130fc8
EXEEXT = @EXEEXT@
Packit 130fc8
FGREP = @FGREP@
Packit 130fc8
GIT = @GIT@
Packit 130fc8
GREP = @GREP@
Packit 130fc8
INSTALL = @INSTALL@
Packit 130fc8
INSTALL_DATA = @INSTALL_DATA@
Packit 130fc8
INSTALL_PROGRAM = @INSTALL_PROGRAM@
Packit 130fc8
INSTALL_SCRIPT = @INSTALL_SCRIPT@
Packit 130fc8
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
Packit 130fc8
LD = @LD@
Packit 130fc8
LDFLAGS = @LDFLAGS@
Packit 130fc8
LIBOBJS = @LIBOBJS@
Packit 130fc8
LIBS = @LIBS@
Packit 130fc8
LIBTOOL = @LIBTOOL@
Packit 130fc8
LIPO = @LIPO@
Packit 130fc8
LN_S = @LN_S@
Packit 130fc8
LTLIBOBJS = @LTLIBOBJS@
Packit 130fc8
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
Packit 130fc8
MAINT = @MAINT@
Packit 130fc8
MAKEINFO = @MAKEINFO@
Packit 130fc8
MANIFEST_TOOL = @MANIFEST_TOOL@
Packit 130fc8
MKDIR_P = @MKDIR_P@
Packit 130fc8
NM = @NM@
Packit 130fc8
NMEDIT = @NMEDIT@
Packit 130fc8
OBJDUMP = @OBJDUMP@
Packit 130fc8
OBJEXT = @OBJEXT@
Packit 130fc8
OTOOL = @OTOOL@
Packit 130fc8
OTOOL64 = @OTOOL64@
Packit 130fc8
PACKAGE = @PACKAGE@
Packit 130fc8
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
Packit 130fc8
PACKAGE_NAME = @PACKAGE_NAME@
Packit 130fc8
PACKAGE_STRING = @PACKAGE_STRING@
Packit 130fc8
PACKAGE_TARNAME = @PACKAGE_TARNAME@
Packit 130fc8
PACKAGE_URL = @PACKAGE_URL@
Packit 130fc8
PACKAGE_VERSION = @PACKAGE_VERSION@
Packit 130fc8
PATH_SEPARATOR = @PATH_SEPARATOR@
Packit 130fc8
PKG_CONFIG = @PKG_CONFIG@
Packit 130fc8
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
Packit 130fc8
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
Packit 130fc8
PLATFORM = @PLATFORM@
Packit 130fc8
PYTHON = @PYTHON@
Packit 130fc8
PYTHON_CONFIG = @PYTHON_CONFIG@
Packit 130fc8
PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
Packit 130fc8
PYTHON_INCLUDES = @PYTHON_INCLUDES@
Packit 130fc8
PYTHON_LIBS = @PYTHON_LIBS@
Packit 130fc8
PYTHON_PLATFORM = @PYTHON_PLATFORM@
Packit 130fc8
PYTHON_PREFIX = @PYTHON_PREFIX@
Packit 130fc8
PYTHON_VERSION = @PYTHON_VERSION@
Packit 130fc8
RANLIB = @RANLIB@
Packit 130fc8
RST2HTML = @RST2HTML@
Packit 130fc8
RST2HTMLFLAGS = @RST2HTMLFLAGS@
Packit 130fc8
SED = @SED@
Packit 130fc8
SET_MAKE = @SET_MAKE@
Packit 130fc8
SHELL = @SHELL@
Packit 130fc8
STRIP = @STRIP@
Packit 130fc8
VERSION = @VERSION@
Packit 130fc8
WARN_CFLAGS = @WARN_CFLAGS@
Packit 130fc8
WARN_LDFLAGS = @WARN_LDFLAGS@
Packit 130fc8
WARN_SCANNERFLAGS = @WARN_SCANNERFLAGS@
Packit 130fc8
abs_builddir = @abs_builddir@
Packit 130fc8
abs_srcdir = @abs_srcdir@
Packit 130fc8
abs_top_builddir = @abs_top_builddir@
Packit 130fc8
abs_top_srcdir = @abs_top_srcdir@
Packit 130fc8
ac_ct_AR = @ac_ct_AR@
Packit 130fc8
ac_ct_CC = @ac_ct_CC@
Packit 130fc8
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
Packit 130fc8
am__include = @am__include@
Packit 130fc8
am__leading_dot = @am__leading_dot@
Packit 130fc8
am__quote = @am__quote@
Packit 130fc8
am__tar = @am__tar@
Packit 130fc8
am__untar = @am__untar@
Packit 130fc8
bindir = @bindir@
Packit 130fc8
build = @build@
Packit 130fc8
build_alias = @build_alias@
Packit 130fc8
build_cpu = @build_cpu@
Packit 130fc8
build_os = @build_os@
Packit 130fc8
build_vendor = @build_vendor@
Packit 130fc8
builddir = @builddir@
Packit 130fc8
datadir = @datadir@
Packit 130fc8
datarootdir = @datarootdir@
Packit 130fc8
docdir = @docdir@
Packit 130fc8
dvidir = @dvidir@
Packit 130fc8
exec_prefix = @exec_prefix@
Packit 130fc8
host = @host@
Packit 130fc8
host_alias = @host_alias@
Packit 130fc8
host_cpu = @host_cpu@
Packit 130fc8
host_os = @host_os@
Packit 130fc8
host_vendor = @host_vendor@
Packit 130fc8
htmldir = @htmldir@
Packit 130fc8
includedir = @includedir@
Packit 130fc8
infodir = @infodir@
Packit 130fc8
install_sh = @install_sh@
Packit 130fc8
libdir = @libdir@
Packit 130fc8
libexecdir = @libexecdir@
Packit 130fc8
localedir = @localedir@
Packit 130fc8
localstatedir = @localstatedir@
Packit 130fc8
mandir = @mandir@
Packit 130fc8
mkdir_p = @mkdir_p@
Packit 130fc8
oldincludedir = @oldincludedir@
Packit 130fc8
pdfdir = @pdfdir@
Packit 130fc8
pkgpyexecdir = @pkgpyexecdir@
Packit 130fc8
pkgpythondir = @pkgpythondir@
Packit 130fc8
prefix = @prefix@
Packit 130fc8
program_transform_name = @program_transform_name@
Packit 130fc8
psdir = @psdir@
Packit 130fc8
pyexecdir = @pyexecdir@
Packit 130fc8
pythondir = @pythondir@
Packit 130fc8
runstatedir = @runstatedir@
Packit 130fc8
sbindir = @sbindir@
Packit 130fc8
sharedstatedir = @sharedstatedir@
Packit 130fc8
srcdir = @srcdir@
Packit 130fc8
sysconfdir = @sysconfdir@
Packit 130fc8
target_alias = @target_alias@
Packit 130fc8
top_build_prefix = @top_build_prefix@
Packit 130fc8
top_builddir = @top_builddir@
Packit 130fc8
top_srcdir = @top_srcdir@
Packit 130fc8
installed_testdir = ${libexecdir}/installed-tests/${PACKAGE_TARNAME}
Packit 130fc8
installed_test_testdir = ${installed_testdir}/test
Packit 130fc8
installed_test_metadir = ${datadir}/installed-tests/${PACKAGE_TARNAME}
Packit 130fc8
ACLOCAL_AMFLAGS = -I m4
Packit 130fc8
CLEANFILES = test/test-service.log $(NULL) $(noinst_DATA) \
Packit 130fc8
	$(installed_test_test_data) $(installed_test_metadata) \
Packit 130fc8
	$(am__append_6)
Packit 130fc8
EXTRA_DIST = \
Packit 130fc8
	.travis.yml \
Packit 130fc8
	AUTHORS \
Packit 130fc8
	COPYING \
Packit 130fc8
	ChangeLog \
Packit 130fc8
	dbus-python.pc.in \
Packit 130fc8
	examples/example-async-client.py \
Packit 130fc8
	examples/example-client.py \
Packit 130fc8
	examples/example-service.py \
Packit 130fc8
	examples/example-signal-emitter.py \
Packit 130fc8
	examples/example-signal-recipient.py \
Packit 130fc8
	examples/gconf-proxy-client.py \
Packit 130fc8
	examples/gconf-proxy-service2.py \
Packit 130fc8
	examples/list-system-services.py \
Packit 130fc8
	examples/unix-fd-client.py \
Packit 130fc8
	examples/unix-fd-service.py \
Packit 130fc8
	m4/am-check-python-headers.m4 \
Packit 130fc8
	m4/dbus-py-add-rst2htmlflag.m4 \
Packit 130fc8
	setup.py \
Packit 130fc8
	test/TestSuitePythonService.service.in \
Packit 130fc8
	test/tmp-session-bus.conf.in \
Packit 130fc8
	tools/check-c-style.sh \
Packit 130fc8
	tools/check-coding-style.mk \
Packit 130fc8
	tools/check-py-style.sh \
Packit 130fc8
	tools/check-whitespace.sh
Packit 130fc8
Packit 130fc8
Packit 130fc8
# === C code ===
Packit 130fc8
AM_CPPFLAGS = \
Packit 130fc8
	-include config.h \
Packit 130fc8
	-I$(top_srcdir)/include \
Packit 130fc8
	$(DBUS_CFLAGS) \
Packit 130fc8
	$(DBUS_GLIB_CFLAGS) \
Packit 130fc8
	$(PYTHON_INCLUDES) \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
AM_CFLAGS = \
Packit 130fc8
	$(WARN_CFLAGS) \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
AM_LDFLAGS = \
Packit 130fc8
	$(WARN_LDFLAGS) \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
pymod_ldflags = -module -avoid-version $(NULL) $(am__append_1)
Packit 130fc8
pymod_libadd = $(NULL) $(am__append_2)
Packit 130fc8
pyexec_LTLIBRARIES = \
Packit 130fc8
	_dbus_bindings.la \
Packit 130fc8
	_dbus_glib_bindings.la \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@nobase_installed_test_LTLIBRARIES = test/dbus_py_test.la
Packit 130fc8
@ENABLE_INSTALLED_TESTS_FALSE@noinst_LTLIBRARIES = test/dbus_py_test.la
Packit 130fc8
_dbus_bindings_la_LDFLAGS = \
Packit 130fc8
	$(pymod_ldflags) \
Packit 130fc8
	-export-symbols-regex \(PyInit__\|init_\)dbus_bindings \
Packit 130fc8
	$(AM_LDFLAGS) \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
_dbus_bindings_la_LIBADD = \
Packit 130fc8
	$(pymod_libadd) \
Packit 130fc8
	$(DBUS_LIBS) \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
_dbus_bindings_la_SOURCES = \
Packit 130fc8
	_dbus_bindings/abstract.c \
Packit 130fc8
	_dbus_bindings/bus.c \
Packit 130fc8
	_dbus_bindings/bytes.c \
Packit 130fc8
	_dbus_bindings/compat-internal.h \
Packit 130fc8
	_dbus_bindings/conn.c \
Packit 130fc8
	_dbus_bindings/conn-internal.h \
Packit 130fc8
	_dbus_bindings/conn-methods.c \
Packit 130fc8
	_dbus_bindings/containers.c \
Packit 130fc8
	_dbus_bindings/dbus_bindings-internal.h \
Packit 130fc8
	_dbus_bindings/debug.c \
Packit 130fc8
	_dbus_bindings/exceptions.c \
Packit 130fc8
	_dbus_bindings/float.c \
Packit 130fc8
	_dbus_bindings/generic.c \
Packit 130fc8
	_dbus_bindings/int.c \
Packit 130fc8
	_dbus_bindings/unixfd.c \
Packit 130fc8
	_dbus_bindings/libdbusconn.c \
Packit 130fc8
	_dbus_bindings/mainloop.c \
Packit 130fc8
	_dbus_bindings/message-append.c \
Packit 130fc8
	_dbus_bindings/message.c \
Packit 130fc8
	_dbus_bindings/message-get-args.c \
Packit 130fc8
	_dbus_bindings/message-internal.h \
Packit 130fc8
	_dbus_bindings/module.c \
Packit 130fc8
	_dbus_bindings/pending-call.c \
Packit 130fc8
	_dbus_bindings/server.c \
Packit 130fc8
	_dbus_bindings/signature.c \
Packit 130fc8
	_dbus_bindings/string.c \
Packit 130fc8
	_dbus_bindings/types-internal.h \
Packit 130fc8
	_dbus_bindings/validation.c \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
_dbus_glib_bindings_la_LDFLAGS = \
Packit 130fc8
	$(pymod_ldflags) \
Packit 130fc8
	-export-symbols-regex \(PyInit__\|init_\)dbus_glib_bindings \
Packit 130fc8
	$(AM_LDFLAGS) \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
_dbus_glib_bindings_la_LIBADD = \
Packit 130fc8
	$(pymod_libadd) \
Packit 130fc8
	$(DBUS_LIBS) \
Packit 130fc8
	$(DBUS_GLIB_LIBS) \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
_dbus_glib_bindings_la_SOURCES = \
Packit 130fc8
	_dbus_glib_bindings/module.c \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
Packit 130fc8
# unconditionally add an -rpath to force Libtool to build a shared library
Packit 130fc8
test_dbus_py_test_la_LDFLAGS = \
Packit 130fc8
	$(pymod_ldflags) \
Packit 130fc8
	$(AM_LDFLAGS) \
Packit 130fc8
	-rpath $(installed_testdir) \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
test_dbus_py_test_la_LIBADD = $(DBUS_LIBS)
Packit 130fc8
test_dbus_py_test_la_SOURCES = \
Packit 130fc8
	include/dbus/dbus-python.h \
Packit 130fc8
	test/dbus_py_test.c \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
Packit 130fc8
# === dbus package ===
Packit 130fc8
nobase_python_PYTHON = dbus/bus.py dbus/connection.py dbus/_compat.py \
Packit 130fc8
	dbus/_dbus.py dbus/decorators.py dbus/exceptions.py \
Packit 130fc8
	dbus/_expat_introspect_parser.py dbus/gi_service.py \
Packit 130fc8
	dbus/glib.py dbus/__init__.py dbus/lowlevel.py \
Packit 130fc8
	dbus/mainloop/__init__.py dbus/mainloop/glib.py \
Packit 130fc8
	dbus/proxies.py dbus/server.py dbus/service.py dbus/types.py \
Packit 130fc8
	$(am__append_3)
Packit 130fc8
check_py_sources = $(nobase_python_PYTHON)
Packit 130fc8
Packit 130fc8
# === Devel stuff ===
Packit 130fc8
pkgconfigdir = $(libdir)/pkgconfig
Packit 130fc8
pkgconfig_DATA = dbus-python.pc
Packit 130fc8
dbusincludedir = $(includedir)/dbus-1.0/dbus
Packit 130fc8
dbusinclude_HEADERS = include/dbus/dbus-python.h
Packit 130fc8
AM_TESTS_ENVIRONMENT = \
Packit 130fc8
	export DBUS_TOP_SRCDIR="$(abs_top_srcdir)"; \
Packit 130fc8
	export DBUS_TOP_BUILDDIR="$(abs_top_builddir)"; \
Packit 130fc8
	export DBUS_TEST_TMPDIR="$(abs_top_builddir)/test"; \
Packit 130fc8
	export DBUS_TEST_UNINSTALLED=1; \
Packit 130fc8
	export DBUS_PYTHON_VERSION='$(PACKAGE_VERSION)'; \
Packit 130fc8
	export PYTHONPATH="$(abs_top_srcdir):$(abs_top_srcdir)/test:$(abs_top_builddir)/.libs:$(abs_top_builddir)/test/.libs"; \
Packit 130fc8
	export PYTHON='$(PYTHON)'; \
Packit 130fc8
	export DBUS_FATAL_WARNINGS=1; \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
TEST_EXTENSIONS = .sh .py
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_FALSE@LOG_COMPILER = $(top_srcdir)/test/with-session-bus.sh \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_FALSE@	--config-file=$(top_builddir)/test/tmp-session-bus.conf \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_FALSE@	--
Packit 130fc8
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_TRUE@LOG_COMPILER = $(DBUS_RUN_SESSION) \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_TRUE@	--config-file=$(top_builddir)/test/tmp-session-bus.conf \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_TRUE@	--
Packit 130fc8
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_FALSE@installed_log_compiler = $(installed_testdir)/test/with-session-bus.sh \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_FALSE@	--config-file=$(installed_testdir)/test/tmp-session-bus.conf \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_FALSE@	-- env PYTHON=$(PYTHON) \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_FALSE@	DBUS_TOP_SRCDIR=$(installed_testdir) \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_FALSE@	DBUS_TOP_BUILDDIR=$(installed_testdir) \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_FALSE@	$(NULL)
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_TRUE@installed_log_compiler =  \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_TRUE@	$(DBUS_RUN_SESSION) \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_TRUE@	--config-file=$(installed_testdir)/test/tmp-session-bus.conf \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_TRUE@	-- env PYTHON=$(PYTHON) \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_TRUE@	DBUS_TOP_SRCDIR=$(installed_testdir) \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_TRUE@	DBUS_TOP_BUILDDIR=$(installed_testdir) \
Packit 130fc8
@HAVE_DBUS_RUN_SESSION_TRUE@	$(NULL)
Packit 130fc8
SH_LOG_COMPILER = $(LOG_COMPILER) $(SHELL)
Packit 130fc8
PY_LOG_COMPILER = $(LOG_COMPILER) $(PYTHON)
Packit 130fc8
dist_test_sh = \
Packit 130fc8
	test/run-test.sh \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
dist_test_py = test/test-client.py test/test-p2p.py \
Packit 130fc8
	test/test-signals.py test/test-standalone.py \
Packit 130fc8
	test/test-unusable-main-loop.py $(NULL) $(am__append_4) \
Packit 130fc8
	$(am__append_5)
Packit 130fc8
dist_test_extra_python = \
Packit 130fc8
	test/crosstest.py \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
dist_test_extra_scripts = \
Packit 130fc8
	test/cross-test-client.py \
Packit 130fc8
	test/cross-test-server.py \
Packit 130fc8
	test/test-service.py \
Packit 130fc8
	test/wait-for-name.py \
Packit 130fc8
	test/with-session-bus.sh \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
test_programs = \
Packit 130fc8
	test/test-import-repeatedly \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
test_test_import_repeatedly_SOURCES = test/import-repeatedly.c
Packit 130fc8
test_test_import_repeatedly_CPPFLAGS = $(PYTHON_INCLUDES)
Packit 130fc8
test_test_import_repeatedly_LDADD = $(PYTHON_LIBS)
Packit 130fc8
noinst_DATA = \
Packit 130fc8
	test/TestSuitePythonService.service \
Packit 130fc8
	test/tmp-session-bus.conf \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
installed_test_test_data = \
Packit 130fc8
	test/installable/TestSuitePythonService.service \
Packit 130fc8
	test/installable/tmp-session-bus.conf \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@nobase_dist_installed_test_SCRIPTS = \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@	$(dist_test_py) \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@	$(dist_test_sh) \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@	$(dist_test_extra_scripts) \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@	$(NULL)
Packit 130fc8
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@nobase_dist_installed_test_PYTHON = \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@	$(dist_test_extra_python) \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@	$(NULL)
Packit 130fc8
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@installed_test_test_DATA = $(installed_test_test_data)
Packit 130fc8
@ENABLE_INSTALLED_TESTS_TRUE@installed_test_meta_DATA = $(installed_test_metadata)
Packit 130fc8
@ENABLE_INSTALLED_TESTS_FALSE@dist_noinst_SCRIPTS = \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_FALSE@	$(dist_test_py) \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_FALSE@	$(dist_test_sh) \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_FALSE@	$(dist_test_extra_scripts) \
Packit 130fc8
@ENABLE_INSTALLED_TESTS_FALSE@	$(NULL)
Packit 130fc8
Packit 130fc8
installed_test_metadata = \
Packit 130fc8
	$(patsubst %,%.test,$(dist_test_py)) \
Packit 130fc8
	$(patsubst %,%.test,$(dist_test_sh)) \
Packit 130fc8
	$(patsubst %,%.test,$(test_programs)) \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
TXT_RSTDOCS = \
Packit 130fc8
	doc/tutorial.txt \
Packit 130fc8
	doc/API_CHANGES.txt \
Packit 130fc8
	doc/HACKING.txt \
Packit 130fc8
	doc/PY3PORT.txt \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
RSTDOCS = \
Packit 130fc8
	README \
Packit 130fc8
	NEWS \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
dist_doc_DATA = $(TXT_RSTDOCS) $(RSTDOCS)
Packit 130fc8
@ENABLE_DOCS_TRUE@HTML_TXT_RSTDOCS = $(patsubst %.txt,%.html,$(TXT_RSTDOCS))
Packit 130fc8
@ENABLE_DOCS_TRUE@HTML_RSTDOCS = $(patsubst %,%.html,$(RSTDOCS))
Packit 130fc8
@ENABLE_DOCS_TRUE@nodist_doc_DATA = $(HTML_TXT_RSTDOCS) $(HTML_RSTDOCS)
Packit 130fc8
@ENABLE_API_DOCS_TRUE@APIDOC_PYTHONPATH = $(abs_top_srcdir):$(abs_top_builddir)/.libs
Packit 130fc8
check_c_sources = \
Packit 130fc8
	$(_dbus_bindings_la_SOURCES) \
Packit 130fc8
	$(_dbus_glib_bindings_la_SOURCES) \
Packit 130fc8
	$(NULL)
Packit 130fc8
Packit 130fc8
all: config.h
Packit 130fc8
	$(MAKE) $(AM_MAKEFLAGS) all-am
Packit 130fc8
Packit 130fc8
.SUFFIXES:
Packit 130fc8
.SUFFIXES: .c .lo .log .o .obj .py .py$(EXEEXT) .sh .sh$(EXEEXT) .trs
Packit 130fc8
am--refresh: Makefile
Packit 130fc8
	@:
Packit 130fc8
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/tools/check-coding-style.mk $(top_srcdir)/tools/check-coding-style.mk $(am__configure_deps)
Packit 130fc8
	@for dep in $?; do \
Packit 130fc8
	  case '$(am__configure_deps)' in \
Packit 130fc8
	    *$$dep*) \
Packit 130fc8
	      echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
Packit 130fc8
	      $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
Packit 130fc8
		&& exit 0; \
Packit 130fc8
	      exit 1;; \
Packit 130fc8
	  esac; \
Packit 130fc8
	done; \
Packit 130fc8
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
Packit 130fc8
	$(am__cd) $(top_srcdir) && \
Packit 130fc8
	  $(AUTOMAKE) --gnu Makefile
Packit 130fc8
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Packit 130fc8
	@case '$?' in \
Packit 130fc8
	  *config.status*) \
Packit 130fc8
	    echo ' $(SHELL) ./config.status'; \
Packit 130fc8
	    $(SHELL) ./config.status;; \
Packit 130fc8
	  *) \
Packit 130fc8
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
Packit 130fc8
	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
Packit 130fc8
	esac;
Packit 130fc8
$(top_srcdir)/tools/check-coding-style.mk $(top_srcdir)/tools/check-coding-style.mk $(am__empty):
Packit 130fc8
Packit 130fc8
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
Packit 130fc8
	$(SHELL) ./config.status --recheck
Packit 130fc8
Packit 130fc8
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
Packit 130fc8
	$(am__cd) $(srcdir) && $(AUTOCONF)
Packit 130fc8
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
Packit 130fc8
	$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
Packit 130fc8
$(am__aclocal_m4_deps):
Packit 130fc8
Packit 130fc8
config.h: stamp-h1
Packit 130fc8
	@test -f $@ || rm -f stamp-h1
Packit 130fc8
	@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
Packit 130fc8
Packit 130fc8
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
Packit 130fc8
	@rm -f stamp-h1
Packit 130fc8
	cd $(top_builddir) && $(SHELL) ./config.status config.h
Packit 130fc8
$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 
Packit 130fc8
	($(am__cd) $(top_srcdir) && $(AUTOHEADER))
Packit 130fc8
	rm -f stamp-h1
Packit 130fc8
	touch $@
Packit 130fc8
Packit 130fc8
distclean-hdr:
Packit 130fc8
	-rm -f config.h stamp-h1
Packit 130fc8
dbus-python.pc: $(top_builddir)/config.status $(srcdir)/dbus-python.pc.in
Packit 130fc8
	cd $(top_builddir) && $(SHELL) ./config.status $@
Packit 130fc8
Packit 130fc8
install-nobase_installed_testLTLIBRARIES: $(nobase_installed_test_LTLIBRARIES)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(nobase_installed_test_LTLIBRARIES)'; test -n "$(installed_testdir)"  || list=; \
Packit 130fc8
	if test -n "$$list"; then \
Packit 130fc8
	    echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)'"; \
Packit 130fc8
	    $(MKDIR_P) "$(DESTDIR)$(installed_testdir)" || exit 1; \
Packit 130fc8
	fi; \
Packit 130fc8
	for p in $$list; do if test -f "$$p"; then echo "$$p $$p"; else :; fi; done | \
Packit 130fc8
	sed '/ .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
Packit 130fc8
	$(AWK) 'BEGIN { cur = "." } \
Packit 130fc8
	  { if ($$2 == cur) { files = files " " $$1 } \
Packit 130fc8
	    else { print cur, files; files = $$1; cur = $$2 } } \
Packit 130fc8
	  END { print cur, files }' | \
Packit 130fc8
	while read dir files; do \
Packit 130fc8
	  test -z "$$files" || { \
Packit 130fc8
	    test "x$$dir" = x. || { \
Packit 130fc8
	      echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)/$$dir'"; \
Packit 130fc8
	      $(MKDIR_P) "$(DESTDIR)$(installed_testdir)/$$dir"; }; \
Packit 130fc8
	    echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$files '$(DESTDIR)$(installed_testdir)/$$dir'"; \
Packit 130fc8
	    $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$files "$(DESTDIR)$(installed_testdir)/$$dir" || exit $$?; \
Packit 130fc8
	  }; \
Packit 130fc8
	done
Packit 130fc8
Packit 130fc8
uninstall-nobase_installed_testLTLIBRARIES:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(nobase_installed_test_LTLIBRARIES)'; test -n "$(installed_testdir)" || list=; \
Packit 130fc8
	for p in $$list; do \
Packit 130fc8
	  f=$$p; \
Packit 130fc8
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(installed_testdir)/$$f'"; \
Packit 130fc8
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(installed_testdir)/$$f"; \
Packit 130fc8
	done
Packit 130fc8
Packit 130fc8
clean-nobase_installed_testLTLIBRARIES:
Packit 130fc8
	-test -z "$(nobase_installed_test_LTLIBRARIES)" || rm -f $(nobase_installed_test_LTLIBRARIES)
Packit 130fc8
	@list='$(nobase_installed_test_LTLIBRARIES)'; \
Packit 130fc8
	locs=`for p in $$list; do echo $$p; done | \
Packit 130fc8
	      sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
Packit 130fc8
	      sort -u`; \
Packit 130fc8
	test -z "$$locs" || { \
Packit 130fc8
	  echo rm -f $${locs}; \
Packit 130fc8
	  rm -f $${locs}; \
Packit 130fc8
	}
Packit 130fc8
Packit 130fc8
clean-noinstLTLIBRARIES:
Packit 130fc8
	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
Packit 130fc8
	@list='$(noinst_LTLIBRARIES)'; \
Packit 130fc8
	locs=`for p in $$list; do echo $$p; done | \
Packit 130fc8
	      sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
Packit 130fc8
	      sort -u`; \
Packit 130fc8
	test -z "$$locs" || { \
Packit 130fc8
	  echo rm -f $${locs}; \
Packit 130fc8
	  rm -f $${locs}; \
Packit 130fc8
	}
Packit 130fc8
Packit 130fc8
install-pyexecLTLIBRARIES: $(pyexec_LTLIBRARIES)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(pyexec_LTLIBRARIES)'; test -n "$(pyexecdir)" || list=; \
Packit 130fc8
	list2=; for p in $$list; do \
Packit 130fc8
	  if test -f $$p; then \
Packit 130fc8
	    list2="$$list2 $$p"; \
Packit 130fc8
	  else :; fi; \
Packit 130fc8
	done; \
Packit 130fc8
	test -z "$$list2" || { \
Packit 130fc8
	  echo " $(MKDIR_P) '$(DESTDIR)$(pyexecdir)'"; \
Packit 130fc8
	  $(MKDIR_P) "$(DESTDIR)$(pyexecdir)" || exit 1; \
Packit 130fc8
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pyexecdir)'"; \
Packit 130fc8
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pyexecdir)"; \
Packit 130fc8
	}
Packit 130fc8
Packit 130fc8
uninstall-pyexecLTLIBRARIES:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(pyexec_LTLIBRARIES)'; test -n "$(pyexecdir)" || list=; \
Packit 130fc8
	for p in $$list; do \
Packit 130fc8
	  $(am__strip_dir) \
Packit 130fc8
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pyexecdir)/$$f'"; \
Packit 130fc8
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pyexecdir)/$$f"; \
Packit 130fc8
	done
Packit 130fc8
Packit 130fc8
clean-pyexecLTLIBRARIES:
Packit 130fc8
	-test -z "$(pyexec_LTLIBRARIES)" || rm -f $(pyexec_LTLIBRARIES)
Packit 130fc8
	@list='$(pyexec_LTLIBRARIES)'; \
Packit 130fc8
	locs=`for p in $$list; do echo $$p; done | \
Packit 130fc8
	      sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
Packit 130fc8
	      sort -u`; \
Packit 130fc8
	test -z "$$locs" || { \
Packit 130fc8
	  echo rm -f $${locs}; \
Packit 130fc8
	  rm -f $${locs}; \
Packit 130fc8
	}
Packit 130fc8
_dbus_bindings/$(am__dirstamp):
Packit 130fc8
	@$(MKDIR_P) _dbus_bindings
Packit 130fc8
	@: > _dbus_bindings/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/$(DEPDIR)/$(am__dirstamp):
Packit 130fc8
	@$(MKDIR_P) _dbus_bindings/$(DEPDIR)
Packit 130fc8
	@: > _dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/abstract.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/bus.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/bytes.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/conn.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/conn-methods.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/containers.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/debug.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/exceptions.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/float.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/generic.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/int.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/unixfd.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/libdbusconn.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/mainloop.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/message-append.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/message.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/message-get-args.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/module.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/pending-call.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/server.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/signature.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/string.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_bindings/validation.lo: _dbus_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
Packit 130fc8
_dbus_bindings.la: $(_dbus_bindings_la_OBJECTS) $(_dbus_bindings_la_DEPENDENCIES) $(EXTRA__dbus_bindings_la_DEPENDENCIES) 
Packit 130fc8
	$(AM_V_CCLD)$(_dbus_bindings_la_LINK) -rpath $(pyexecdir) $(_dbus_bindings_la_OBJECTS) $(_dbus_bindings_la_LIBADD) $(LIBS)
Packit 130fc8
_dbus_glib_bindings/$(am__dirstamp):
Packit 130fc8
	@$(MKDIR_P) _dbus_glib_bindings
Packit 130fc8
	@: > _dbus_glib_bindings/$(am__dirstamp)
Packit 130fc8
_dbus_glib_bindings/$(DEPDIR)/$(am__dirstamp):
Packit 130fc8
	@$(MKDIR_P) _dbus_glib_bindings/$(DEPDIR)
Packit 130fc8
	@: > _dbus_glib_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
_dbus_glib_bindings/module.lo: _dbus_glib_bindings/$(am__dirstamp) \
Packit 130fc8
	_dbus_glib_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
Packit 130fc8
_dbus_glib_bindings.la: $(_dbus_glib_bindings_la_OBJECTS) $(_dbus_glib_bindings_la_DEPENDENCIES) $(EXTRA__dbus_glib_bindings_la_DEPENDENCIES) 
Packit 130fc8
	$(AM_V_CCLD)$(_dbus_glib_bindings_la_LINK) -rpath $(pyexecdir) $(_dbus_glib_bindings_la_OBJECTS) $(_dbus_glib_bindings_la_LIBADD) $(LIBS)
Packit 130fc8
test/$(am__dirstamp):
Packit 130fc8
	@$(MKDIR_P) test
Packit 130fc8
	@: > test/$(am__dirstamp)
Packit 130fc8
test/$(DEPDIR)/$(am__dirstamp):
Packit 130fc8
	@$(MKDIR_P) test/$(DEPDIR)
Packit 130fc8
	@: > test/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
test/dbus_py_test.lo: test/$(am__dirstamp) \
Packit 130fc8
	test/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
Packit 130fc8
test/dbus_py_test.la: $(test_dbus_py_test_la_OBJECTS) $(test_dbus_py_test_la_DEPENDENCIES) $(EXTRA_test_dbus_py_test_la_DEPENDENCIES) test/$(am__dirstamp)
Packit 130fc8
	$(AM_V_CCLD)$(test_dbus_py_test_la_LINK) $(am_test_dbus_py_test_la_rpath) $(test_dbus_py_test_la_OBJECTS) $(test_dbus_py_test_la_LIBADD) $(LIBS)
Packit 130fc8
install-nobase_installed_testPROGRAMS: $(nobase_installed_test_PROGRAMS)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(nobase_installed_test_PROGRAMS)'; test -n "$(installed_testdir)" || list=; \
Packit 130fc8
	if test -n "$$list"; then \
Packit 130fc8
	  echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)'"; \
Packit 130fc8
	  $(MKDIR_P) "$(DESTDIR)$(installed_testdir)" || exit 1; \
Packit 130fc8
	fi; \
Packit 130fc8
	for p in $$list; do echo "$$p $$p"; done | \
Packit 130fc8
	sed 's/$(EXEEXT)$$//' | \
Packit 130fc8
	while read p p1; do if test -f $$p \
Packit 130fc8
	 || test -f $$p1 \
Packit 130fc8
	  ; then echo "$$p"; echo "$$p"; else :; fi; \
Packit 130fc8
	done | \
Packit 130fc8
	sed -e 'p;s,.*/,,;n;h' \
Packit 130fc8
	    -e 's|[^/]*$$||; s|^$$|.|' \
Packit 130fc8
	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
Packit 130fc8
	sed 'N;N;N;s,\n, ,g' | \
Packit 130fc8
	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
Packit 130fc8
	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
Packit 130fc8
	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
Packit 130fc8
	    else { print "f", $$3 "/" $$4, $$1; } } \
Packit 130fc8
	  END { for (d in files) print "f", d, files[d] }' | \
Packit 130fc8
	while read type dir files; do \
Packit 130fc8
	  case $$type in \
Packit 130fc8
	  d) echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)/$$dir'"; \
Packit 130fc8
	     $(MKDIR_P) "$(DESTDIR)$(installed_testdir)/$$dir" || exit $$?;; \
Packit 130fc8
	  f) \
Packit 130fc8
	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
Packit 130fc8
	    test -z "$$files" || { \
Packit 130fc8
	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(installed_testdir)$$dir'"; \
Packit 130fc8
	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(installed_testdir)$$dir" || exit $$?; \
Packit 130fc8
	    } \
Packit 130fc8
	  ;; esac \
Packit 130fc8
	; done
Packit 130fc8
Packit 130fc8
uninstall-nobase_installed_testPROGRAMS:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(nobase_installed_test_PROGRAMS)'; test -n "$(installed_testdir)" || list=; \
Packit 130fc8
	files=`for p in $$list; do echo "$$p"; done | \
Packit 130fc8
	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
Packit 130fc8
	      -e 's/$$/$(EXEEXT)/' \
Packit 130fc8
	      -e 'x;s,[^/]*$$,,;G;s,\n,,' \
Packit 130fc8
	`; \
Packit 130fc8
	test -n "$$list" || exit 0; \
Packit 130fc8
	echo " ( cd '$(DESTDIR)$(installed_testdir)' && rm -f" $$files ")"; \
Packit 130fc8
	cd "$(DESTDIR)$(installed_testdir)" && rm -f $$files
Packit 130fc8
Packit 130fc8
clean-nobase_installed_testPROGRAMS:
Packit 130fc8
	@list='$(nobase_installed_test_PROGRAMS)'; test -n "$$list" || exit 0; \
Packit 130fc8
	echo " rm -f" $$list; \
Packit 130fc8
	rm -f $$list || exit $$?; \
Packit 130fc8
	test -n "$(EXEEXT)" || exit 0; \
Packit 130fc8
	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
Packit 130fc8
	echo " rm -f" $$list; \
Packit 130fc8
	rm -f $$list
Packit 130fc8
Packit 130fc8
clean-noinstPROGRAMS:
Packit 130fc8
	@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
Packit 130fc8
	echo " rm -f" $$list; \
Packit 130fc8
	rm -f $$list || exit $$?; \
Packit 130fc8
	test -n "$(EXEEXT)" || exit 0; \
Packit 130fc8
	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
Packit 130fc8
	echo " rm -f" $$list; \
Packit 130fc8
	rm -f $$list
Packit 130fc8
test/test_test_import_repeatedly-import-repeatedly.$(OBJEXT):  \
Packit 130fc8
	test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
Packit 130fc8
test/test-import-repeatedly$(EXEEXT): $(test_test_import_repeatedly_OBJECTS) $(test_test_import_repeatedly_DEPENDENCIES) $(EXTRA_test_test_import_repeatedly_DEPENDENCIES) test/$(am__dirstamp)
Packit 130fc8
	@rm -f test/test-import-repeatedly$(EXEEXT)
Packit 130fc8
	$(AM_V_CCLD)$(LINK) $(test_test_import_repeatedly_OBJECTS) $(test_test_import_repeatedly_LDADD) $(LIBS)
Packit 130fc8
install-nobase_dist_installed_testSCRIPTS: $(nobase_dist_installed_test_SCRIPTS)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(nobase_dist_installed_test_SCRIPTS)'; test -n "$(installed_testdir)" || list=; \
Packit 130fc8
	if test -n "$$list"; then \
Packit 130fc8
	  echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)'"; \
Packit 130fc8
	  $(MKDIR_P) "$(DESTDIR)$(installed_testdir)" || exit 1; \
Packit 130fc8
	fi; \
Packit 130fc8
	$(am__nobase_strip_setup); \
Packit 130fc8
	for p in $$list; do \
Packit 130fc8
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
Packit 130fc8
	  if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
Packit 130fc8
	done | \
Packit 130fc8
	sed -e 'p;s,.*/,,;n' \
Packit 130fc8
	    -e "s|$$srcdirstrip/||" -e 'h;s|[^/]*$$||; s|^$$|.|' \
Packit 130fc8
	    -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
Packit 130fc8
	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
Packit 130fc8
	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
Packit 130fc8
	    if ($$2 == $$4) { files[d] = files[d] " " $$1; \
Packit 130fc8
	      if (++n[d] == $(am__install_max)) { \
Packit 130fc8
		print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
Packit 130fc8
	    else { print "f", d "/" $$4, $$1 } } \
Packit 130fc8
	  END { for (d in files) print "f", d, files[d] }' | \
Packit 130fc8
	while read type dir files; do \
Packit 130fc8
	  case $$type in \
Packit 130fc8
	  d) echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)/$$dir'"; \
Packit 130fc8
	     $(MKDIR_P) "$(DESTDIR)$(installed_testdir)/$$dir" || exit $$?;; \
Packit 130fc8
	  f) \
Packit 130fc8
	     if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
Packit 130fc8
	     test -z "$$files" || { \
Packit 130fc8
	       echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(installed_testdir)$$dir'"; \
Packit 130fc8
	       $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(installed_testdir)$$dir" || exit $$?; \
Packit 130fc8
	     } \
Packit 130fc8
	  ;; esac \
Packit 130fc8
	; done
Packit 130fc8
Packit 130fc8
uninstall-nobase_dist_installed_testSCRIPTS:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(nobase_dist_installed_test_SCRIPTS)'; test -n "$(installed_testdir)" || exit 0; \
Packit 130fc8
	$(am__nobase_strip_setup); \
Packit 130fc8
	files=`$(am__nobase_strip) \
Packit 130fc8
	       -e 'h;s,.*/,,;$(transform);x;s|[^/]*$$||;G;s,\n,,'`; \
Packit 130fc8
	dir='$(DESTDIR)$(installed_testdir)'; $(am__uninstall_files_from_dir)
Packit 130fc8
Packit 130fc8
mostlyclean-compile:
Packit 130fc8
	-rm -f *.$(OBJEXT)
Packit 130fc8
	-rm -f _dbus_bindings/*.$(OBJEXT)
Packit 130fc8
	-rm -f _dbus_bindings/*.lo
Packit 130fc8
	-rm -f _dbus_glib_bindings/*.$(OBJEXT)
Packit 130fc8
	-rm -f _dbus_glib_bindings/*.lo
Packit 130fc8
	-rm -f test/*.$(OBJEXT)
Packit 130fc8
	-rm -f test/*.lo
Packit 130fc8
Packit 130fc8
distclean-compile:
Packit 130fc8
	-rm -f *.tab.c
Packit 130fc8
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/abstract.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/bus.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/bytes.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/conn-methods.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/conn.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/containers.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/debug.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/exceptions.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/float.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/generic.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/int.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/libdbusconn.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/mainloop.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/message-append.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/message-get-args.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/message.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/module.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/pending-call.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/server.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/signature.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/string.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/unixfd.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_bindings/$(DEPDIR)/validation.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@_dbus_glib_bindings/$(DEPDIR)/module.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/dbus_py_test.Plo@am__quote@
Packit 130fc8
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_test_import_repeatedly-import-repeatedly.Po@am__quote@
Packit 130fc8
Packit 130fc8
.c.o:
Packit 130fc8
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
Packit 130fc8
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
Packit 130fc8
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
Packit 130fc8
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
Packit 130fc8
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Packit 130fc8
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
Packit 130fc8
Packit 130fc8
.c.obj:
Packit 130fc8
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
Packit 130fc8
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
Packit 130fc8
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
Packit 130fc8
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
Packit 130fc8
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Packit 130fc8
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
Packit 130fc8
Packit 130fc8
.c.lo:
Packit 130fc8
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
Packit 130fc8
@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
Packit 130fc8
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Plo
Packit 130fc8
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
Packit 130fc8
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Packit 130fc8
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
Packit 130fc8
Packit 130fc8
test/test_test_import_repeatedly-import-repeatedly.o: test/import-repeatedly.c
Packit 130fc8
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_test_import_repeatedly_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test/test_test_import_repeatedly-import-repeatedly.o -MD -MP -MF test/$(DEPDIR)/test_test_import_repeatedly-import-repeatedly.Tpo -c -o test/test_test_import_repeatedly-import-repeatedly.o `test -f 'test/import-repeatedly.c' || echo '$(srcdir)/'`test/import-repeatedly.c
Packit 130fc8
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) test/$(DEPDIR)/test_test_import_repeatedly-import-repeatedly.Tpo test/$(DEPDIR)/test_test_import_repeatedly-import-repeatedly.Po
Packit 130fc8
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='test/import-repeatedly.c' object='test/test_test_import_repeatedly-import-repeatedly.o' libtool=no @AMDEPBACKSLASH@
Packit 130fc8
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Packit 130fc8
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_test_import_repeatedly_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test/test_test_import_repeatedly-import-repeatedly.o `test -f 'test/import-repeatedly.c' || echo '$(srcdir)/'`test/import-repeatedly.c
Packit 130fc8
Packit 130fc8
test/test_test_import_repeatedly-import-repeatedly.obj: test/import-repeatedly.c
Packit 130fc8
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_test_import_repeatedly_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test/test_test_import_repeatedly-import-repeatedly.obj -MD -MP -MF test/$(DEPDIR)/test_test_import_repeatedly-import-repeatedly.Tpo -c -o test/test_test_import_repeatedly-import-repeatedly.obj `if test -f 'test/import-repeatedly.c'; then $(CYGPATH_W) 'test/import-repeatedly.c'; else $(CYGPATH_W) '$(srcdir)/test/import-repeatedly.c'; fi`
Packit 130fc8
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) test/$(DEPDIR)/test_test_import_repeatedly-import-repeatedly.Tpo test/$(DEPDIR)/test_test_import_repeatedly-import-repeatedly.Po
Packit 130fc8
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='test/import-repeatedly.c' object='test/test_test_import_repeatedly-import-repeatedly.obj' libtool=no @AMDEPBACKSLASH@
Packit 130fc8
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Packit 130fc8
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_test_import_repeatedly_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test/test_test_import_repeatedly-import-repeatedly.obj `if test -f 'test/import-repeatedly.c'; then $(CYGPATH_W) 'test/import-repeatedly.c'; else $(CYGPATH_W) '$(srcdir)/test/import-repeatedly.c'; fi`
Packit 130fc8
Packit 130fc8
mostlyclean-libtool:
Packit 130fc8
	-rm -f *.lo
Packit 130fc8
Packit 130fc8
clean-libtool:
Packit 130fc8
	-rm -rf .libs _libs
Packit 130fc8
	-rm -rf _dbus_bindings/.libs _dbus_bindings/_libs
Packit 130fc8
	-rm -rf _dbus_glib_bindings/.libs _dbus_glib_bindings/_libs
Packit 130fc8
	-rm -rf test/.libs test/_libs
Packit 130fc8
Packit 130fc8
distclean-libtool:
Packit 130fc8
	-rm -f libtool config.lt
Packit 130fc8
install-nobase_dist_installed_testPYTHON: $(nobase_dist_installed_test_PYTHON)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(nobase_dist_installed_test_PYTHON)'; test -n "$(installed_testdir)" || list=; \
Packit 130fc8
	if test -n "$$list"; then \
Packit 130fc8
	  echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)'"; \
Packit 130fc8
	  $(MKDIR_P) "$(DESTDIR)$(installed_testdir)" || exit 1; \
Packit 130fc8
	fi; \
Packit 130fc8
	$(am__nobase_list) | { while read dir files; do \
Packit 130fc8
	  xfiles=; for p in $$files; do \
Packit 130fc8
	    if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \
Packit 130fc8
	    if test -f "$$b$$p"; then xfiles="$$xfiles $$b$$p"; dlist="$$dlist $$p"; \
Packit 130fc8
	    else :; fi; done; \
Packit 130fc8
	  test -z "$$xfiles" || { \
Packit 130fc8
	    test "x$$dir" = x. || { \
Packit 130fc8
	      echo "$(MKDIR_P) '$(DESTDIR)$(installed_testdir)/$$dir'"; \
Packit 130fc8
	      $(MKDIR_P) "$(DESTDIR)$(installed_testdir)/$$dir"; }; \
Packit 130fc8
	    echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(installed_testdir)/$$dir'"; \
Packit 130fc8
	    $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(installed_testdir)/$$dir" || exit $$?; }; \
Packit 130fc8
	done; \
Packit 130fc8
	if test -n "$$dlist"; then \
Packit 130fc8
	  $(am__py_compile) --destdir "$(DESTDIR)" \
Packit 130fc8
	                    --basedir "$(installed_testdir)" $$dlist; \
Packit 130fc8
	else :; fi; }
Packit 130fc8
Packit 130fc8
uninstall-nobase_dist_installed_testPYTHON:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(nobase_dist_installed_test_PYTHON)'; test -n "$(installed_testdir)" || list=; \
Packit 130fc8
	$(am__nobase_strip_setup); py_files=`$(am__nobase_strip)`; \
Packit 130fc8
	test -n "$$py_files" || exit 0; \
Packit 130fc8
	dir='$(DESTDIR)$(installed_testdir)'; \
Packit 130fc8
	pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
Packit 130fc8
	pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
Packit 130fc8
	py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
Packit 130fc8
	echo "$$py_files_pep3147";\
Packit 130fc8
	pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
Packit 130fc8
	pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
Packit 130fc8
	st=0; \
Packit 130fc8
	for files in \
Packit 130fc8
	  "$$py_files" \
Packit 130fc8
	  "$$pyc_files" \
Packit 130fc8
	  "$$pyo_files" \
Packit 130fc8
	  "$$pyc_files_pep3147" \
Packit 130fc8
	  "$$pyo_files_pep3147" \
Packit 130fc8
	; do \
Packit 130fc8
	  $(am__uninstall_files_from_dir) || st=$$?; \
Packit 130fc8
	done; \
Packit 130fc8
	exit $$st
Packit 130fc8
install-nobase_pythonPYTHON: $(nobase_python_PYTHON)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(nobase_python_PYTHON)'; test -n "$(pythondir)" || list=; \
Packit 130fc8
	if test -n "$$list"; then \
Packit 130fc8
	  echo " $(MKDIR_P) '$(DESTDIR)$(pythondir)'"; \
Packit 130fc8
	  $(MKDIR_P) "$(DESTDIR)$(pythondir)" || exit 1; \
Packit 130fc8
	fi; \
Packit 130fc8
	$(am__nobase_list) | { while read dir files; do \
Packit 130fc8
	  xfiles=; for p in $$files; do \
Packit 130fc8
	    if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \
Packit 130fc8
	    if test -f "$$b$$p"; then xfiles="$$xfiles $$b$$p"; dlist="$$dlist $$p"; \
Packit 130fc8
	    else :; fi; done; \
Packit 130fc8
	  test -z "$$xfiles" || { \
Packit 130fc8
	    test "x$$dir" = x. || { \
Packit 130fc8
	      echo "$(MKDIR_P) '$(DESTDIR)$(pythondir)/$$dir'"; \
Packit 130fc8
	      $(MKDIR_P) "$(DESTDIR)$(pythondir)/$$dir"; }; \
Packit 130fc8
	    echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(pythondir)/$$dir'"; \
Packit 130fc8
	    $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(pythondir)/$$dir" || exit $$?; }; \
Packit 130fc8
	done; \
Packit 130fc8
	if test -n "$$dlist"; then \
Packit 130fc8
	  $(am__py_compile) --destdir "$(DESTDIR)" \
Packit 130fc8
	                    --basedir "$(pythondir)" $$dlist; \
Packit 130fc8
	else :; fi; }
Packit 130fc8
Packit 130fc8
uninstall-nobase_pythonPYTHON:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(nobase_python_PYTHON)'; test -n "$(pythondir)" || list=; \
Packit 130fc8
	$(am__nobase_strip_setup); py_files=`$(am__nobase_strip)`; \
Packit 130fc8
	test -n "$$py_files" || exit 0; \
Packit 130fc8
	dir='$(DESTDIR)$(pythondir)'; \
Packit 130fc8
	pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
Packit 130fc8
	pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
Packit 130fc8
	py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
Packit 130fc8
	echo "$$py_files_pep3147";\
Packit 130fc8
	pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
Packit 130fc8
	pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
Packit 130fc8
	st=0; \
Packit 130fc8
	for files in \
Packit 130fc8
	  "$$py_files" \
Packit 130fc8
	  "$$pyc_files" \
Packit 130fc8
	  "$$pyo_files" \
Packit 130fc8
	  "$$pyc_files_pep3147" \
Packit 130fc8
	  "$$pyo_files_pep3147" \
Packit 130fc8
	; do \
Packit 130fc8
	  $(am__uninstall_files_from_dir) || st=$$?; \
Packit 130fc8
	done; \
Packit 130fc8
	exit $$st
Packit 130fc8
install-dist_docDATA: $(dist_doc_DATA)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \
Packit 130fc8
	if test -n "$$list"; then \
Packit 130fc8
	  echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \
Packit 130fc8
	  $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \
Packit 130fc8
	fi; \
Packit 130fc8
	for p in $$list; do \
Packit 130fc8
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
Packit 130fc8
	  echo "$$d$$p"; \
Packit 130fc8
	done | $(am__base_list) | \
Packit 130fc8
	while read files; do \
Packit 130fc8
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \
Packit 130fc8
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \
Packit 130fc8
	done
Packit 130fc8
Packit 130fc8
uninstall-dist_docDATA:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \
Packit 130fc8
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
Packit 130fc8
	dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
Packit 130fc8
install-installed_test_metaDATA: $(installed_test_meta_DATA)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(installed_test_meta_DATA)'; test -n "$(installed_test_metadir)" || list=; \
Packit 130fc8
	if test -n "$$list"; then \
Packit 130fc8
	  echo " $(MKDIR_P) '$(DESTDIR)$(installed_test_metadir)'"; \
Packit 130fc8
	  $(MKDIR_P) "$(DESTDIR)$(installed_test_metadir)" || exit 1; \
Packit 130fc8
	fi; \
Packit 130fc8
	for p in $$list; do \
Packit 130fc8
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
Packit 130fc8
	  echo "$$d$$p"; \
Packit 130fc8
	done | $(am__base_list) | \
Packit 130fc8
	while read files; do \
Packit 130fc8
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(installed_test_metadir)'"; \
Packit 130fc8
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(installed_test_metadir)" || exit $$?; \
Packit 130fc8
	done
Packit 130fc8
Packit 130fc8
uninstall-installed_test_metaDATA:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(installed_test_meta_DATA)'; test -n "$(installed_test_metadir)" || list=; \
Packit 130fc8
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
Packit 130fc8
	dir='$(DESTDIR)$(installed_test_metadir)'; $(am__uninstall_files_from_dir)
Packit 130fc8
install-installed_test_testDATA: $(installed_test_test_DATA)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(installed_test_test_DATA)'; test -n "$(installed_test_testdir)" || list=; \
Packit 130fc8
	if test -n "$$list"; then \
Packit 130fc8
	  echo " $(MKDIR_P) '$(DESTDIR)$(installed_test_testdir)'"; \
Packit 130fc8
	  $(MKDIR_P) "$(DESTDIR)$(installed_test_testdir)" || exit 1; \
Packit 130fc8
	fi; \
Packit 130fc8
	for p in $$list; do \
Packit 130fc8
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
Packit 130fc8
	  echo "$$d$$p"; \
Packit 130fc8
	done | $(am__base_list) | \
Packit 130fc8
	while read files; do \
Packit 130fc8
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(installed_test_testdir)'"; \
Packit 130fc8
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(installed_test_testdir)" || exit $$?; \
Packit 130fc8
	done
Packit 130fc8
Packit 130fc8
uninstall-installed_test_testDATA:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(installed_test_test_DATA)'; test -n "$(installed_test_testdir)" || list=; \
Packit 130fc8
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
Packit 130fc8
	dir='$(DESTDIR)$(installed_test_testdir)'; $(am__uninstall_files_from_dir)
Packit 130fc8
install-nodist_docDATA: $(nodist_doc_DATA)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(nodist_doc_DATA)'; test -n "$(docdir)" || list=; \
Packit 130fc8
	if test -n "$$list"; then \
Packit 130fc8
	  echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \
Packit 130fc8
	  $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \
Packit 130fc8
	fi; \
Packit 130fc8
	for p in $$list; do \
Packit 130fc8
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
Packit 130fc8
	  echo "$$d$$p"; \
Packit 130fc8
	done | $(am__base_list) | \
Packit 130fc8
	while read files; do \
Packit 130fc8
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \
Packit 130fc8
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \
Packit 130fc8
	done
Packit 130fc8
Packit 130fc8
uninstall-nodist_docDATA:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(nodist_doc_DATA)'; test -n "$(docdir)" || list=; \
Packit 130fc8
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
Packit 130fc8
	dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
Packit 130fc8
install-pkgconfigDATA: $(pkgconfig_DATA)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
Packit 130fc8
	if test -n "$$list"; then \
Packit 130fc8
	  echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
Packit 130fc8
	  $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
Packit 130fc8
	fi; \
Packit 130fc8
	for p in $$list; do \
Packit 130fc8
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
Packit 130fc8
	  echo "$$d$$p"; \
Packit 130fc8
	done | $(am__base_list) | \
Packit 130fc8
	while read files; do \
Packit 130fc8
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
Packit 130fc8
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
Packit 130fc8
	done
Packit 130fc8
Packit 130fc8
uninstall-pkgconfigDATA:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
Packit 130fc8
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
Packit 130fc8
	dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
Packit 130fc8
install-dbusincludeHEADERS: $(dbusinclude_HEADERS)
Packit 130fc8
	@$(NORMAL_INSTALL)
Packit 130fc8
	@list='$(dbusinclude_HEADERS)'; test -n "$(dbusincludedir)" || list=; \
Packit 130fc8
	if test -n "$$list"; then \
Packit 130fc8
	  echo " $(MKDIR_P) '$(DESTDIR)$(dbusincludedir)'"; \
Packit 130fc8
	  $(MKDIR_P) "$(DESTDIR)$(dbusincludedir)" || exit 1; \
Packit 130fc8
	fi; \
Packit 130fc8
	for p in $$list; do \
Packit 130fc8
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
Packit 130fc8
	  echo "$$d$$p"; \
Packit 130fc8
	done | $(am__base_list) | \
Packit 130fc8
	while read files; do \
Packit 130fc8
	  echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(dbusincludedir)'"; \
Packit 130fc8
	  $(INSTALL_HEADER) $$files "$(DESTDIR)$(dbusincludedir)" || exit $$?; \
Packit 130fc8
	done
Packit 130fc8
Packit 130fc8
uninstall-dbusincludeHEADERS:
Packit 130fc8
	@$(NORMAL_UNINSTALL)
Packit 130fc8
	@list='$(dbusinclude_HEADERS)'; test -n "$(dbusincludedir)" || list=; \
Packit 130fc8
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
Packit 130fc8
	dir='$(DESTDIR)$(dbusincludedir)'; $(am__uninstall_files_from_dir)
Packit 130fc8
Packit 130fc8
ID: $(am__tagged_files)
Packit 130fc8
	$(am__define_uniq_tagged_files); mkid -fID $$unique
Packit 130fc8
tags: tags-am
Packit 130fc8
TAGS: tags
Packit 130fc8
Packit 130fc8
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
Packit 130fc8
	set x; \
Packit 130fc8
	here=`pwd`; \
Packit 130fc8
	$(am__define_uniq_tagged_files); \
Packit 130fc8
	shift; \
Packit 130fc8
	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
Packit 130fc8
	  test -n "$$unique" || unique=$$empty_fix; \
Packit 130fc8
	  if test $$# -gt 0; then \
Packit 130fc8
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
Packit 130fc8
	      "$$@" $$unique; \
Packit 130fc8
	  else \
Packit 130fc8
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
Packit 130fc8
	      $$unique; \
Packit 130fc8
	  fi; \
Packit 130fc8
	fi
Packit 130fc8
ctags: ctags-am
Packit 130fc8
Packit 130fc8
CTAGS: ctags
Packit 130fc8
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
Packit 130fc8
	$(am__define_uniq_tagged_files); \
Packit 130fc8
	test -z "$(CTAGS_ARGS)$$unique" \
Packit 130fc8
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
Packit 130fc8
	     $$unique
Packit 130fc8
Packit 130fc8
GTAGS:
Packit 130fc8
	here=`$(am__cd) $(top_builddir) && pwd` \
Packit 130fc8
	  && $(am__cd) $(top_srcdir) \
Packit 130fc8
	  && gtags -i $(GTAGS_ARGS) "$$here"
Packit 130fc8
cscope: cscope.files
Packit 130fc8
	test ! -s cscope.files \
Packit 130fc8
	  || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
Packit 130fc8
clean-cscope:
Packit 130fc8
	-rm -f cscope.files
Packit 130fc8
cscope.files: clean-cscope cscopelist
Packit 130fc8
cscopelist: cscopelist-am
Packit 130fc8
Packit 130fc8
cscopelist-am: $(am__tagged_files)
Packit 130fc8
	list='$(am__tagged_files)'; \
Packit 130fc8
	case "$(srcdir)" in \
Packit 130fc8
	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
Packit 130fc8
	  *) sdir=$(subdir)/$(srcdir) ;; \
Packit 130fc8
	esac; \
Packit 130fc8
	for i in $$list; do \
Packit 130fc8
	  if test -f "$$i"; then \
Packit 130fc8
	    echo "$(subdir)/$$i"; \
Packit 130fc8
	  else \
Packit 130fc8
	    echo "$$sdir/$$i"; \
Packit 130fc8
	  fi; \
Packit 130fc8
	done >> $(top_builddir)/cscope.files
Packit 130fc8
Packit 130fc8
distclean-tags:
Packit 130fc8
	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
Packit 130fc8
	-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
Packit 130fc8
Packit 130fc8
# Recover from deleted '.trs' file; this should ensure that
Packit 130fc8
# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
Packit 130fc8
# both 'foo.log' and 'foo.trs'.  Break the recipe in two subshells
Packit 130fc8
# to avoid problems with "make -n".
Packit 130fc8
.log.trs:
Packit 130fc8
	rm -f $< $@
Packit 130fc8
	$(MAKE) $(AM_MAKEFLAGS) $<
Packit 130fc8
Packit 130fc8
# Leading 'am--fnord' is there to ensure the list of targets does not
Packit 130fc8
# expand to empty, as could happen e.g. with make check TESTS=''.
Packit 130fc8
am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
Packit 130fc8
am--force-recheck:
Packit 130fc8
	@:
Packit 130fc8
Packit 130fc8
$(TEST_SUITE_LOG): $(TEST_LOGS)
Packit 130fc8
	@$(am__set_TESTS_bases); \
Packit 130fc8
	am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
Packit 130fc8
	redo_bases=`for i in $$bases; do \
Packit 130fc8
	              am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
Packit 130fc8
	            done`; \
Packit 130fc8
	if test -n "$$redo_bases"; then \
Packit 130fc8
	  redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
Packit 130fc8
	  redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
Packit 130fc8
	  if $(am__make_dryrun); then :; else \
Packit 130fc8
	    rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
Packit 130fc8
	  fi; \
Packit 130fc8
	fi; \
Packit 130fc8
	if test -n "$$am__remaking_logs"; then \
Packit 130fc8
	  echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
Packit 130fc8
	       "recursion detected" >&2; \
Packit 130fc8
	elif test -n "$$redo_logs"; then \
Packit 130fc8
	  am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
Packit 130fc8
	fi; \
Packit 130fc8
	if $(am__make_dryrun); then :; else \
Packit 130fc8
	  st=0;  \
Packit 130fc8
	  errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
Packit 130fc8
	  for i in $$redo_bases; do \
Packit 130fc8
	    test -f $$i.trs && test -r $$i.trs \
Packit 130fc8
	      || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
Packit 130fc8
	    test -f $$i.log && test -r $$i.log \
Packit 130fc8
	      || { echo "$$errmsg $$i.log" >&2; st=1; }; \
Packit 130fc8
	  done; \
Packit 130fc8
	  test $$st -eq 0 || exit 1; \
Packit 130fc8
	fi
Packit 130fc8
	@$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
Packit 130fc8
	ws='[ 	]'; \
Packit 130fc8
	results=`for b in $$bases; do echo $$b.trs; done`; \
Packit 130fc8
	test -n "$$results" || results=/dev/null; \
Packit 130fc8
	all=`  grep "^$$ws*:test-result:"           $$results | wc -l`; \
Packit 130fc8
	pass=` grep "^$$ws*:test-result:$$ws*PASS"  $$results | wc -l`; \
Packit 130fc8
	fail=` grep "^$$ws*:test-result:$$ws*FAIL"  $$results | wc -l`; \
Packit 130fc8
	skip=` grep "^$$ws*:test-result:$$ws*SKIP"  $$results | wc -l`; \
Packit 130fc8
	xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
Packit 130fc8
	xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
Packit 130fc8
	error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
Packit 130fc8
	if test `expr $$fail + $$xpass + $$error` -eq 0; then \
Packit 130fc8
	  success=true; \
Packit 130fc8
	else \
Packit 130fc8
	  success=false; \
Packit 130fc8
	fi; \
Packit 130fc8
	br='==================='; br=$$br$$br$$br$$br; \
Packit 130fc8
	result_count () \
Packit 130fc8
	{ \
Packit 130fc8
	    if test x"$$1" = x"--maybe-color"; then \
Packit 130fc8
	      maybe_colorize=yes; \
Packit 130fc8
	    elif test x"$$1" = x"--no-color"; then \
Packit 130fc8
	      maybe_colorize=no; \
Packit 130fc8
	    else \
Packit 130fc8
	      echo "$@: invalid 'result_count' usage" >&2; exit 4; \
Packit 130fc8
	    fi; \
Packit 130fc8
	    shift; \
Packit 130fc8
	    desc=$$1 count=$$2; \
Packit 130fc8
	    if test $$maybe_colorize = yes && test $$count -gt 0; then \
Packit 130fc8
	      color_start=$$3 color_end=$$std; \
Packit 130fc8
	    else \
Packit 130fc8
	      color_start= color_end=; \
Packit 130fc8
	    fi; \
Packit 130fc8
	    echo "$${color_start}# $$desc $$count$${color_end}"; \
Packit 130fc8
	}; \
Packit 130fc8
	create_testsuite_report () \
Packit 130fc8
	{ \
Packit 130fc8
	  result_count $$1 "TOTAL:" $$all   "$$brg"; \
Packit 130fc8
	  result_count $$1 "PASS: " $$pass  "$$grn"; \
Packit 130fc8
	  result_count $$1 "SKIP: " $$skip  "$$blu"; \
Packit 130fc8
	  result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
Packit 130fc8
	  result_count $$1 "FAIL: " $$fail  "$$red"; \
Packit 130fc8
	  result_count $$1 "XPASS:" $$xpass "$$red"; \
Packit 130fc8
	  result_count $$1 "ERROR:" $$error "$$mgn"; \
Packit 130fc8
	}; \
Packit 130fc8
	{								\
Packit 130fc8
	  echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" |	\
Packit 130fc8
	    $(am__rst_title);						\
Packit 130fc8
	  create_testsuite_report --no-color;				\
Packit 130fc8
	  echo;								\
Packit 130fc8
	  echo ".. contents:: :depth: 2";				\
Packit 130fc8
	  echo;								\
Packit 130fc8
	  for b in $$bases; do echo $$b; done				\
Packit 130fc8
	    | $(am__create_global_log);					\
Packit 130fc8
	} >$(TEST_SUITE_LOG).tmp || exit 1;				\
Packit 130fc8
	mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG);			\
Packit 130fc8
	if $$success; then						\
Packit 130fc8
	  col="$$grn";							\
Packit 130fc8
	 else								\
Packit 130fc8
	  col="$$red";							\
Packit 130fc8
	  test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG);		\
Packit 130fc8
	fi;								\
Packit 130fc8
	echo "$${col}$$br$${std}"; 					\
Packit 130fc8
	echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}";	\
Packit 130fc8
	echo "$${col}$$br$${std}"; 					\
Packit 130fc8
	create_testsuite_report --maybe-color;				\
Packit 130fc8
	echo "$$col$$br$$std";						\
Packit 130fc8
	if $$success; then :; else					\
Packit 130fc8
	  echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}";		\
Packit 130fc8
	  if test -n "$(PACKAGE_BUGREPORT)"; then			\
Packit 130fc8
	    echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}";	\
Packit 130fc8
	  fi;								\
Packit 130fc8
	  echo "$$col$$br$$std";					\
Packit 130fc8
	fi;								\
Packit 130fc8
	$$success || exit 1
Packit 130fc8
Packit 130fc8
check-TESTS:
Packit 130fc8
	@list='$(RECHECK_LOGS)';           test -z "$$list" || rm -f $$list
Packit 130fc8
	@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
Packit 130fc8
	@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
Packit 130fc8
	@set +e; $(am__set_TESTS_bases); \
Packit 130fc8
	log_list=`for i in $$bases; do echo $$i.log; done`; \
Packit 130fc8
	trs_list=`for i in $$bases; do echo $$i.trs; done`; \
Packit 130fc8
	log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
Packit 130fc8
	$(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
Packit 130fc8
	exit $$?;
Packit 130fc8
recheck: all 
Packit 130fc8
	@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
Packit 130fc8
	@set +e; $(am__set_TESTS_bases); \
Packit 130fc8
	bases=`for i in $$bases; do echo $$i; done \
Packit 130fc8
	         | $(am__list_recheck_tests)` || exit 1; \
Packit 130fc8
	log_list=`for i in $$bases; do echo $$i.log; done`; \
Packit 130fc8
	log_list=`echo $$log_list`; \
Packit 130fc8
	$(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
Packit 130fc8
	        am__force_recheck=am--force-recheck \
Packit 130fc8
	        TEST_LOGS="$$log_list"; \
Packit 130fc8
	exit $$?
Packit 130fc8
test/test-import-repeatedly.log: test/test-import-repeatedly$(EXEEXT)
Packit 130fc8
	@p='test/test-import-repeatedly$(EXEEXT)'; \
Packit 130fc8
	b='test/test-import-repeatedly'; \
Packit 130fc8
	$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
Packit 130fc8
	--log-file $$b.log --trs-file $$b.trs \
Packit 130fc8
	$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
Packit 130fc8
	"$$tst" $(AM_TESTS_FD_REDIRECT)
Packit 130fc8
.sh.log:
Packit 130fc8
	@p='$<'; \
Packit 130fc8
	$(am__set_b); \
Packit 130fc8
	$(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \
Packit 130fc8
	--log-file $$b.log --trs-file $$b.trs \
Packit 130fc8
	$(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \
Packit 130fc8
	"$$tst" $(AM_TESTS_FD_REDIRECT)
Packit 130fc8
@am__EXEEXT_TRUE@.sh$(EXEEXT).log:
Packit 130fc8
@am__EXEEXT_TRUE@	@p='$<'; \
Packit 130fc8
@am__EXEEXT_TRUE@	$(am__set_b); \
Packit 130fc8
@am__EXEEXT_TRUE@	$(am__check_pre) $(SH_LOG_DRIVER) --test-name "$$f" \
Packit 130fc8
@am__EXEEXT_TRUE@	--log-file $$b.log --trs-file $$b.trs \
Packit 130fc8
@am__EXEEXT_TRUE@	$(am__common_driver_flags) $(AM_SH_LOG_DRIVER_FLAGS) $(SH_LOG_DRIVER_FLAGS) -- $(SH_LOG_COMPILE) \
Packit 130fc8
@am__EXEEXT_TRUE@	"$$tst" $(AM_TESTS_FD_REDIRECT)
Packit 130fc8
.py.log:
Packit 130fc8
	@p='$<'; \
Packit 130fc8
	$(am__set_b); \
Packit 130fc8
	$(am__check_pre) $(PY_LOG_DRIVER) --test-name "$$f" \
Packit 130fc8
	--log-file $$b.log --trs-file $$b.trs \
Packit 130fc8
	$(am__common_driver_flags) $(AM_PY_LOG_DRIVER_FLAGS) $(PY_LOG_DRIVER_FLAGS) -- $(PY_LOG_COMPILE) \
Packit 130fc8
	"$$tst" $(AM_TESTS_FD_REDIRECT)
Packit 130fc8
@am__EXEEXT_TRUE@.py$(EXEEXT).log:
Packit 130fc8
@am__EXEEXT_TRUE@	@p='$<'; \
Packit 130fc8
@am__EXEEXT_TRUE@	$(am__set_b); \
Packit 130fc8
@am__EXEEXT_TRUE@	$(am__check_pre) $(PY_LOG_DRIVER) --test-name "$$f" \
Packit 130fc8
@am__EXEEXT_TRUE@	--log-file $$b.log --trs-file $$b.trs \
Packit 130fc8
@am__EXEEXT_TRUE@	$(am__common_driver_flags) $(AM_PY_LOG_DRIVER_FLAGS) $(PY_LOG_DRIVER_FLAGS) -- $(PY_LOG_COMPILE) \
Packit 130fc8
@am__EXEEXT_TRUE@	"$$tst" $(AM_TESTS_FD_REDIRECT)
Packit 130fc8
Packit 130fc8
distdir: $(DISTFILES)
Packit 130fc8
	$(am__remove_distdir)
Packit 130fc8
	test -d "$(distdir)" || mkdir "$(distdir)"
Packit 130fc8
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
Packit 130fc8
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
Packit 130fc8
	list='$(DISTFILES)'; \
Packit 130fc8
	  dist_files=`for file in $$list; do echo $$file; done | \
Packit 130fc8
	  sed -e "s|^$$srcdirstrip/||;t" \
Packit 130fc8
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
Packit 130fc8
	case $$dist_files in \
Packit 130fc8
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
Packit 130fc8
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
Packit 130fc8
			   sort -u` ;; \
Packit 130fc8
	esac; \
Packit 130fc8
	for file in $$dist_files; do \
Packit 130fc8
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
Packit 130fc8
	  if test -d $$d/$$file; then \
Packit 130fc8
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
Packit 130fc8
	    if test -d "$(distdir)/$$file"; then \
Packit 130fc8
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
Packit 130fc8
	    fi; \
Packit 130fc8
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
Packit 130fc8
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
Packit 130fc8
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
Packit 130fc8
	    fi; \
Packit 130fc8
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
Packit 130fc8
	  else \
Packit 130fc8
	    test -f "$(distdir)/$$file" \
Packit 130fc8
	    || cp -p $$d/$$file "$(distdir)/$$file" \
Packit 130fc8
	    || exit 1; \
Packit 130fc8
	  fi; \
Packit 130fc8
	done
Packit 130fc8
	$(MAKE) $(AM_MAKEFLAGS) \
Packit 130fc8
	  top_distdir="$(top_distdir)" distdir="$(distdir)" \
Packit 130fc8
	  dist-hook
Packit 130fc8
	-test -n "$(am__skip_mode_fix)" \
Packit 130fc8
	|| find "$(distdir)" -type d ! -perm -755 \
Packit 130fc8
		-exec chmod u+rwx,go+rx {} \; -o \
Packit 130fc8
	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
Packit 130fc8
	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
Packit 130fc8
	  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
Packit 130fc8
	|| chmod -R a+r "$(distdir)"
Packit 130fc8
dist-gzip: distdir
Packit 130fc8
	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
Packit 130fc8
	$(am__post_remove_distdir)
Packit 130fc8
Packit 130fc8
dist-bzip2: distdir
Packit 130fc8
	tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
Packit 130fc8
	$(am__post_remove_distdir)
Packit 130fc8
Packit 130fc8
dist-lzip: distdir
Packit 130fc8
	tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
Packit 130fc8
	$(am__post_remove_distdir)
Packit 130fc8
Packit 130fc8
dist-xz: distdir
Packit 130fc8
	tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
Packit 130fc8
	$(am__post_remove_distdir)
Packit 130fc8
Packit 130fc8
dist-tarZ: distdir
Packit 130fc8
	@echo WARNING: "Support for distribution archives compressed with" \
Packit 130fc8
		       "legacy program 'compress' is deprecated." >&2
Packit 130fc8
	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
Packit 130fc8
	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
Packit 130fc8
	$(am__post_remove_distdir)
Packit 130fc8
Packit 130fc8
dist-shar: distdir
Packit 130fc8
	@echo WARNING: "Support for shar distribution archives is" \
Packit 130fc8
	               "deprecated." >&2
Packit 130fc8
	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
Packit 130fc8
	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
Packit 130fc8
	$(am__post_remove_distdir)
Packit 130fc8
Packit 130fc8
dist-zip: distdir
Packit 130fc8
	-rm -f $(distdir).zip
Packit 130fc8
	zip -rq $(distdir).zip $(distdir)
Packit 130fc8
	$(am__post_remove_distdir)
Packit 130fc8
Packit 130fc8
dist dist-all:
Packit 130fc8
	$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
Packit 130fc8
	$(am__post_remove_distdir)
Packit 130fc8
Packit 130fc8
# This target untars the dist file and tries a VPATH configuration.  Then
Packit 130fc8
# it guarantees that the distribution is self-contained by making another
Packit 130fc8
# tarfile.
Packit 130fc8
distcheck: dist
Packit 130fc8
	case '$(DIST_ARCHIVES)' in \
Packit 130fc8
	*.tar.gz*) \
Packit 130fc8
	  GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
Packit 130fc8
	*.tar.bz2*) \
Packit 130fc8
	  bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
Packit 130fc8
	*.tar.lz*) \
Packit 130fc8
	  lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
Packit 130fc8
	*.tar.xz*) \
Packit 130fc8
	  xz -dc $(distdir).tar.xz | $(am__untar) ;;\
Packit 130fc8
	*.tar.Z*) \
Packit 130fc8
	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
Packit 130fc8
	*.shar.gz*) \
Packit 130fc8
	  GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
Packit 130fc8
	*.zip*) \
Packit 130fc8
	  unzip $(distdir).zip ;;\
Packit 130fc8
	esac
Packit 130fc8
	chmod -R a-w $(distdir)
Packit 130fc8
	chmod u+w $(distdir)
Packit 130fc8
	mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
Packit 130fc8
	chmod a-w $(distdir)
Packit 130fc8
	test -d $(distdir)/_build || exit 0; \
Packit 130fc8
	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
Packit 130fc8
	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
Packit 130fc8
	  && am__cwd=`pwd` \
Packit 130fc8
	  && $(am__cd) $(distdir)/_build/sub \
Packit 130fc8
	  && ../../configure \
Packit 130fc8
	    $(AM_DISTCHECK_CONFIGURE_FLAGS) \
Packit 130fc8
	    $(DISTCHECK_CONFIGURE_FLAGS) \
Packit 130fc8
	    --srcdir=../.. --prefix="$$dc_install_base" \
Packit 130fc8
	  && $(MAKE) $(AM_MAKEFLAGS) \
Packit 130fc8
	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
Packit 130fc8
	  && $(MAKE) $(AM_MAKEFLAGS) check \
Packit 130fc8
	  && $(MAKE) $(AM_MAKEFLAGS) install \
Packit 130fc8
	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
Packit 130fc8
	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
Packit 130fc8
	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
Packit 130fc8
	        distuninstallcheck \
Packit 130fc8
	  && chmod -R a-w "$$dc_install_base" \
Packit 130fc8
	  && ({ \
Packit 130fc8
	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
Packit 130fc8
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
Packit 130fc8
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
Packit 130fc8
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
Packit 130fc8
	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
Packit 130fc8
	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
Packit 130fc8
	  && rm -rf "$$dc_destdir" \
Packit 130fc8
	  && $(MAKE) $(AM_MAKEFLAGS) dist \
Packit 130fc8
	  && rm -rf $(DIST_ARCHIVES) \
Packit 130fc8
	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
Packit 130fc8
	  && cd "$$am__cwd" \
Packit 130fc8
	  || exit 1
Packit 130fc8
	$(am__post_remove_distdir)
Packit 130fc8
	@(echo "$(distdir) archives ready for distribution: "; \
Packit 130fc8
	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
Packit 130fc8
	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
Packit 130fc8
distuninstallcheck:
Packit 130fc8
	@test -n '$(distuninstallcheck_dir)' || { \
Packit 130fc8
	  echo 'ERROR: trying to run $@ with an empty' \
Packit 130fc8
	       '$$(distuninstallcheck_dir)' >&2; \
Packit 130fc8
	  exit 1; \
Packit 130fc8
	}; \
Packit 130fc8
	$(am__cd) '$(distuninstallcheck_dir)' || { \
Packit 130fc8
	  echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
Packit 130fc8
	  exit 1; \
Packit 130fc8
	}; \
Packit 130fc8
	test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
Packit 130fc8
	   || { echo "ERROR: files left after uninstall:" ; \
Packit 130fc8
	        if test -n "$(DESTDIR)"; then \
Packit 130fc8
	          echo "  (check DESTDIR support)"; \
Packit 130fc8
	        fi ; \
Packit 130fc8
	        $(distuninstallcheck_listfiles) ; \
Packit 130fc8
	        exit 1; } >&2
Packit 130fc8
distcleancheck: distclean
Packit 130fc8
	@if test '$(srcdir)' = . ; then \
Packit 130fc8
	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
Packit 130fc8
	  exit 1 ; \
Packit 130fc8
	fi
Packit 130fc8
	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
Packit 130fc8
	  || { echo "ERROR: files left in build directory after distclean:" ; \
Packit 130fc8
	       $(distcleancheck_listfiles) ; \
Packit 130fc8
	       exit 1; } >&2
Packit 130fc8
check-am: all-am
Packit 130fc8
	$(MAKE) $(AM_MAKEFLAGS) check-TESTS check-local
Packit 130fc8
check: check-am
Packit 130fc8
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA) \
Packit 130fc8
		$(HEADERS) config.h
Packit 130fc8
installdirs:
Packit 130fc8
	for dir in "$(DESTDIR)$(installed_testdir)" "$(DESTDIR)$(pyexecdir)" "$(DESTDIR)$(installed_testdir)" "$(DESTDIR)$(installed_testdir)" "$(DESTDIR)$(installed_testdir)" "$(DESTDIR)$(pythondir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(installed_test_metadir)" "$(DESTDIR)$(installed_test_testdir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(dbusincludedir)"; do \
Packit 130fc8
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
Packit 130fc8
	done
Packit 130fc8
install: install-am
Packit 130fc8
install-exec: install-exec-am
Packit 130fc8
install-data: install-data-am
Packit 130fc8
uninstall: uninstall-am
Packit 130fc8
Packit 130fc8
install-am: all-am
Packit 130fc8
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
Packit 130fc8
Packit 130fc8
installcheck: installcheck-am
Packit 130fc8
install-strip:
Packit 130fc8
	if test -z '$(STRIP)'; then \
Packit 130fc8
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
Packit 130fc8
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
Packit 130fc8
	      install; \
Packit 130fc8
	else \
Packit 130fc8
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
Packit 130fc8
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
Packit 130fc8
	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
Packit 130fc8
	fi
Packit 130fc8
mostlyclean-generic:
Packit 130fc8
	-test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
Packit 130fc8
	-test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
Packit 130fc8
	-test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
Packit 130fc8
Packit 130fc8
clean-generic:
Packit 130fc8
	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
Packit 130fc8
Packit 130fc8
distclean-generic:
Packit 130fc8
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
Packit 130fc8
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
Packit 130fc8
	-rm -f _dbus_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
	-rm -f _dbus_bindings/$(am__dirstamp)
Packit 130fc8
	-rm -f _dbus_glib_bindings/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
	-rm -f _dbus_glib_bindings/$(am__dirstamp)
Packit 130fc8
	-rm -f test/$(DEPDIR)/$(am__dirstamp)
Packit 130fc8
	-rm -f test/$(am__dirstamp)
Packit 130fc8
Packit 130fc8
maintainer-clean-generic:
Packit 130fc8
	@echo "This command is intended for maintainers to use"
Packit 130fc8
	@echo "it deletes files that may require special tools to rebuild."
Packit 130fc8
@ENABLE_API_DOCS_FALSE@clean-local:
Packit 130fc8
clean: clean-am
Packit 130fc8
Packit 130fc8
clean-am: clean-generic clean-libtool clean-local \
Packit 130fc8
	clean-nobase_installed_testLTLIBRARIES \
Packit 130fc8
	clean-nobase_installed_testPROGRAMS clean-noinstLTLIBRARIES \
Packit 130fc8
	clean-noinstPROGRAMS clean-pyexecLTLIBRARIES mostlyclean-am
Packit 130fc8
Packit 130fc8
distclean: distclean-am
Packit 130fc8
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
Packit 130fc8
	-rm -rf _dbus_bindings/$(DEPDIR) _dbus_glib_bindings/$(DEPDIR) test/$(DEPDIR)
Packit 130fc8
	-rm -f Makefile
Packit 130fc8
distclean-am: clean-am distclean-compile distclean-generic \
Packit 130fc8
	distclean-hdr distclean-libtool distclean-tags
Packit 130fc8
Packit 130fc8
dvi: dvi-am
Packit 130fc8
Packit 130fc8
dvi-am:
Packit 130fc8
Packit 130fc8
html: html-am
Packit 130fc8
Packit 130fc8
html-am:
Packit 130fc8
Packit 130fc8
info: info-am
Packit 130fc8
Packit 130fc8
info-am:
Packit 130fc8
Packit 130fc8
install-data-am: install-dbusincludeHEADERS install-dist_docDATA \
Packit 130fc8
	install-installed_test_metaDATA \
Packit 130fc8
	install-installed_test_testDATA \
Packit 130fc8
	install-nobase_dist_installed_testPYTHON \
Packit 130fc8
	install-nobase_dist_installed_testSCRIPTS \
Packit 130fc8
	install-nobase_installed_testLTLIBRARIES \
Packit 130fc8
	install-nobase_installed_testPROGRAMS \
Packit 130fc8
	install-nobase_pythonPYTHON install-nodist_docDATA \
Packit 130fc8
	install-pkgconfigDATA
Packit 130fc8
Packit 130fc8
install-dvi: install-dvi-am
Packit 130fc8
Packit 130fc8
install-dvi-am:
Packit 130fc8
Packit 130fc8
install-exec-am: install-pyexecLTLIBRARIES
Packit 130fc8
Packit 130fc8
install-html: install-html-am
Packit 130fc8
Packit 130fc8
install-html-am:
Packit 130fc8
Packit 130fc8
install-info: install-info-am
Packit 130fc8
Packit 130fc8
install-info-am:
Packit 130fc8
Packit 130fc8
install-man:
Packit 130fc8
Packit 130fc8
install-pdf: install-pdf-am
Packit 130fc8
Packit 130fc8
install-pdf-am:
Packit 130fc8
Packit 130fc8
install-ps: install-ps-am
Packit 130fc8
Packit 130fc8
install-ps-am:
Packit 130fc8
Packit 130fc8
installcheck-am:
Packit 130fc8
Packit 130fc8
maintainer-clean: maintainer-clean-am
Packit 130fc8
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
Packit 130fc8
	-rm -rf $(top_srcdir)/autom4te.cache
Packit 130fc8
	-rm -rf _dbus_bindings/$(DEPDIR) _dbus_glib_bindings/$(DEPDIR) test/$(DEPDIR)
Packit 130fc8
	-rm -f Makefile
Packit 130fc8
maintainer-clean-am: distclean-am maintainer-clean-generic
Packit 130fc8
Packit 130fc8
mostlyclean: mostlyclean-am
Packit 130fc8
Packit 130fc8
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
Packit 130fc8
	mostlyclean-libtool
Packit 130fc8
Packit 130fc8
pdf: pdf-am
Packit 130fc8
Packit 130fc8
pdf-am:
Packit 130fc8
Packit 130fc8
ps: ps-am
Packit 130fc8
Packit 130fc8
ps-am:
Packit 130fc8
Packit 130fc8
uninstall-am: uninstall-dbusincludeHEADERS uninstall-dist_docDATA \
Packit 130fc8
	uninstall-installed_test_metaDATA \
Packit 130fc8
	uninstall-installed_test_testDATA \
Packit 130fc8
	uninstall-nobase_dist_installed_testPYTHON \
Packit 130fc8
	uninstall-nobase_dist_installed_testSCRIPTS \
Packit 130fc8
	uninstall-nobase_installed_testLTLIBRARIES \
Packit 130fc8
	uninstall-nobase_installed_testPROGRAMS \
Packit 130fc8
	uninstall-nobase_pythonPYTHON uninstall-nodist_docDATA \
Packit 130fc8
	uninstall-pkgconfigDATA uninstall-pyexecLTLIBRARIES
Packit 130fc8
Packit 130fc8
.MAKE: all check-am install-am install-strip
Packit 130fc8
Packit 130fc8
.PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-TESTS \
Packit 130fc8
	check-am check-local clean clean-cscope clean-generic \
Packit 130fc8
	clean-libtool clean-local \
Packit 130fc8
	clean-nobase_installed_testLTLIBRARIES \
Packit 130fc8
	clean-nobase_installed_testPROGRAMS clean-noinstLTLIBRARIES \
Packit 130fc8
	clean-noinstPROGRAMS clean-pyexecLTLIBRARIES cscope \
Packit 130fc8
	cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \
Packit 130fc8
	dist-gzip dist-hook dist-lzip dist-shar dist-tarZ dist-xz \
Packit 130fc8
	dist-zip distcheck distclean distclean-compile \
Packit 130fc8
	distclean-generic distclean-hdr distclean-libtool \
Packit 130fc8
	distclean-tags distcleancheck distdir distuninstallcheck dvi \
Packit 130fc8
	dvi-am html html-am info info-am install install-am \
Packit 130fc8
	install-data install-data-am install-dbusincludeHEADERS \
Packit 130fc8
	install-dist_docDATA install-dvi install-dvi-am install-exec \
Packit 130fc8
	install-exec-am install-html install-html-am install-info \
Packit 130fc8
	install-info-am install-installed_test_metaDATA \
Packit 130fc8
	install-installed_test_testDATA install-man \
Packit 130fc8
	install-nobase_dist_installed_testPYTHON \
Packit 130fc8
	install-nobase_dist_installed_testSCRIPTS \
Packit 130fc8
	install-nobase_installed_testLTLIBRARIES \
Packit 130fc8
	install-nobase_installed_testPROGRAMS \
Packit 130fc8
	install-nobase_pythonPYTHON install-nodist_docDATA install-pdf \
Packit 130fc8
	install-pdf-am install-pkgconfigDATA install-ps install-ps-am \
Packit 130fc8
	install-pyexecLTLIBRARIES install-strip installcheck \
Packit 130fc8
	installcheck-am installdirs maintainer-clean \
Packit 130fc8
	maintainer-clean-generic mostlyclean mostlyclean-compile \
Packit 130fc8
	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
Packit 130fc8
	recheck tags tags-am uninstall uninstall-am \
Packit 130fc8
	uninstall-dbusincludeHEADERS uninstall-dist_docDATA \
Packit 130fc8
	uninstall-installed_test_metaDATA \
Packit 130fc8
	uninstall-installed_test_testDATA \
Packit 130fc8
	uninstall-nobase_dist_installed_testPYTHON \
Packit 130fc8
	uninstall-nobase_dist_installed_testSCRIPTS \
Packit 130fc8
	uninstall-nobase_installed_testLTLIBRARIES \
Packit 130fc8
	uninstall-nobase_installed_testPROGRAMS \
Packit 130fc8
	uninstall-nobase_pythonPYTHON uninstall-nodist_docDATA \
Packit 130fc8
	uninstall-pkgconfigDATA uninstall-pyexecLTLIBRARIES
Packit 130fc8
Packit 130fc8
.PRECIOUS: Makefile
Packit 130fc8
Packit 130fc8
	tools/ci-build.sh \
Packit 130fc8
	$(NULL)
Packit 130fc8
check-local::
Packit 130fc8
	@fail=0; \
Packit 130fc8
	cd $(srcdir) || exit $$?; \
Packit 130fc8
	if test -n "$(check_misc_sources)"; then \
Packit 130fc8
		echo check-coding-style.mk: checking misc sources...; \
Packit 130fc8
		top_srcdir=$(abs_top_srcdir) \
Packit 130fc8
		sh $(abs_top_srcdir)/tools/check-whitespace.sh \
Packit 130fc8
			$(check_misc_sources) || fail=1; \
Packit 130fc8
	fi; \
Packit 130fc8
	if test -n "$(check_py_sources)"; then \
Packit 130fc8
		echo check-coding-style.mk: checking Python sources...; \
Packit 130fc8
		top_srcdir=$(abs_top_srcdir) \
Packit 130fc8
		sh $(abs_top_srcdir)/tools/check-py-style.sh \
Packit 130fc8
			$(check_py_sources) || fail=1; \
Packit 130fc8
	fi;\
Packit 130fc8
	if test -n "$(check_c_sources)"; then \
Packit 130fc8
		echo check-coding-style.mk: checking C sources...; \
Packit 130fc8
		top_srcdir=$(abs_top_srcdir) \
Packit 130fc8
		sh $(abs_top_srcdir)/tools/check-c-style.sh \
Packit 130fc8
			$(check_c_sources) || fail=1; \
Packit 130fc8
	fi;\
Packit 130fc8
	if test yes = "@ENABLE_CODING_STYLE_CHECKS@"; then \
Packit 130fc8
		exit "$$fail";\
Packit 130fc8
	else \
Packit 130fc8
		exit 0;\
Packit 130fc8
	fi
Packit 130fc8
Packit 130fc8
# === Tests ===
Packit 130fc8
Packit 130fc8
cross-test-compile: all
Packit 130fc8
Packit 130fc8
cross-test-server:
Packit 130fc8
	$(AM_TESTS_ENVIRONMENT) $(PYTHON) $(top_srcdir)/test/cross-test-server.py
Packit 130fc8
cross-test-client:
Packit 130fc8
	$(AM_TESTS_ENVIRONMENT) $(PYTHON) $(top_srcdir)/test/cross-test-client.py
Packit 130fc8
Packit 130fc8
$(noinst_DATA): test/%: test/%.in
Packit 130fc8
	@$(MKDIR_P) $(dir $@)
Packit 130fc8
	$(AM_V_GEN)$(SED) \
Packit 130fc8
		-e 's|[@]PYTHON[@]|$(PYTHON)|g' \
Packit 130fc8
		-e 's|[@]G_TEST_SRCDIR[@]|$(abs_top_srcdir)|g' \
Packit 130fc8
		-e 's|[@]G_TEST_BUILDDIR[@]|$(abs_top_builddir)|g' \
Packit 130fc8
		$< > $@
Packit 130fc8
Packit 130fc8
$(installed_test_test_data): test/installable/%: test/%.in
Packit 130fc8
	@$(MKDIR_P) $(dir $@)
Packit 130fc8
	$(AM_V_GEN)$(SED) \
Packit 130fc8
		-e 's|[@]PYTHON[@]|$(PYTHON)|g' \
Packit 130fc8
		-e 's|[@]G_TEST_SRCDIR[@]|$(installed_testdir)|g' \
Packit 130fc8
		-e 's|[@]G_TEST_BUILDDIR[@]|$(installed_testdir)|g' \
Packit 130fc8
		$< > $@
Packit 130fc8
Packit 130fc8
$(patsubst %,%.test,$(dist_test_py)): %.test: Makefile
Packit 130fc8
	$(AM_V_GEN) (echo '[Test]' > $@.tmp; \
Packit 130fc8
	echo 'Type=session' >> $@.tmp; \
Packit 130fc8
	echo 'Exec=$(installed_log_compiler) $(PYTHON) $(installed_testdir)/$*' >> $@.tmp; \
Packit 130fc8
	mv $@.tmp $@)
Packit 130fc8
Packit 130fc8
$(patsubst %,%.test,$(dist_test_sh)): %.test: Makefile
Packit 130fc8
	$(AM_V_GEN) (echo '[Test]' > $@.tmp; \
Packit 130fc8
	echo 'Type=session' >> $@.tmp; \
Packit 130fc8
	echo 'Exec=$(installed_log_compiler) $(installed_testdir)/$*' >> $@.tmp; \
Packit 130fc8
	mv $@.tmp $@)
Packit 130fc8
Packit 130fc8
$(patsubst %,%.test,$(test_programs)): %.test: Makefile
Packit 130fc8
	$(AM_V_GEN) (echo '[Test]' > $@.tmp; \
Packit 130fc8
	echo 'Type=session' >> $@.tmp; \
Packit 130fc8
	echo 'Exec=$(installed_log_compiler) $(installed_testdir)/$*$(EXEEXT)' >> $@.tmp; \
Packit 130fc8
	mv $@.tmp $@)
Packit 130fc8
Packit 130fc8
# === Documentation ===
Packit 130fc8
Packit 130fc8
@GENERATE_CHANGELOG_RULES@
Packit 130fc8
Packit 130fc8
dist-hook: dist-ChangeLog
Packit 130fc8
	echo $(VERSION) > $(distdir)/.version
Packit 130fc8
	touch $(distdir)/MANIFEST
Packit 130fc8
	touch $(distdir)/MANIFEST.in
Packit 130fc8
	( cd $(distdir) && find -type d -o -print ) | \
Packit 130fc8
		LC_ALL=C sort | \
Packit 130fc8
		$(SED) -e 's|^\./||' \
Packit 130fc8
		> $(distdir)/MANIFEST
Packit 130fc8
	sed -e 's/.*/include &/' < $(distdir)/MANIFEST > $(distdir)/MANIFEST.in
Packit 130fc8
Packit 130fc8
maintainer-upload:
Packit 130fc8
	rsync -tvpP --chmod=ugo=r $(DIST_ARCHIVES) $(DIST_ARCHIVES:%=%.asc) \
Packit 130fc8
	dbus.freedesktop.org:/srv/dbus.freedesktop.org/www/releases/dbus-python/
Packit 130fc8
Packit 130fc8
maintainer-update-website: _maintainer-update-apidocs \
Packit 130fc8
	_maintainer-update-htmldocs
Packit 130fc8
Packit 130fc8
@ENABLE_DOCS_TRUE@_maintainer-update-htmldocs: $(HTML_TXT_RSTDOCS) $(HTML_RSTDOCS)
Packit 130fc8
@ENABLE_DOCS_TRUE@	rsync -rtvzPp --chmod=Dg+s,ug+rwX,o=rX doc \
Packit 130fc8
@ENABLE_DOCS_TRUE@	$(patsubst %,$(srcdir)/%,$(RSTDOCS)) $(HTML_RSTDOCS) \
Packit 130fc8
@ENABLE_DOCS_TRUE@	dbus.freedesktop.org:/srv/dbus.freedesktop.org/www/doc/dbus-python/
Packit 130fc8
Packit 130fc8
@ENABLE_DOCS_TRUE@$(HTML_TXT_RSTDOCS) : %.html: %.txt
Packit 130fc8
@ENABLE_DOCS_TRUE@	$(INSTALL) -d doc
Packit 130fc8
@ENABLE_DOCS_TRUE@	$(RST2HTML) $(RST2HTMLFLAGS) $< $@
Packit 130fc8
@ENABLE_DOCS_TRUE@$(HTML_RSTDOCS) : %.html: %
Packit 130fc8
@ENABLE_DOCS_TRUE@	$(RST2HTML) $(RST2HTMLFLAGS) $< $@
Packit 130fc8
@ENABLE_DOCS_FALSE@_maintainer-update-htmldocs:
Packit 130fc8
@ENABLE_DOCS_FALSE@	@echo "*** Not updating the HTML docs on the website - install rst2html"
Packit 130fc8
@ENABLE_DOCS_FALSE@	@echo "*** from http://docutils.sourceforge.net/ and configure with "
Packit 130fc8
@ENABLE_DOCS_FALSE@	@echo "*** --enable-html-docs"
Packit 130fc8
Packit 130fc8
@ENABLE_API_DOCS_TRUE@all: api/index.html
Packit 130fc8
Packit 130fc8
@ENABLE_API_DOCS_TRUE@clean-local:
Packit 130fc8
@ENABLE_API_DOCS_TRUE@	rm -rf api
Packit 130fc8
Packit 130fc8
@ENABLE_API_DOCS_TRUE@api api/index.html: $(nobase_python_PYTHON) \
Packit 130fc8
@ENABLE_API_DOCS_TRUE@		    _dbus_bindings.la \
Packit 130fc8
@ENABLE_API_DOCS_TRUE@		    _dbus_glib_bindings.la
Packit 130fc8
@ENABLE_API_DOCS_TRUE@	rm -rf api
Packit 130fc8
@ENABLE_API_DOCS_TRUE@	mkdir api
Packit 130fc8
@ENABLE_API_DOCS_TRUE@	cd $(abs_top_srcdir) && \
Packit 130fc8
@ENABLE_API_DOCS_TRUE@	PYTHONPATH=$(APIDOC_PYTHONPATH) DBUS_PYTHON_NO_DEPRECATED=1 \
Packit 130fc8
@ENABLE_API_DOCS_TRUE@	$(PYTHON) -Wignore::DeprecationWarning \
Packit 130fc8
@ENABLE_API_DOCS_TRUE@	$(EPYDOC) -o $(abs_top_builddir)/api --html \
Packit 130fc8
@ENABLE_API_DOCS_TRUE@		--docformat restructuredtext -v \
Packit 130fc8
@ENABLE_API_DOCS_TRUE@		`find dbus -name '*.py' \
Packit 130fc8
@ENABLE_API_DOCS_TRUE@			| sed -e 's#/__init__\.py##g' \
Packit 130fc8
@ENABLE_API_DOCS_TRUE@				-e 's/\.py\>//g' -e 's#/#.#'g` \
Packit 130fc8
@ENABLE_API_DOCS_TRUE@		|| { rm -rf api; exit 1; }
Packit 130fc8
Packit 130fc8
@ENABLE_API_DOCS_TRUE@_maintainer-update-apidocs: api
Packit 130fc8
@ENABLE_API_DOCS_TRUE@	rsync -rtvzPp --chmod=Dg+s,ug+rwX,o=rX api/ \
Packit 130fc8
@ENABLE_API_DOCS_TRUE@	dbus.freedesktop.org:/srv/dbus.freedesktop.org/www/doc/dbus-python/api/
Packit 130fc8
@ENABLE_API_DOCS_FALSE@_maintainer-update-apidocs:
Packit 130fc8
@ENABLE_API_DOCS_FALSE@	@echo "*** Not updating the API docs on the website - install epydoc 3"
Packit 130fc8
@ENABLE_API_DOCS_FALSE@	@echo "*** alpha (or newer) and configure with --enable-api-docs"
Packit 130fc8
check-local::
Packit 130fc8
	@fail=0; \
Packit 130fc8
	cd $(srcdir) || exit $$?; \
Packit 130fc8
	if test -n "$(check_misc_sources)"; then \
Packit 130fc8
		echo check-coding-style.mk: checking misc sources...; \
Packit 130fc8
		top_srcdir=$(abs_top_srcdir) \
Packit 130fc8
		sh $(abs_top_srcdir)/tools/check-whitespace.sh \
Packit 130fc8
			$(check_misc_sources) || fail=1; \
Packit 130fc8
	fi; \
Packit 130fc8
	if test -n "$(check_py_sources)"; then \
Packit 130fc8
		echo check-coding-style.mk: checking Python sources...; \
Packit 130fc8
		top_srcdir=$(abs_top_srcdir) \
Packit 130fc8
		sh $(abs_top_srcdir)/tools/check-py-style.sh \
Packit 130fc8
			$(check_py_sources) || fail=1; \
Packit 130fc8
	fi;\
Packit 130fc8
	if test -n "$(check_c_sources)"; then \
Packit 130fc8
		echo check-coding-style.mk: checking C sources...; \
Packit 130fc8
		top_srcdir=$(abs_top_srcdir) \
Packit 130fc8
		sh $(abs_top_srcdir)/tools/check-c-style.sh \
Packit 130fc8
			$(check_c_sources) || fail=1; \
Packit 130fc8
	fi;\
Packit 130fc8
	if test yes = "@ENABLE_CODING_STYLE_CHECKS@"; then \
Packit 130fc8
		exit "$$fail";\
Packit 130fc8
	else \
Packit 130fc8
		exit 0;\
Packit 130fc8
	fi
Packit 130fc8
Packit 130fc8
.PHONY: cross-test-compile cross-test-server cross-test-client \
Packit 130fc8
	always-rebuild maintainer-update-website \
Packit 130fc8
	_maintainer-update-apidocs _maintainer-update-htmldocs \
Packit 130fc8
	maintainer-upload
Packit 130fc8
Packit 130fc8
# Tell versions [3.59,3.63) of GNU make to not export all variables.
Packit 130fc8
# Otherwise a system limit (for SysV at least) may be exceeded.
Packit 130fc8
.NOEXPORT: