Makefile.in revision 54044362
170728a38Smrg# Makefile.in generated by automake 1.15 from Makefile.am.
28c9fbc29Smrg# @configure_input@
38c9fbc29Smrg
470728a38Smrg# Copyright (C) 1994-2014 Free Software Foundation, Inc.
570728a38Smrg
68c9fbc29Smrg# This Makefile.in is free software; the Free Software Foundation
78c9fbc29Smrg# gives unlimited permission to copy and/or distribute it,
88c9fbc29Smrg# with or without modifications, as long as this notice is preserved.
98c9fbc29Smrg
108c9fbc29Smrg# This program is distributed in the hope that it will be useful,
118c9fbc29Smrg# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
128c9fbc29Smrg# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
138c9fbc29Smrg# PARTICULAR PURPOSE.
148c9fbc29Smrg
158c9fbc29Smrg@SET_MAKE@
168c9fbc29Smrg
174cd6a3aeSmrg#
188c9fbc29Smrg#  Copyright 2005  Red Hat, Inc.
194cd6a3aeSmrg#
208c9fbc29Smrg#  Permission to use, copy, modify, distribute, and sell this software and its
218c9fbc29Smrg#  documentation for any purpose is hereby granted without fee, provided that
228c9fbc29Smrg#  the above copyright notice appear in all copies and that both that
238c9fbc29Smrg#  copyright notice and this permission notice appear in supporting
248c9fbc29Smrg#  documentation, and that the name of Red Hat not be used in
258c9fbc29Smrg#  advertising or publicity pertaining to distribution of the software without
268c9fbc29Smrg#  specific, written prior permission.  Red Hat makes no
278c9fbc29Smrg#  representations about the suitability of this software for any purpose.  It
288c9fbc29Smrg#  is provided "as is" without express or implied warranty.
294cd6a3aeSmrg#
308c9fbc29Smrg#  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
318c9fbc29Smrg#  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
328c9fbc29Smrg#  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
338c9fbc29Smrg#  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
348c9fbc29Smrg#  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
358c9fbc29Smrg#  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
368c9fbc29Smrg#  PERFORMANCE OF THIS SOFTWARE.
378c9fbc29Smrg
388c9fbc29SmrgVPATH = @srcdir@
3970728a38Smrgam__is_gnu_make = { \
4070728a38Smrg  if test -z '$(MAKELEVEL)'; then \
4170728a38Smrg    false; \
4270728a38Smrg  elif test -n '$(MAKE_HOST)'; then \
4370728a38Smrg    true; \
4470728a38Smrg  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
4570728a38Smrg    true; \
4670728a38Smrg  else \
4770728a38Smrg    false; \
4870728a38Smrg  fi; \
4970728a38Smrg}
5070728a38Smrgam__make_running_with_option = \
5170728a38Smrg  case $${target_option-} in \
5270728a38Smrg      ?) ;; \
5370728a38Smrg      *) echo "am__make_running_with_option: internal error: invalid" \
5470728a38Smrg              "target option '$${target_option-}' specified" >&2; \
5570728a38Smrg         exit 1;; \
5670728a38Smrg  esac; \
5770728a38Smrg  has_opt=no; \
5870728a38Smrg  sane_makeflags=$$MAKEFLAGS; \
5970728a38Smrg  if $(am__is_gnu_make); then \
6070728a38Smrg    sane_makeflags=$$MFLAGS; \
6170728a38Smrg  else \
6270728a38Smrg    case $$MAKEFLAGS in \
6370728a38Smrg      *\\[\ \	]*) \
6470728a38Smrg        bs=\\; \
6570728a38Smrg        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
6670728a38Smrg          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
6770728a38Smrg    esac; \
6870728a38Smrg  fi; \
6970728a38Smrg  skip_next=no; \
7070728a38Smrg  strip_trailopt () \
7170728a38Smrg  { \
7270728a38Smrg    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
7370728a38Smrg  }; \
7470728a38Smrg  for flg in $$sane_makeflags; do \
7570728a38Smrg    test $$skip_next = yes && { skip_next=no; continue; }; \
7670728a38Smrg    case $$flg in \
7770728a38Smrg      *=*|--*) continue;; \
7870728a38Smrg        -*I) strip_trailopt 'I'; skip_next=yes;; \
7970728a38Smrg      -*I?*) strip_trailopt 'I';; \
8070728a38Smrg        -*O) strip_trailopt 'O'; skip_next=yes;; \
8170728a38Smrg      -*O?*) strip_trailopt 'O';; \
8270728a38Smrg        -*l) strip_trailopt 'l'; skip_next=yes;; \
8370728a38Smrg      -*l?*) strip_trailopt 'l';; \
8470728a38Smrg      -[dEDm]) skip_next=yes;; \
8570728a38Smrg      -[JT]) skip_next=yes;; \
8670728a38Smrg    esac; \
8770728a38Smrg    case $$flg in \
8870728a38Smrg      *$$target_option*) has_opt=yes; break;; \
8970728a38Smrg    esac; \
9070728a38Smrg  done; \
9170728a38Smrg  test $$has_opt = yes
9270728a38Smrgam__make_dryrun = (target_option=n; $(am__make_running_with_option))
9370728a38Smrgam__make_keepgoing = (target_option=k; $(am__make_running_with_option))
948c9fbc29Smrgpkgdatadir = $(datadir)/@PACKAGE@
958c9fbc29Smrgpkgincludedir = $(includedir)/@PACKAGE@
964e411241Smrgpkglibdir = $(libdir)/@PACKAGE@
974e411241Smrgpkglibexecdir = $(libexecdir)/@PACKAGE@
988c9fbc29Smrgam__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
998c9fbc29Smrginstall_sh_DATA = $(install_sh) -c -m 644
1008c9fbc29Smrginstall_sh_PROGRAM = $(install_sh) -c
1018c9fbc29Smrginstall_sh_SCRIPT = $(install_sh) -c
1028c9fbc29SmrgINSTALL_HEADER = $(INSTALL_DATA)
1038c9fbc29Smrgtransform = $(program_transform_name)
1048c9fbc29SmrgNORMAL_INSTALL = :
1058c9fbc29SmrgPRE_INSTALL = :
1068c9fbc29SmrgPOST_INSTALL = :
1078c9fbc29SmrgNORMAL_UNINSTALL = :
1088c9fbc29SmrgPRE_UNINSTALL = :
1098c9fbc29SmrgPOST_UNINSTALL = :
1108c9fbc29Smrgbuild_triplet = @build@
1118c9fbc29Smrghost_triplet = @host@
1128c9fbc29Smrgsubdir = .
1138c9fbc29SmrgACLOCAL_M4 = $(top_srcdir)/aclocal.m4
1148c9fbc29Smrgam__aclocal_m4_deps = $(top_srcdir)/configure.ac
1158c9fbc29Smrgam__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
1168c9fbc29Smrg	$(ACLOCAL_M4)
11770728a38SmrgDIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
11870728a38Smrg	$(am__configure_deps) $(am__DIST_COMMON)
1198c9fbc29Smrgam__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
1208c9fbc29Smrg configure.lineno config.status.lineno
1218c9fbc29Smrgmkinstalldirs = $(install_sh) -d
1228c9fbc29SmrgCONFIG_HEADER = config.h
1238c9fbc29SmrgCONFIG_CLEAN_FILES = xkbfile.pc
1244e411241SmrgCONFIG_CLEAN_VPATH_FILES =
12570728a38SmrgAM_V_P = $(am__v_P_@AM_V@)
12670728a38Smrgam__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
12770728a38Smrgam__v_P_0 = false
12870728a38Smrgam__v_P_1 = :
12970728a38SmrgAM_V_GEN = $(am__v_GEN_@AM_V@)
13070728a38Smrgam__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
13170728a38Smrgam__v_GEN_0 = @echo "  GEN     " $@;
13270728a38Smrgam__v_GEN_1 = 
13370728a38SmrgAM_V_at = $(am__v_at_@AM_V@)
13470728a38Smrgam__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
1354e411241Smrgam__v_at_0 = @
13670728a38Smrgam__v_at_1 = 
1378c9fbc29SmrgSOURCES =
1388c9fbc29SmrgDIST_SOURCES =
13970728a38SmrgRECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
14070728a38Smrg	ctags-recursive dvi-recursive html-recursive info-recursive \
14170728a38Smrg	install-data-recursive install-dvi-recursive \
14270728a38Smrg	install-exec-recursive install-html-recursive \
14370728a38Smrg	install-info-recursive install-pdf-recursive \
14470728a38Smrg	install-ps-recursive install-recursive installcheck-recursive \
14570728a38Smrg	installdirs-recursive pdf-recursive ps-recursive \
14670728a38Smrg	tags-recursive uninstall-recursive
14770728a38Smrgam__can_run_installinfo = \
14870728a38Smrg  case $$AM_UPDATE_INFO_DIR in \
14970728a38Smrg    n|no|NO) false;; \
15070728a38Smrg    *) (install-info --version) >/dev/null 2>&1;; \
15170728a38Smrg  esac
1528c9fbc29Smrgam__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
1538c9fbc29Smrgam__vpath_adj = case $$p in \
1548c9fbc29Smrg    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
1558c9fbc29Smrg    *) f=$$p;; \
1568c9fbc29Smrg  esac;
1574e411241Smrgam__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
1584e411241Smrgam__install_max = 40
1594e411241Smrgam__nobase_strip_setup = \
1604e411241Smrg  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
1614e411241Smrgam__nobase_strip = \
1624e411241Smrg  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
1634e411241Smrgam__nobase_list = $(am__nobase_strip_setup); \
1644e411241Smrg  for p in $$list; do echo "$$p $$p"; done | \
1654e411241Smrg  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
1664e411241Smrg  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
1674e411241Smrg    if (++n[$$2] == $(am__install_max)) \
1684e411241Smrg      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
1694e411241Smrg    END { for (dir in files) print dir, files[dir] }'
1704e411241Smrgam__base_list = \
1714e411241Smrg  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
1724e411241Smrg  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
17370728a38Smrgam__uninstall_files_from_dir = { \
17470728a38Smrg  test -z "$$files" \
17570728a38Smrg    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
17670728a38Smrg    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
17770728a38Smrg         $(am__cd) "$$dir" && rm -f $$files; }; \
17870728a38Smrg  }
1798c9fbc29Smrgam__installdirs = "$(DESTDIR)$(pkgconfigdir)"
1808c9fbc29SmrgDATA = $(pkgconfig_DATA)
1818c9fbc29SmrgRECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
1828c9fbc29Smrg  distclean-recursive maintainer-clean-recursive
18370728a38Smrgam__recursive_targets = \
18470728a38Smrg  $(RECURSIVE_TARGETS) \
18570728a38Smrg  $(RECURSIVE_CLEAN_TARGETS) \
18670728a38Smrg  $(am__extra_recursive_targets)
18770728a38SmrgAM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
18870728a38Smrg	cscope distdir dist dist-all distcheck
18970728a38Smrgam__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
19070728a38Smrg	$(LISP)config.h.in
19170728a38Smrg# Read a list of newline-separated strings from the standard input,
19270728a38Smrg# and print each of them once, without duplicates.  Input order is
19370728a38Smrg# *not* preserved.
19470728a38Smrgam__uniquify_input = $(AWK) '\
19570728a38Smrg  BEGIN { nonempty = 0; } \
19670728a38Smrg  { items[$$0] = 1; nonempty = 1; } \
19770728a38Smrg  END { if (nonempty) { for (i in items) print i; }; } \
19870728a38Smrg'
19970728a38Smrg# Make sure the list of sources is unique.  This is necessary because,
20070728a38Smrg# e.g., the same source file might be shared among _SOURCES variables
20170728a38Smrg# for different programs/libraries.
20270728a38Smrgam__define_uniq_tagged_files = \
20370728a38Smrg  list='$(am__tagged_files)'; \
20470728a38Smrg  unique=`for i in $$list; do \
20570728a38Smrg    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
20670728a38Smrg  done | $(am__uniquify_input)`
2078c9fbc29SmrgETAGS = etags
2088c9fbc29SmrgCTAGS = ctags
20970728a38SmrgCSCOPE = cscope
2108c9fbc29SmrgDIST_SUBDIRS = $(SUBDIRS)
21170728a38Smrgam__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
21254044362Smrg	$(srcdir)/xkbfile.pc.in COPYING ChangeLog INSTALL compile \
21354044362Smrg	config.guess config.sub install-sh ltmain.sh missing
2148c9fbc29SmrgDISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
2158c9fbc29Smrgdistdir = $(PACKAGE)-$(VERSION)
2168c9fbc29Smrgtop_distdir = $(distdir)
2178c9fbc29Smrgam__remove_distdir = \
21870728a38Smrg  if test -d "$(distdir)"; then \
21970728a38Smrg    find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
22070728a38Smrg      && rm -rf "$(distdir)" \
22170728a38Smrg      || { sleep 5 && rm -rf "$(distdir)"; }; \
22270728a38Smrg  else :; fi
22370728a38Smrgam__post_remove_distdir = $(am__remove_distdir)
2244e411241Smrgam__relativize = \
2254e411241Smrg  dir0=`pwd`; \
2264e411241Smrg  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
2274e411241Smrg  sed_rest='s,^[^/]*/*,,'; \
2284e411241Smrg  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
2294e411241Smrg  sed_butlast='s,/*[^/]*$$,,'; \
2304e411241Smrg  while test -n "$$dir1"; do \
2314e411241Smrg    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
2324e411241Smrg    if test "$$first" != "."; then \
2334e411241Smrg      if test "$$first" = ".."; then \
2344e411241Smrg        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
2354e411241Smrg        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
2364e411241Smrg      else \
2374e411241Smrg        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
2384e411241Smrg        if test "$$first2" = "$$first"; then \
2394e411241Smrg          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
2404e411241Smrg        else \
2414e411241Smrg          dir2="../$$dir2"; \
2424e411241Smrg        fi; \
2434e411241Smrg        dir0="$$dir0"/"$$first"; \
2444e411241Smrg      fi; \
2454e411241Smrg    fi; \
2464e411241Smrg    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
2474e411241Smrg  done; \
2484e411241Smrg  reldir="$$dir2"
2498c9fbc29SmrgDIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
2508c9fbc29SmrgGZIP_ENV = --best
25170728a38SmrgDIST_TARGETS = dist-bzip2 dist-gzip
2528c9fbc29Smrgdistuninstallcheck_listfiles = find . -type f -print
25370728a38Smrgam__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
25470728a38Smrg  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
2554cd6a3aeSmrgdistcleancheck_listfiles = find . -type f -print
2568c9fbc29SmrgACLOCAL = @ACLOCAL@
2574e411241SmrgADMIN_MAN_DIR = @ADMIN_MAN_DIR@
2584e411241SmrgADMIN_MAN_SUFFIX = @ADMIN_MAN_SUFFIX@
2598c9fbc29SmrgAMTAR = @AMTAR@
2604e411241SmrgAM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
2614e411241SmrgAPP_MAN_DIR = @APP_MAN_DIR@
2624e411241SmrgAPP_MAN_SUFFIX = @APP_MAN_SUFFIX@
2638c9fbc29SmrgAR = @AR@
2648c9fbc29SmrgAUTOCONF = @AUTOCONF@
2658c9fbc29SmrgAUTOHEADER = @AUTOHEADER@
2668c9fbc29SmrgAUTOMAKE = @AUTOMAKE@
2678c9fbc29SmrgAWK = @AWK@
2684cd6a3aeSmrgBASE_CFLAGS = @BASE_CFLAGS@
2698c9fbc29SmrgCC = @CC@
2708c9fbc29SmrgCCDEPMODE = @CCDEPMODE@
2718c9fbc29SmrgCFLAGS = @CFLAGS@
2724e411241SmrgCHANGELOG_CMD = @CHANGELOG_CMD@
2738c9fbc29SmrgCPP = @CPP@
2748c9fbc29SmrgCPPFLAGS = @CPPFLAGS@
2754e411241SmrgCWARNFLAGS = @CWARNFLAGS@
2768c9fbc29SmrgCYGPATH_W = @CYGPATH_W@
2778c9fbc29SmrgDEFS = @DEFS@
2788c9fbc29SmrgDEPDIR = @DEPDIR@
2794cd6a3aeSmrgDLLTOOL = @DLLTOOL@
2804e411241SmrgDRIVER_MAN_DIR = @DRIVER_MAN_DIR@
2814e411241SmrgDRIVER_MAN_SUFFIX = @DRIVER_MAN_SUFFIX@
2824e411241SmrgDSYMUTIL = @DSYMUTIL@
2834cd6a3aeSmrgDUMPBIN = @DUMPBIN@
2848c9fbc29SmrgECHO_C = @ECHO_C@
2858c9fbc29SmrgECHO_N = @ECHO_N@
2868c9fbc29SmrgECHO_T = @ECHO_T@
2878c9fbc29SmrgEGREP = @EGREP@
2888c9fbc29SmrgEXEEXT = @EXEEXT@
2894cd6a3aeSmrgFGREP = @FGREP@
2904e411241SmrgFILE_MAN_DIR = @FILE_MAN_DIR@
2914e411241SmrgFILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@
2928c9fbc29SmrgGREP = @GREP@
2938c9fbc29SmrgINSTALL = @INSTALL@
2944cd6a3aeSmrgINSTALL_CMD = @INSTALL_CMD@
2958c9fbc29SmrgINSTALL_DATA = @INSTALL_DATA@
2968c9fbc29SmrgINSTALL_PROGRAM = @INSTALL_PROGRAM@
2978c9fbc29SmrgINSTALL_SCRIPT = @INSTALL_SCRIPT@
2988c9fbc29SmrgINSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
2994cd6a3aeSmrgLD = @LD@
3008c9fbc29SmrgLDFLAGS = @LDFLAGS@
3018c9fbc29SmrgLIBOBJS = @LIBOBJS@
3028c9fbc29SmrgLIBS = @LIBS@
3038c9fbc29SmrgLIBTOOL = @LIBTOOL@
3044e411241SmrgLIB_MAN_DIR = @LIB_MAN_DIR@
3054e411241SmrgLIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@
3064cd6a3aeSmrgLIPO = @LIPO@
3078c9fbc29SmrgLN_S = @LN_S@
3088c9fbc29SmrgLTLIBOBJS = @LTLIBOBJS@
30954044362SmrgLT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
3108c9fbc29SmrgMAKEINFO = @MAKEINFO@
3114cd6a3aeSmrgMANIFEST_TOOL = @MANIFEST_TOOL@
3124cd6a3aeSmrgMAN_SUBSTS = @MAN_SUBSTS@
3134e411241SmrgMISC_MAN_DIR = @MISC_MAN_DIR@
3144e411241SmrgMISC_MAN_SUFFIX = @MISC_MAN_SUFFIX@
3158c9fbc29SmrgMKDIR_P = @MKDIR_P@
3164cd6a3aeSmrgNM = @NM@
3174e411241SmrgNMEDIT = @NMEDIT@
3184cd6a3aeSmrgOBJDUMP = @OBJDUMP@
3198c9fbc29SmrgOBJEXT = @OBJEXT@
3204cd6a3aeSmrgOTOOL = @OTOOL@
3214cd6a3aeSmrgOTOOL64 = @OTOOL64@
3228c9fbc29SmrgPACKAGE = @PACKAGE@
3238c9fbc29SmrgPACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
3248c9fbc29SmrgPACKAGE_NAME = @PACKAGE_NAME@
3258c9fbc29SmrgPACKAGE_STRING = @PACKAGE_STRING@
3268c9fbc29SmrgPACKAGE_TARNAME = @PACKAGE_TARNAME@
3274cd6a3aeSmrgPACKAGE_URL = @PACKAGE_URL@
3288c9fbc29SmrgPACKAGE_VERSION = @PACKAGE_VERSION@
3298c9fbc29SmrgPATH_SEPARATOR = @PATH_SEPARATOR@
3308c9fbc29SmrgPKG_CONFIG = @PKG_CONFIG@
33154044362SmrgPKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
33254044362SmrgPKG_CONFIG_PATH = @PKG_CONFIG_PATH@
3338c9fbc29SmrgRANLIB = @RANLIB@
3344e411241SmrgSED = @SED@
3358c9fbc29SmrgSET_MAKE = @SET_MAKE@
3368c9fbc29SmrgSHELL = @SHELL@
3374cd6a3aeSmrgSTRICT_CFLAGS = @STRICT_CFLAGS@
3388c9fbc29SmrgSTRIP = @STRIP@
3398c9fbc29SmrgVERSION = @VERSION@
3408c9fbc29SmrgXKBFILE_CFLAGS = @XKBFILE_CFLAGS@
3418c9fbc29SmrgXKBFILE_LIBS = @XKBFILE_LIBS@
3424cd6a3aeSmrgXORG_MAN_PAGE = @XORG_MAN_PAGE@
3438c9fbc29Smrgabs_builddir = @abs_builddir@
3448c9fbc29Smrgabs_srcdir = @abs_srcdir@
3458c9fbc29Smrgabs_top_builddir = @abs_top_builddir@
3468c9fbc29Smrgabs_top_srcdir = @abs_top_srcdir@
3474cd6a3aeSmrgac_ct_AR = @ac_ct_AR@
3488c9fbc29Smrgac_ct_CC = @ac_ct_CC@
3494cd6a3aeSmrgac_ct_DUMPBIN = @ac_ct_DUMPBIN@
3508c9fbc29Smrgam__include = @am__include@
3518c9fbc29Smrgam__leading_dot = @am__leading_dot@
3528c9fbc29Smrgam__quote = @am__quote@
3538c9fbc29Smrgam__tar = @am__tar@
3548c9fbc29Smrgam__untar = @am__untar@
3558c9fbc29Smrgbindir = @bindir@
3568c9fbc29Smrgbuild = @build@
3578c9fbc29Smrgbuild_alias = @build_alias@
3588c9fbc29Smrgbuild_cpu = @build_cpu@
3598c9fbc29Smrgbuild_os = @build_os@
3608c9fbc29Smrgbuild_vendor = @build_vendor@
3618c9fbc29Smrgbuilddir = @builddir@
3628c9fbc29Smrgdatadir = @datadir@
3638c9fbc29Smrgdatarootdir = @datarootdir@
3648c9fbc29Smrgdocdir = @docdir@
3658c9fbc29Smrgdvidir = @dvidir@
3668c9fbc29Smrgexec_prefix = @exec_prefix@
3678c9fbc29Smrghost = @host@
3688c9fbc29Smrghost_alias = @host_alias@
3698c9fbc29Smrghost_cpu = @host_cpu@
3708c9fbc29Smrghost_os = @host_os@
3718c9fbc29Smrghost_vendor = @host_vendor@
3728c9fbc29Smrghtmldir = @htmldir@
3738c9fbc29Smrgincludedir = @includedir@
3748c9fbc29Smrginfodir = @infodir@
3758c9fbc29Smrginstall_sh = @install_sh@
3768c9fbc29Smrglibdir = @libdir@
3778c9fbc29Smrglibexecdir = @libexecdir@
3788c9fbc29Smrglocaledir = @localedir@
3798c9fbc29Smrglocalstatedir = @localstatedir@
3808c9fbc29Smrgmandir = @mandir@
3818c9fbc29Smrgmkdir_p = @mkdir_p@
3828c9fbc29Smrgoldincludedir = @oldincludedir@
3838c9fbc29Smrgpdfdir = @pdfdir@
3848c9fbc29Smrgprefix = @prefix@
3858c9fbc29Smrgprogram_transform_name = @program_transform_name@
3868c9fbc29Smrgpsdir = @psdir@
3878c9fbc29Smrgsbindir = @sbindir@
3888c9fbc29Smrgsharedstatedir = @sharedstatedir@
3898c9fbc29Smrgsrcdir = @srcdir@
3908c9fbc29Smrgsysconfdir = @sysconfdir@
3918c9fbc29Smrgtarget_alias = @target_alias@
3924e411241Smrgtop_build_prefix = @top_build_prefix@
3938c9fbc29Smrgtop_builddir = @top_builddir@
3948c9fbc29Smrgtop_srcdir = @top_srcdir@
3958c9fbc29SmrgSUBDIRS = src
3968c9fbc29Smrgpkgconfigdir = $(libdir)/pkgconfig
3978c9fbc29Smrgpkgconfig_DATA = xkbfile.pc
3984cd6a3aeSmrgMAINTAINERCLEANFILES = ChangeLog INSTALL
39954044362SmrgEXTRA_DIST = README.md
4008c9fbc29Smrgall: config.h
4018c9fbc29Smrg	$(MAKE) $(AM_MAKEFLAGS) all-recursive
4028c9fbc29Smrg
4038c9fbc29Smrg.SUFFIXES:
40470728a38Smrgam--refresh: Makefile
4058c9fbc29Smrg	@:
40670728a38Smrg$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
4078c9fbc29Smrg	@for dep in $?; do \
4088c9fbc29Smrg	  case '$(am__configure_deps)' in \
4098c9fbc29Smrg	    *$$dep*) \
4104cd6a3aeSmrg	      echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
4114cd6a3aeSmrg	      $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
4128c9fbc29Smrg		&& exit 0; \
4138c9fbc29Smrg	      exit 1;; \
4148c9fbc29Smrg	  esac; \
4158c9fbc29Smrg	done; \
4164cd6a3aeSmrg	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
4174e411241Smrg	$(am__cd) $(top_srcdir) && \
4184cd6a3aeSmrg	  $(AUTOMAKE) --foreign Makefile
4198c9fbc29SmrgMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
4208c9fbc29Smrg	@case '$?' in \
4218c9fbc29Smrg	  *config.status*) \
4228c9fbc29Smrg	    echo ' $(SHELL) ./config.status'; \
4238c9fbc29Smrg	    $(SHELL) ./config.status;; \
4248c9fbc29Smrg	  *) \
4258c9fbc29Smrg	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
4268c9fbc29Smrg	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
4278c9fbc29Smrg	esac;
4288c9fbc29Smrg
4298c9fbc29Smrg$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
4308c9fbc29Smrg	$(SHELL) ./config.status --recheck
4318c9fbc29Smrg
43270728a38Smrg$(top_srcdir)/configure:  $(am__configure_deps)
4334e411241Smrg	$(am__cd) $(srcdir) && $(AUTOCONF)
43470728a38Smrg$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
4354e411241Smrg	$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
4364e411241Smrg$(am__aclocal_m4_deps):
4378c9fbc29Smrg
4388c9fbc29Smrgconfig.h: stamp-h1
43970728a38Smrg	@test -f $@ || rm -f stamp-h1
44070728a38Smrg	@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
4418c9fbc29Smrg
4428c9fbc29Smrgstamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
4438c9fbc29Smrg	@rm -f stamp-h1
4448c9fbc29Smrg	cd $(top_builddir) && $(SHELL) ./config.status config.h
44570728a38Smrg$(srcdir)/config.h.in:  $(am__configure_deps) 
4464e411241Smrg	($(am__cd) $(top_srcdir) && $(AUTOHEADER))
4478c9fbc29Smrg	rm -f stamp-h1
4488c9fbc29Smrg	touch $@
4498c9fbc29Smrg
4508c9fbc29Smrgdistclean-hdr:
4518c9fbc29Smrg	-rm -f config.h stamp-h1
4528c9fbc29Smrgxkbfile.pc: $(top_builddir)/config.status $(srcdir)/xkbfile.pc.in
4538c9fbc29Smrg	cd $(top_builddir) && $(SHELL) ./config.status $@
4548c9fbc29Smrg
4558c9fbc29Smrgmostlyclean-libtool:
4568c9fbc29Smrg	-rm -f *.lo
4578c9fbc29Smrg
4588c9fbc29Smrgclean-libtool:
4598c9fbc29Smrg	-rm -rf .libs _libs
4608c9fbc29Smrg
4618c9fbc29Smrgdistclean-libtool:
4624e411241Smrg	-rm -f libtool config.lt
4638c9fbc29Smrginstall-pkgconfigDATA: $(pkgconfig_DATA)
4648c9fbc29Smrg	@$(NORMAL_INSTALL)
4654e411241Smrg	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
46670728a38Smrg	if test -n "$$list"; then \
46770728a38Smrg	  echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
46870728a38Smrg	  $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
46970728a38Smrg	fi; \
4704e411241Smrg	for p in $$list; do \
4718c9fbc29Smrg	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
4724e411241Smrg	  echo "$$d$$p"; \
4734e411241Smrg	done | $(am__base_list) | \
4744e411241Smrg	while read files; do \
4754e411241Smrg	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
4764e411241Smrg	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
4778c9fbc29Smrg	done
4788c9fbc29Smrg
4798c9fbc29Smrguninstall-pkgconfigDATA:
4808c9fbc29Smrg	@$(NORMAL_UNINSTALL)
4814e411241Smrg	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
4824e411241Smrg	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
48370728a38Smrg	dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
4848c9fbc29Smrg
4858c9fbc29Smrg# This directory's subdirectories are mostly independent; you can cd
48670728a38Smrg# into them and run 'make' without going through this Makefile.
48770728a38Smrg# To change the values of 'make' variables: instead of editing Makefiles,
48870728a38Smrg# (1) if the variable is set in 'config.status', edit 'config.status'
48970728a38Smrg#     (which will cause the Makefiles to be regenerated when you run 'make');
49070728a38Smrg# (2) otherwise, pass the desired values on the 'make' command line.
49170728a38Smrg$(am__recursive_targets):
49270728a38Smrg	@fail=; \
49370728a38Smrg	if $(am__make_keepgoing); then \
49470728a38Smrg	  failcom='fail=yes'; \
49570728a38Smrg	else \
49670728a38Smrg	  failcom='exit 1'; \
49770728a38Smrg	fi; \
4988c9fbc29Smrg	dot_seen=no; \
4998c9fbc29Smrg	target=`echo $@ | sed s/-recursive//`; \
50070728a38Smrg	case "$@" in \
50170728a38Smrg	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
50270728a38Smrg	  *) list='$(SUBDIRS)' ;; \
50370728a38Smrg	esac; \
50470728a38Smrg	for subdir in $$list; do \
5058c9fbc29Smrg	  echo "Making $$target in $$subdir"; \
5068c9fbc29Smrg	  if test "$$subdir" = "."; then \
5078c9fbc29Smrg	    dot_seen=yes; \
5088c9fbc29Smrg	    local_target="$$target-am"; \
5098c9fbc29Smrg	  else \
5108c9fbc29Smrg	    local_target="$$target"; \
5118c9fbc29Smrg	  fi; \
5124e411241Smrg	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
5138c9fbc29Smrg	  || eval $$failcom; \
5148c9fbc29Smrg	done; \
5158c9fbc29Smrg	if test "$$dot_seen" = "no"; then \
5168c9fbc29Smrg	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
5178c9fbc29Smrg	fi; test -z "$$fail"
5188c9fbc29Smrg
51970728a38SmrgID: $(am__tagged_files)
52070728a38Smrg	$(am__define_uniq_tagged_files); mkid -fID $$unique
52170728a38Smrgtags: tags-recursive
52270728a38SmrgTAGS: tags
5238c9fbc29Smrg
52470728a38Smrgtags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
5254e411241Smrg	set x; \
5268c9fbc29Smrg	here=`pwd`; \
5278c9fbc29Smrg	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
5288c9fbc29Smrg	  include_option=--etags-include; \
5298c9fbc29Smrg	  empty_fix=.; \
5308c9fbc29Smrg	else \
5318c9fbc29Smrg	  include_option=--include; \
5328c9fbc29Smrg	  empty_fix=; \
5338c9fbc29Smrg	fi; \
5348c9fbc29Smrg	list='$(SUBDIRS)'; for subdir in $$list; do \
5358c9fbc29Smrg	  if test "$$subdir" = .; then :; else \
5368c9fbc29Smrg	    test ! -f $$subdir/TAGS || \
5374e411241Smrg	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
5388c9fbc29Smrg	  fi; \
5398c9fbc29Smrg	done; \
54070728a38Smrg	$(am__define_uniq_tagged_files); \
5414e411241Smrg	shift; \
5424e411241Smrg	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
5438c9fbc29Smrg	  test -n "$$unique" || unique=$$empty_fix; \
5444e411241Smrg	  if test $$# -gt 0; then \
5454e411241Smrg	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
5464e411241Smrg	      "$$@" $$unique; \
5474e411241Smrg	  else \
5484e411241Smrg	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
5494e411241Smrg	      $$unique; \
5504e411241Smrg	  fi; \
5518c9fbc29Smrg	fi
55270728a38Smrgctags: ctags-recursive
55370728a38Smrg
55470728a38SmrgCTAGS: ctags
55570728a38Smrgctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
55670728a38Smrg	$(am__define_uniq_tagged_files); \
5574e411241Smrg	test -z "$(CTAGS_ARGS)$$unique" \
5588c9fbc29Smrg	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
5594e411241Smrg	     $$unique
5608c9fbc29Smrg
5618c9fbc29SmrgGTAGS:
5628c9fbc29Smrg	here=`$(am__cd) $(top_builddir) && pwd` \
5634e411241Smrg	  && $(am__cd) $(top_srcdir) \
5644e411241Smrg	  && gtags -i $(GTAGS_ARGS) "$$here"
56570728a38Smrgcscope: cscope.files
56670728a38Smrg	test ! -s cscope.files \
56770728a38Smrg	  || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
56870728a38Smrgclean-cscope:
56970728a38Smrg	-rm -f cscope.files
57070728a38Smrgcscope.files: clean-cscope cscopelist
57170728a38Smrgcscopelist: cscopelist-recursive
57270728a38Smrg
57370728a38Smrgcscopelist-am: $(am__tagged_files)
57470728a38Smrg	list='$(am__tagged_files)'; \
57570728a38Smrg	case "$(srcdir)" in \
57670728a38Smrg	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
57770728a38Smrg	  *) sdir=$(subdir)/$(srcdir) ;; \
57870728a38Smrg	esac; \
57970728a38Smrg	for i in $$list; do \
58070728a38Smrg	  if test -f "$$i"; then \
58170728a38Smrg	    echo "$(subdir)/$$i"; \
58270728a38Smrg	  else \
58370728a38Smrg	    echo "$$sdir/$$i"; \
58470728a38Smrg	  fi; \
58570728a38Smrg	done >> $(top_builddir)/cscope.files
5868c9fbc29Smrg
5878c9fbc29Smrgdistclean-tags:
5888c9fbc29Smrg	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
58970728a38Smrg	-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
5908c9fbc29Smrg
5918c9fbc29Smrgdistdir: $(DISTFILES)
5928c9fbc29Smrg	$(am__remove_distdir)
5934e411241Smrg	test -d "$(distdir)" || mkdir "$(distdir)"
5948c9fbc29Smrg	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
5958c9fbc29Smrg	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
5968c9fbc29Smrg	list='$(DISTFILES)'; \
5978c9fbc29Smrg	  dist_files=`for file in $$list; do echo $$file; done | \
5988c9fbc29Smrg	  sed -e "s|^$$srcdirstrip/||;t" \
5998c9fbc29Smrg	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
6008c9fbc29Smrg	case $$dist_files in \
6018c9fbc29Smrg	  */*) $(MKDIR_P) `echo "$$dist_files" | \
6028c9fbc29Smrg			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
6038c9fbc29Smrg			   sort -u` ;; \
6048c9fbc29Smrg	esac; \
6058c9fbc29Smrg	for file in $$dist_files; do \
6068c9fbc29Smrg	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
6078c9fbc29Smrg	  if test -d $$d/$$file; then \
6088c9fbc29Smrg	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
6094e411241Smrg	    if test -d "$(distdir)/$$file"; then \
6104e411241Smrg	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
6114e411241Smrg	    fi; \
6128c9fbc29Smrg	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
6134e411241Smrg	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
6144e411241Smrg	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
6158c9fbc29Smrg	    fi; \
6164e411241Smrg	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
6178c9fbc29Smrg	  else \
6184e411241Smrg	    test -f "$(distdir)/$$file" \
6194e411241Smrg	    || cp -p $$d/$$file "$(distdir)/$$file" \
6208c9fbc29Smrg	    || exit 1; \
6218c9fbc29Smrg	  fi; \
6228c9fbc29Smrg	done
6234e411241Smrg	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
6248c9fbc29Smrg	  if test "$$subdir" = .; then :; else \
62570728a38Smrg	    $(am__make_dryrun) \
62670728a38Smrg	      || test -d "$(distdir)/$$subdir" \
62770728a38Smrg	      || $(MKDIR_P) "$(distdir)/$$subdir" \
62870728a38Smrg	      || exit 1; \
6294e411241Smrg	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
6304e411241Smrg	    $(am__relativize); \
6314e411241Smrg	    new_distdir=$$reldir; \
6324e411241Smrg	    dir1=$$subdir; dir2="$(top_distdir)"; \
6334e411241Smrg	    $(am__relativize); \
6344e411241Smrg	    new_top_distdir=$$reldir; \
6354e411241Smrg	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
6364e411241Smrg	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
6374e411241Smrg	    ($(am__cd) $$subdir && \
6388c9fbc29Smrg	      $(MAKE) $(AM_MAKEFLAGS) \
6394e411241Smrg	        top_distdir="$$new_top_distdir" \
6404e411241Smrg	        distdir="$$new_distdir" \
6418c9fbc29Smrg		am__remove_distdir=: \
6428c9fbc29Smrg		am__skip_length_check=: \
6434e411241Smrg		am__skip_mode_fix=: \
6448c9fbc29Smrg	        distdir) \
6458c9fbc29Smrg	      || exit 1; \
6468c9fbc29Smrg	  fi; \
6478c9fbc29Smrg	done
6488c9fbc29Smrg	$(MAKE) $(AM_MAKEFLAGS) \
6498c9fbc29Smrg	  top_distdir="$(top_distdir)" distdir="$(distdir)" \
6508c9fbc29Smrg	  dist-hook
6514e411241Smrg	-test -n "$(am__skip_mode_fix)" \
6524cd6a3aeSmrg	|| find "$(distdir)" -type d ! -perm -755 \
6534cd6a3aeSmrg		-exec chmod u+rwx,go+rx {} \; -o \
6548c9fbc29Smrg	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
6558c9fbc29Smrg	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
6568c9fbc29Smrg	  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
6574e411241Smrg	|| chmod -R a+r "$(distdir)"
6588c9fbc29Smrgdist-gzip: distdir
6598c9fbc29Smrg	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
66070728a38Smrg	$(am__post_remove_distdir)
6618c9fbc29Smrgdist-bzip2: distdir
66270728a38Smrg	tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
66370728a38Smrg	$(am__post_remove_distdir)
6648c9fbc29Smrg
66570728a38Smrgdist-lzip: distdir
66670728a38Smrg	tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
66770728a38Smrg	$(am__post_remove_distdir)
6684e411241Smrg
6694e411241Smrgdist-xz: distdir
67070728a38Smrg	tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
67170728a38Smrg	$(am__post_remove_distdir)
6724e411241Smrg
6738c9fbc29Smrgdist-tarZ: distdir
67470728a38Smrg	@echo WARNING: "Support for distribution archives compressed with" \
67570728a38Smrg		       "legacy program 'compress' is deprecated." >&2
67670728a38Smrg	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
6778c9fbc29Smrg	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
67870728a38Smrg	$(am__post_remove_distdir)
6798c9fbc29Smrg
6808c9fbc29Smrgdist-shar: distdir
68170728a38Smrg	@echo WARNING: "Support for shar distribution archives is" \
68270728a38Smrg	               "deprecated." >&2
68370728a38Smrg	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
6848c9fbc29Smrg	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
68570728a38Smrg	$(am__post_remove_distdir)
6868c9fbc29Smrg
6878c9fbc29Smrgdist-zip: distdir
6888c9fbc29Smrg	-rm -f $(distdir).zip
6898c9fbc29Smrg	zip -rq $(distdir).zip $(distdir)
69070728a38Smrg	$(am__post_remove_distdir)
6918c9fbc29Smrg
69270728a38Smrgdist dist-all:
69370728a38Smrg	$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
69470728a38Smrg	$(am__post_remove_distdir)
6958c9fbc29Smrg
6968c9fbc29Smrg# This target untars the dist file and tries a VPATH configuration.  Then
6978c9fbc29Smrg# it guarantees that the distribution is self-contained by making another
6988c9fbc29Smrg# tarfile.
6998c9fbc29Smrgdistcheck: dist
7008c9fbc29Smrg	case '$(DIST_ARCHIVES)' in \
7018c9fbc29Smrg	*.tar.gz*) \
7024cd6a3aeSmrg	  GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
7038c9fbc29Smrg	*.tar.bz2*) \
7044cd6a3aeSmrg	  bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
70570728a38Smrg	*.tar.lz*) \
70670728a38Smrg	  lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
7074e411241Smrg	*.tar.xz*) \
7084e411241Smrg	  xz -dc $(distdir).tar.xz | $(am__untar) ;;\
7098c9fbc29Smrg	*.tar.Z*) \
7108c9fbc29Smrg	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
7118c9fbc29Smrg	*.shar.gz*) \
7124cd6a3aeSmrg	  GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
7138c9fbc29Smrg	*.zip*) \
7148c9fbc29Smrg	  unzip $(distdir).zip ;;\
7158c9fbc29Smrg	esac
71670728a38Smrg	chmod -R a-w $(distdir)
71770728a38Smrg	chmod u+w $(distdir)
71870728a38Smrg	mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
7198c9fbc29Smrg	chmod a-w $(distdir)
7204e411241Smrg	test -d $(distdir)/_build || exit 0; \
7218c9fbc29Smrg	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
7228c9fbc29Smrg	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
7234e411241Smrg	  && am__cwd=`pwd` \
72470728a38Smrg	  && $(am__cd) $(distdir)/_build/sub \
72570728a38Smrg	  && ../../configure \
72670728a38Smrg	    $(AM_DISTCHECK_CONFIGURE_FLAGS) \
7278c9fbc29Smrg	    $(DISTCHECK_CONFIGURE_FLAGS) \
72870728a38Smrg	    --srcdir=../.. --prefix="$$dc_install_base" \
7298c9fbc29Smrg	  && $(MAKE) $(AM_MAKEFLAGS) \
7308c9fbc29Smrg	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
7318c9fbc29Smrg	  && $(MAKE) $(AM_MAKEFLAGS) check \
7328c9fbc29Smrg	  && $(MAKE) $(AM_MAKEFLAGS) install \
7338c9fbc29Smrg	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
7348c9fbc29Smrg	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
7358c9fbc29Smrg	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
7368c9fbc29Smrg	        distuninstallcheck \
7378c9fbc29Smrg	  && chmod -R a-w "$$dc_install_base" \
7388c9fbc29Smrg	  && ({ \
7398c9fbc29Smrg	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
7408c9fbc29Smrg	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
7418c9fbc29Smrg	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
7428c9fbc29Smrg	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
7438c9fbc29Smrg	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
7448c9fbc29Smrg	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
7458c9fbc29Smrg	  && rm -rf "$$dc_destdir" \
7468c9fbc29Smrg	  && $(MAKE) $(AM_MAKEFLAGS) dist \
7478c9fbc29Smrg	  && rm -rf $(DIST_ARCHIVES) \
7484e411241Smrg	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
7494e411241Smrg	  && cd "$$am__cwd" \
7504e411241Smrg	  || exit 1
75170728a38Smrg	$(am__post_remove_distdir)
7528c9fbc29Smrg	@(echo "$(distdir) archives ready for distribution: "; \
7538c9fbc29Smrg	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
7548c9fbc29Smrg	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
7558c9fbc29Smrgdistuninstallcheck:
75670728a38Smrg	@test -n '$(distuninstallcheck_dir)' || { \
75770728a38Smrg	  echo 'ERROR: trying to run $@ with an empty' \
75870728a38Smrg	       '$$(distuninstallcheck_dir)' >&2; \
75970728a38Smrg	  exit 1; \
76070728a38Smrg	}; \
76170728a38Smrg	$(am__cd) '$(distuninstallcheck_dir)' || { \
76270728a38Smrg	  echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
76370728a38Smrg	  exit 1; \
76470728a38Smrg	}; \
76570728a38Smrg	test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
7668c9fbc29Smrg	   || { echo "ERROR: files left after uninstall:" ; \
7678c9fbc29Smrg	        if test -n "$(DESTDIR)"; then \
7688c9fbc29Smrg	          echo "  (check DESTDIR support)"; \
7698c9fbc29Smrg	        fi ; \
7708c9fbc29Smrg	        $(distuninstallcheck_listfiles) ; \
7718c9fbc29Smrg	        exit 1; } >&2
7728c9fbc29Smrgdistcleancheck: distclean
7738c9fbc29Smrg	@if test '$(srcdir)' = . ; then \
7748c9fbc29Smrg	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
7758c9fbc29Smrg	  exit 1 ; \
7768c9fbc29Smrg	fi
7778c9fbc29Smrg	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
7788c9fbc29Smrg	  || { echo "ERROR: files left in build directory after distclean:" ; \
7798c9fbc29Smrg	       $(distcleancheck_listfiles) ; \
7808c9fbc29Smrg	       exit 1; } >&2
7818c9fbc29Smrgcheck-am: all-am
7828c9fbc29Smrgcheck: check-recursive
7838c9fbc29Smrgall-am: Makefile $(DATA) config.h
7848c9fbc29Smrginstalldirs: installdirs-recursive
7858c9fbc29Smrginstalldirs-am:
7868c9fbc29Smrg	for dir in "$(DESTDIR)$(pkgconfigdir)"; do \
7878c9fbc29Smrg	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
7888c9fbc29Smrg	done
7898c9fbc29Smrginstall: install-recursive
7908c9fbc29Smrginstall-exec: install-exec-recursive
7918c9fbc29Smrginstall-data: install-data-recursive
7928c9fbc29Smrguninstall: uninstall-recursive
7938c9fbc29Smrg
7948c9fbc29Smrginstall-am: all-am
7958c9fbc29Smrg	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
7968c9fbc29Smrg
7978c9fbc29Smrginstallcheck: installcheck-recursive
7988c9fbc29Smrginstall-strip:
79970728a38Smrg	if test -z '$(STRIP)'; then \
80070728a38Smrg	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
80170728a38Smrg	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
80270728a38Smrg	      install; \
80370728a38Smrg	else \
80470728a38Smrg	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
80570728a38Smrg	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
80670728a38Smrg	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
80770728a38Smrg	fi
8088c9fbc29Smrgmostlyclean-generic:
8098c9fbc29Smrg
8108c9fbc29Smrgclean-generic:
8118c9fbc29Smrg
8128c9fbc29Smrgdistclean-generic:
8138c9fbc29Smrg	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
8144e411241Smrg	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
8158c9fbc29Smrg
8168c9fbc29Smrgmaintainer-clean-generic:
8178c9fbc29Smrg	@echo "This command is intended for maintainers to use"
8188c9fbc29Smrg	@echo "it deletes files that may require special tools to rebuild."
8198c9fbc29Smrg	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
8208c9fbc29Smrgclean: clean-recursive
8218c9fbc29Smrg
8228c9fbc29Smrgclean-am: clean-generic clean-libtool mostlyclean-am
8238c9fbc29Smrg
8248c9fbc29Smrgdistclean: distclean-recursive
8258c9fbc29Smrg	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
8268c9fbc29Smrg	-rm -f Makefile
8278c9fbc29Smrgdistclean-am: clean-am distclean-generic distclean-hdr \
8288c9fbc29Smrg	distclean-libtool distclean-tags
8298c9fbc29Smrg
8308c9fbc29Smrgdvi: dvi-recursive
8318c9fbc29Smrg
8328c9fbc29Smrgdvi-am:
8338c9fbc29Smrg
8348c9fbc29Smrghtml: html-recursive
8358c9fbc29Smrg
8364e411241Smrghtml-am:
8374e411241Smrg
8388c9fbc29Smrginfo: info-recursive
8398c9fbc29Smrg
8408c9fbc29Smrginfo-am:
8418c9fbc29Smrg
8428c9fbc29Smrginstall-data-am: install-pkgconfigDATA
8438c9fbc29Smrg
8448c9fbc29Smrginstall-dvi: install-dvi-recursive
8458c9fbc29Smrg
8464e411241Smrginstall-dvi-am:
8474e411241Smrg
8488c9fbc29Smrginstall-exec-am:
8498c9fbc29Smrg
8508c9fbc29Smrginstall-html: install-html-recursive
8518c9fbc29Smrg
8524e411241Smrginstall-html-am:
8534e411241Smrg
8548c9fbc29Smrginstall-info: install-info-recursive
8558c9fbc29Smrg
8564e411241Smrginstall-info-am:
8574e411241Smrg
8588c9fbc29Smrginstall-man:
8598c9fbc29Smrg
8608c9fbc29Smrginstall-pdf: install-pdf-recursive
8618c9fbc29Smrg
8624e411241Smrginstall-pdf-am:
8634e411241Smrg
8648c9fbc29Smrginstall-ps: install-ps-recursive
8658c9fbc29Smrg
8664e411241Smrginstall-ps-am:
8674e411241Smrg
8688c9fbc29Smrginstallcheck-am:
8698c9fbc29Smrg
8708c9fbc29Smrgmaintainer-clean: maintainer-clean-recursive
8718c9fbc29Smrg	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
8728c9fbc29Smrg	-rm -rf $(top_srcdir)/autom4te.cache
8738c9fbc29Smrg	-rm -f Makefile
8748c9fbc29Smrgmaintainer-clean-am: distclean-am maintainer-clean-generic
8758c9fbc29Smrg
8768c9fbc29Smrgmostlyclean: mostlyclean-recursive
8778c9fbc29Smrg
8788c9fbc29Smrgmostlyclean-am: mostlyclean-generic mostlyclean-libtool
8798c9fbc29Smrg
8808c9fbc29Smrgpdf: pdf-recursive
8818c9fbc29Smrg
8828c9fbc29Smrgpdf-am:
8838c9fbc29Smrg
8848c9fbc29Smrgps: ps-recursive
8858c9fbc29Smrg
8868c9fbc29Smrgps-am:
8878c9fbc29Smrg
8888c9fbc29Smrguninstall-am: uninstall-pkgconfigDATA
8898c9fbc29Smrg
89070728a38Smrg.MAKE: $(am__recursive_targets) all install-am install-strip
89170728a38Smrg
89270728a38Smrg.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
89370728a38Smrg	am--refresh check check-am clean clean-cscope clean-generic \
89470728a38Smrg	clean-libtool cscope cscopelist-am ctags ctags-am dist \
89570728a38Smrg	dist-all dist-bzip2 dist-gzip dist-hook dist-lzip dist-shar \
89670728a38Smrg	dist-tarZ dist-xz dist-zip distcheck distclean \
89770728a38Smrg	distclean-generic distclean-hdr distclean-libtool \
89870728a38Smrg	distclean-tags distcleancheck distdir distuninstallcheck dvi \
89970728a38Smrg	dvi-am html html-am info info-am install install-am \
90070728a38Smrg	install-data install-data-am install-dvi install-dvi-am \
90170728a38Smrg	install-exec install-exec-am install-html install-html-am \
90270728a38Smrg	install-info install-info-am install-man install-pdf \
90370728a38Smrg	install-pdf-am install-pkgconfigDATA install-ps install-ps-am \
90470728a38Smrg	install-strip installcheck installcheck-am installdirs \
90570728a38Smrg	installdirs-am maintainer-clean maintainer-clean-generic \
90670728a38Smrg	mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
90770728a38Smrg	ps ps-am tags tags-am uninstall uninstall-am \
90870728a38Smrg	uninstall-pkgconfigDATA
90970728a38Smrg
91070728a38Smrg.PRECIOUS: Makefile
9118c9fbc29Smrg
9128c9fbc29Smrg
9134cd6a3aeSmrg.PHONY: ChangeLog INSTALL
9144cd6a3aeSmrg
9154cd6a3aeSmrgINSTALL:
9164cd6a3aeSmrg	$(INSTALL_CMD)
9178c9fbc29Smrg
9188c9fbc29SmrgChangeLog:
9194e411241Smrg	$(CHANGELOG_CMD)
9208c9fbc29Smrg
9214cd6a3aeSmrgdist-hook: ChangeLog INSTALL
9224e411241Smrg
9238c9fbc29Smrg# Tell versions [3.59,3.63) of GNU make to not export all variables.
9248c9fbc29Smrg# Otherwise a system limit (for SysV at least) may be exceeded.
9258c9fbc29Smrg.NOEXPORT:
926