Makefile.in revision eb411b4b
1# Makefile.in generated by automake 1.13.2 from Makefile.am.
2# @configure_input@
3
4# Copyright (C) 1994-2013 Free Software Foundation, Inc.
5
6# This Makefile.in is free software; the Free Software Foundation
7# gives unlimited permission to copy and/or distribute it,
8# with or without modifications, as long as this notice is preserved.
9
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13# PARTICULAR PURPOSE.
14
15@SET_MAKE@
16VPATH = @srcdir@
17am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
18am__make_running_with_option = \
19  case $${target_option-} in \
20      ?) ;; \
21      *) echo "am__make_running_with_option: internal error: invalid" \
22              "target option '$${target_option-}' specified" >&2; \
23         exit 1;; \
24  esac; \
25  has_opt=no; \
26  sane_makeflags=$$MAKEFLAGS; \
27  if $(am__is_gnu_make); then \
28    sane_makeflags=$$MFLAGS; \
29  else \
30    case $$MAKEFLAGS in \
31      *\\[\ \	]*) \
32        bs=\\; \
33        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
34          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
35    esac; \
36  fi; \
37  skip_next=no; \
38  strip_trailopt () \
39  { \
40    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
41  }; \
42  for flg in $$sane_makeflags; do \
43    test $$skip_next = yes && { skip_next=no; continue; }; \
44    case $$flg in \
45      *=*|--*) continue;; \
46        -*I) strip_trailopt 'I'; skip_next=yes;; \
47      -*I?*) strip_trailopt 'I';; \
48        -*O) strip_trailopt 'O'; skip_next=yes;; \
49      -*O?*) strip_trailopt 'O';; \
50        -*l) strip_trailopt 'l'; skip_next=yes;; \
51      -*l?*) strip_trailopt 'l';; \
52      -[dEDm]) skip_next=yes;; \
53      -[JT]) skip_next=yes;; \
54    esac; \
55    case $$flg in \
56      *$$target_option*) has_opt=yes; break;; \
57    esac; \
58  done; \
59  test $$has_opt = yes
60am__make_dryrun = (target_option=n; $(am__make_running_with_option))
61am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
62pkgdatadir = $(datadir)/@PACKAGE@
63pkgincludedir = $(includedir)/@PACKAGE@
64pkglibdir = $(libdir)/@PACKAGE@
65pkglibexecdir = $(libexecdir)/@PACKAGE@
66am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
67install_sh_DATA = $(install_sh) -c -m 644
68install_sh_PROGRAM = $(install_sh) -c
69install_sh_SCRIPT = $(install_sh) -c
70INSTALL_HEADER = $(INSTALL_DATA)
71transform = $(program_transform_name)
72NORMAL_INSTALL = :
73PRE_INSTALL = :
74POST_INSTALL = :
75NORMAL_UNINSTALL = :
76PRE_UNINSTALL = :
77POST_UNINSTALL = :
78build_triplet = @build@
79host_triplet = @host@
80subdir = modules/im
81DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
82ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
83am__aclocal_m4_deps = $(top_srcdir)/m4/ax_define_dir.m4 \
84	$(top_srcdir)/configure.ac
85am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
86	$(ACLOCAL_M4)
87mkinstalldirs = $(install_sh) -d
88CONFIG_HEADER = $(top_builddir)/src/config.h \
89	$(top_builddir)/include/X11/XlibConf.h
90CONFIG_CLEAN_FILES =
91CONFIG_CLEAN_VPATH_FILES =
92AM_V_P = $(am__v_P_@AM_V@)
93am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
94am__v_P_0 = false
95am__v_P_1 = :
96AM_V_GEN = $(am__v_GEN_@AM_V@)
97am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
98am__v_GEN_0 = @echo "  GEN     " $@;
99am__v_GEN_1 = 
100AM_V_at = $(am__v_at_@AM_V@)
101am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
102am__v_at_0 = @
103am__v_at_1 = 
104SOURCES =
105DIST_SOURCES =
106RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
107	ctags-recursive dvi-recursive html-recursive info-recursive \
108	install-data-recursive install-dvi-recursive \
109	install-exec-recursive install-html-recursive \
110	install-info-recursive install-pdf-recursive \
111	install-ps-recursive install-recursive installcheck-recursive \
112	installdirs-recursive pdf-recursive ps-recursive \
113	tags-recursive uninstall-recursive
114am__can_run_installinfo = \
115  case $$AM_UPDATE_INFO_DIR in \
116    n|no|NO) false;; \
117    *) (install-info --version) >/dev/null 2>&1;; \
118  esac
119RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
120  distclean-recursive maintainer-clean-recursive
121am__recursive_targets = \
122  $(RECURSIVE_TARGETS) \
123  $(RECURSIVE_CLEAN_TARGETS) \
124  $(am__extra_recursive_targets)
125AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
126	distdir
127am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
128# Read a list of newline-separated strings from the standard input,
129# and print each of them once, without duplicates.  Input order is
130# *not* preserved.
131am__uniquify_input = $(AWK) '\
132  BEGIN { nonempty = 0; } \
133  { items[$$0] = 1; nonempty = 1; } \
134  END { if (nonempty) { for (i in items) print i; }; } \
135'
136# Make sure the list of sources is unique.  This is necessary because,
137# e.g., the same source file might be shared among _SOURCES variables
138# for different programs/libraries.
139am__define_uniq_tagged_files = \
140  list='$(am__tagged_files)'; \
141  unique=`for i in $$list; do \
142    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
143  done | $(am__uniquify_input)`
144ETAGS = etags
145CTAGS = ctags
146DIST_SUBDIRS = $(SUBDIRS)
147DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
148am__relativize = \
149  dir0=`pwd`; \
150  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
151  sed_rest='s,^[^/]*/*,,'; \
152  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
153  sed_butlast='s,/*[^/]*$$,,'; \
154  while test -n "$$dir1"; do \
155    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
156    if test "$$first" != "."; then \
157      if test "$$first" = ".."; then \
158        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
159        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
160      else \
161        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
162        if test "$$first2" = "$$first"; then \
163          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
164        else \
165          dir2="../$$dir2"; \
166        fi; \
167        dir0="$$dir0"/"$$first"; \
168      fi; \
169    fi; \
170    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
171  done; \
172  reldir="$$dir2"
173ACLOCAL = @ACLOCAL@
174ADMIN_MAN_DIR = @ADMIN_MAN_DIR@
175ADMIN_MAN_SUFFIX = @ADMIN_MAN_SUFFIX@
176AMTAR = @AMTAR@
177AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
178APP_MAN_DIR = @APP_MAN_DIR@
179APP_MAN_SUFFIX = @APP_MAN_SUFFIX@
180AR = @AR@
181AUTOCONF = @AUTOCONF@
182AUTOHEADER = @AUTOHEADER@
183AUTOMAKE = @AUTOMAKE@
184AWK = @AWK@
185BASE_CFLAGS = @BASE_CFLAGS@
186BIGFONT_CFLAGS = @BIGFONT_CFLAGS@
187BIGFONT_LIBS = @BIGFONT_LIBS@
188CC = @CC@
189CCDEPMODE = @CCDEPMODE@
190CC_FOR_BUILD = @CC_FOR_BUILD@
191CFLAGS = @CFLAGS@
192CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
193CHANGELOG_CMD = @CHANGELOG_CMD@
194CPP = @CPP@
195CPPFLAGS = @CPPFLAGS@
196CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@
197CWARNFLAGS = @CWARNFLAGS@
198CYGPATH_W = @CYGPATH_W@
199DEFS = @DEFS@
200DEPDIR = @DEPDIR@
201DLLTOOL = @DLLTOOL@
202DRIVER_MAN_DIR = @DRIVER_MAN_DIR@
203DRIVER_MAN_SUFFIX = @DRIVER_MAN_SUFFIX@
204DSYMUTIL = @DSYMUTIL@
205DUMPBIN = @DUMPBIN@
206ECHO_C = @ECHO_C@
207ECHO_N = @ECHO_N@
208ECHO_T = @ECHO_T@
209EGREP = @EGREP@
210EXEEXT = @EXEEXT@
211FGREP = @FGREP@
212FILE_MAN_DIR = @FILE_MAN_DIR@
213FILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@
214FOP = @FOP@
215GREP = @GREP@
216I18N_MODULE_LIBS = @I18N_MODULE_LIBS@
217INSTALL = @INSTALL@
218INSTALL_CMD = @INSTALL_CMD@
219INSTALL_DATA = @INSTALL_DATA@
220INSTALL_PROGRAM = @INSTALL_PROGRAM@
221INSTALL_SCRIPT = @INSTALL_SCRIPT@
222INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
223KEYSYMDEFS = @KEYSYMDEFS@
224LAUNCHD = @LAUNCHD@
225LD = @LD@
226LDFLAGS = @LDFLAGS@
227LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@
228LIBOBJS = @LIBOBJS@
229LIBS = @LIBS@
230LIBTOOL = @LIBTOOL@
231LIB_MAN_DIR = @LIB_MAN_DIR@
232LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@
233LINT = @LINT@
234LINTLIB = @LINTLIB@
235LINT_FLAGS = @LINT_FLAGS@
236LIPO = @LIPO@
237LN_S = @LN_S@
238LTLIBOBJS = @LTLIBOBJS@
239MAKEINFO = @MAKEINFO@
240MALLOC_ZERO_CFLAGS = @MALLOC_ZERO_CFLAGS@
241MANIFEST_TOOL = @MANIFEST_TOOL@
242MAN_SUBSTS = @MAN_SUBSTS@
243MISC_MAN_DIR = @MISC_MAN_DIR@
244MISC_MAN_SUFFIX = @MISC_MAN_SUFFIX@
245MKDIR_P = @MKDIR_P@
246NM = @NM@
247NMEDIT = @NMEDIT@
248OBJDUMP = @OBJDUMP@
249OBJEXT = @OBJEXT@
250OTOOL = @OTOOL@
251OTOOL64 = @OTOOL64@
252PACKAGE = @PACKAGE@
253PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
254PACKAGE_NAME = @PACKAGE_NAME@
255PACKAGE_STRING = @PACKAGE_STRING@
256PACKAGE_TARNAME = @PACKAGE_TARNAME@
257PACKAGE_URL = @PACKAGE_URL@
258PACKAGE_VERSION = @PACKAGE_VERSION@
259PATH_SEPARATOR = @PATH_SEPARATOR@
260PERL = @PERL@
261PKG_CONFIG = @PKG_CONFIG@
262RANLIB = @RANLIB@
263RAWCPP = @RAWCPP@
264RAWCPPFLAGS = @RAWCPPFLAGS@
265SED = @SED@
266SET_MAKE = @SET_MAKE@
267SHELL = @SHELL@
268STRICT_CFLAGS = @STRICT_CFLAGS@
269STRIP = @STRIP@
270STYLESHEET_SRCDIR = @STYLESHEET_SRCDIR@
271VERSION = @VERSION@
272WCHAR32 = @WCHAR32@
273X11_CFLAGS = @X11_CFLAGS@
274X11_DATADIR = @X11_DATADIR@
275X11_EXTRA_DEPS = @X11_EXTRA_DEPS@
276X11_LIBDIR = @X11_LIBDIR@
277X11_LIBS = @X11_LIBS@
278X11_LOCALEDATADIR = @X11_LOCALEDATADIR@
279X11_LOCALEDIR = @X11_LOCALEDIR@
280X11_LOCALELIBDIR = @X11_LOCALELIBDIR@
281XERRORDB = @XERRORDB@
282XKBPROTO_REQUIRES = @XKBPROTO_REQUIRES@
283XKEYSYMDB = @XKEYSYMDB@
284XLOCALEDATADIR = @XLOCALEDATADIR@
285XLOCALEDIR = @XLOCALEDIR@
286XLOCALELIBDIR = @XLOCALELIBDIR@
287XMALLOC_ZERO_CFLAGS = @XMALLOC_ZERO_CFLAGS@
288XMLTO = @XMLTO@
289XORG_MAN_PAGE = @XORG_MAN_PAGE@
290XORG_SGML_PATH = @XORG_SGML_PATH@
291XSLTPROC = @XSLTPROC@
292XSL_STYLESHEET = @XSL_STYLESHEET@
293XTHREADLIB = @XTHREADLIB@
294XTHREAD_CFLAGS = @XTHREAD_CFLAGS@
295XTMALLOC_ZERO_CFLAGS = @XTMALLOC_ZERO_CFLAGS@
296abs_builddir = @abs_builddir@
297abs_srcdir = @abs_srcdir@
298abs_top_builddir = @abs_top_builddir@
299abs_top_srcdir = @abs_top_srcdir@
300ac_ct_AR = @ac_ct_AR@
301ac_ct_CC = @ac_ct_CC@
302ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
303am__include = @am__include@
304am__leading_dot = @am__leading_dot@
305am__quote = @am__quote@
306am__tar = @am__tar@
307am__untar = @am__untar@
308bindir = @bindir@
309build = @build@
310build_alias = @build_alias@
311build_cpu = @build_cpu@
312build_os = @build_os@
313build_vendor = @build_vendor@
314builddir = @builddir@
315datadir = @datadir@
316datarootdir = @datarootdir@
317docdir = @docdir@
318dvidir = @dvidir@
319exec_prefix = @exec_prefix@
320host = @host@
321host_alias = @host_alias@
322host_cpu = @host_cpu@
323host_os = @host_os@
324host_vendor = @host_vendor@
325htmldir = @htmldir@
326includedir = @includedir@
327infodir = @infodir@
328install_sh = @install_sh@
329libdir = @libdir@
330libexecdir = @libexecdir@
331localedir = @localedir@
332locales = @locales@
333localstatedir = @localstatedir@
334mandir = @mandir@
335mkdir_p = @mkdir_p@
336oldincludedir = @oldincludedir@
337pdfdir = @pdfdir@
338prefix = @prefix@
339program_transform_name = @program_transform_name@
340psdir = @psdir@
341sbindir = @sbindir@
342sharedstatedir = @sharedstatedir@
343srcdir = @srcdir@
344sysconfdir = @sysconfdir@
345target_alias = @target_alias@
346top_build_prefix = @top_build_prefix@
347top_builddir = @top_builddir@
348top_srcdir = @top_srcdir@
349SUBDIRS = ximcp
350all: all-recursive
351
352.SUFFIXES:
353$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
354	@for dep in $?; do \
355	  case '$(am__configure_deps)' in \
356	    *$$dep*) \
357	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
358	        && { if test -f $@; then exit 0; else break; fi; }; \
359	      exit 1;; \
360	  esac; \
361	done; \
362	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign modules/im/Makefile'; \
363	$(am__cd) $(top_srcdir) && \
364	  $(AUTOMAKE) --foreign modules/im/Makefile
365.PRECIOUS: Makefile
366Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
367	@case '$?' in \
368	  *config.status*) \
369	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
370	  *) \
371	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
372	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
373	esac;
374
375$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
376	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
377
378$(top_srcdir)/configure:  $(am__configure_deps)
379	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
380$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
381	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
382$(am__aclocal_m4_deps):
383
384mostlyclean-libtool:
385	-rm -f *.lo
386
387clean-libtool:
388	-rm -rf .libs _libs
389
390# This directory's subdirectories are mostly independent; you can cd
391# into them and run 'make' without going through this Makefile.
392# To change the values of 'make' variables: instead of editing Makefiles,
393# (1) if the variable is set in 'config.status', edit 'config.status'
394#     (which will cause the Makefiles to be regenerated when you run 'make');
395# (2) otherwise, pass the desired values on the 'make' command line.
396$(am__recursive_targets):
397	@fail=; \
398	if $(am__make_keepgoing); then \
399	  failcom='fail=yes'; \
400	else \
401	  failcom='exit 1'; \
402	fi; \
403	dot_seen=no; \
404	target=`echo $@ | sed s/-recursive//`; \
405	case "$@" in \
406	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
407	  *) list='$(SUBDIRS)' ;; \
408	esac; \
409	for subdir in $$list; do \
410	  echo "Making $$target in $$subdir"; \
411	  if test "$$subdir" = "."; then \
412	    dot_seen=yes; \
413	    local_target="$$target-am"; \
414	  else \
415	    local_target="$$target"; \
416	  fi; \
417	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
418	  || eval $$failcom; \
419	done; \
420	if test "$$dot_seen" = "no"; then \
421	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
422	fi; test -z "$$fail"
423
424ID: $(am__tagged_files)
425	$(am__define_uniq_tagged_files); mkid -fID $$unique
426tags: tags-recursive
427TAGS: tags
428
429tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
430	set x; \
431	here=`pwd`; \
432	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
433	  include_option=--etags-include; \
434	  empty_fix=.; \
435	else \
436	  include_option=--include; \
437	  empty_fix=; \
438	fi; \
439	list='$(SUBDIRS)'; for subdir in $$list; do \
440	  if test "$$subdir" = .; then :; else \
441	    test ! -f $$subdir/TAGS || \
442	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
443	  fi; \
444	done; \
445	$(am__define_uniq_tagged_files); \
446	shift; \
447	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
448	  test -n "$$unique" || unique=$$empty_fix; \
449	  if test $$# -gt 0; then \
450	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
451	      "$$@" $$unique; \
452	  else \
453	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
454	      $$unique; \
455	  fi; \
456	fi
457ctags: ctags-recursive
458
459CTAGS: ctags
460ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
461	$(am__define_uniq_tagged_files); \
462	test -z "$(CTAGS_ARGS)$$unique" \
463	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
464	     $$unique
465
466GTAGS:
467	here=`$(am__cd) $(top_builddir) && pwd` \
468	  && $(am__cd) $(top_srcdir) \
469	  && gtags -i $(GTAGS_ARGS) "$$here"
470cscopelist: cscopelist-recursive
471
472cscopelist-am: $(am__tagged_files)
473	list='$(am__tagged_files)'; \
474	case "$(srcdir)" in \
475	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
476	  *) sdir=$(subdir)/$(srcdir) ;; \
477	esac; \
478	for i in $$list; do \
479	  if test -f "$$i"; then \
480	    echo "$(subdir)/$$i"; \
481	  else \
482	    echo "$$sdir/$$i"; \
483	  fi; \
484	done >> $(top_builddir)/cscope.files
485
486distclean-tags:
487	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
488
489distdir: $(DISTFILES)
490	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
491	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
492	list='$(DISTFILES)'; \
493	  dist_files=`for file in $$list; do echo $$file; done | \
494	  sed -e "s|^$$srcdirstrip/||;t" \
495	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
496	case $$dist_files in \
497	  */*) $(MKDIR_P) `echo "$$dist_files" | \
498			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
499			   sort -u` ;; \
500	esac; \
501	for file in $$dist_files; do \
502	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
503	  if test -d $$d/$$file; then \
504	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
505	    if test -d "$(distdir)/$$file"; then \
506	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
507	    fi; \
508	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
509	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
510	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
511	    fi; \
512	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
513	  else \
514	    test -f "$(distdir)/$$file" \
515	    || cp -p $$d/$$file "$(distdir)/$$file" \
516	    || exit 1; \
517	  fi; \
518	done
519	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
520	  if test "$$subdir" = .; then :; else \
521	    $(am__make_dryrun) \
522	      || test -d "$(distdir)/$$subdir" \
523	      || $(MKDIR_P) "$(distdir)/$$subdir" \
524	      || exit 1; \
525	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
526	    $(am__relativize); \
527	    new_distdir=$$reldir; \
528	    dir1=$$subdir; dir2="$(top_distdir)"; \
529	    $(am__relativize); \
530	    new_top_distdir=$$reldir; \
531	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
532	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
533	    ($(am__cd) $$subdir && \
534	      $(MAKE) $(AM_MAKEFLAGS) \
535	        top_distdir="$$new_top_distdir" \
536	        distdir="$$new_distdir" \
537		am__remove_distdir=: \
538		am__skip_length_check=: \
539		am__skip_mode_fix=: \
540	        distdir) \
541	      || exit 1; \
542	  fi; \
543	done
544check-am: all-am
545check: check-recursive
546all-am: Makefile
547installdirs: installdirs-recursive
548installdirs-am:
549install: install-recursive
550install-exec: install-exec-recursive
551install-data: install-data-recursive
552uninstall: uninstall-recursive
553
554install-am: all-am
555	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
556
557installcheck: installcheck-recursive
558install-strip:
559	if test -z '$(STRIP)'; then \
560	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
561	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
562	      install; \
563	else \
564	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
565	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
566	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
567	fi
568mostlyclean-generic:
569
570clean-generic:
571
572distclean-generic:
573	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
574	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
575
576maintainer-clean-generic:
577	@echo "This command is intended for maintainers to use"
578	@echo "it deletes files that may require special tools to rebuild."
579clean: clean-recursive
580
581clean-am: clean-generic clean-libtool mostlyclean-am
582
583distclean: distclean-recursive
584	-rm -f Makefile
585distclean-am: clean-am distclean-generic distclean-tags
586
587dvi: dvi-recursive
588
589dvi-am:
590
591html: html-recursive
592
593html-am:
594
595info: info-recursive
596
597info-am:
598
599install-data-am:
600
601install-dvi: install-dvi-recursive
602
603install-dvi-am:
604
605install-exec-am:
606
607install-html: install-html-recursive
608
609install-html-am:
610
611install-info: install-info-recursive
612
613install-info-am:
614
615install-man:
616
617install-pdf: install-pdf-recursive
618
619install-pdf-am:
620
621install-ps: install-ps-recursive
622
623install-ps-am:
624
625installcheck-am:
626
627maintainer-clean: maintainer-clean-recursive
628	-rm -f Makefile
629maintainer-clean-am: distclean-am maintainer-clean-generic
630
631mostlyclean: mostlyclean-recursive
632
633mostlyclean-am: mostlyclean-generic mostlyclean-libtool
634
635pdf: pdf-recursive
636
637pdf-am:
638
639ps: ps-recursive
640
641ps-am:
642
643uninstall-am:
644
645.MAKE: $(am__recursive_targets) install-am install-strip
646
647.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
648	check-am clean clean-generic clean-libtool cscopelist-am ctags \
649	ctags-am distclean distclean-generic distclean-libtool \
650	distclean-tags distdir dvi dvi-am html html-am info info-am \
651	install install-am install-data install-data-am install-dvi \
652	install-dvi-am install-exec install-exec-am install-html \
653	install-html-am install-info install-info-am install-man \
654	install-pdf install-pdf-am install-ps install-ps-am \
655	install-strip installcheck installcheck-am installdirs \
656	installdirs-am maintainer-clean maintainer-clean-generic \
657	mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
658	ps ps-am tags tags-am uninstall uninstall-am
659
660
661# Tell versions [3.59,3.63) of GNU make to not export all variables.
662# Otherwise a system limit (for SysV at least) may be exceeded.
663.NOEXPORT:
664