1# Makefile.in generated by automake 1.11.1 from Makefile.am.
2# @configure_input@
3
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
6# Inc.
7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.
10
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14# PARTICULAR PURPOSE.
15
16@SET_MAKE@
17
18VPATH = @srcdir@
19pkgdatadir = $(datadir)/@PACKAGE@
20pkgincludedir = $(includedir)/@PACKAGE@
21pkglibdir = $(libdir)/@PACKAGE@
22pkglibexecdir = $(libexecdir)/@PACKAGE@
23am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
24install_sh_DATA = $(install_sh) -c -m 644
25install_sh_PROGRAM = $(install_sh) -c
26install_sh_SCRIPT = $(install_sh) -c
27INSTALL_HEADER = $(INSTALL_DATA)
28transform = $(program_transform_name)
29NORMAL_INSTALL = :
30PRE_INSTALL = :
31POST_INSTALL = :
32NORMAL_UNINSTALL = :
33PRE_UNINSTALL = :
34POST_UNINSTALL = :
35build_triplet = @build@
36host_triplet = @host@
37subdir = .
38DIST_COMMON = README $(am__configure_deps) $(dist_pkgdata_DATA) \
39	$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
40	$(srcdir)/config.h.in $(top_srcdir)/configure AUTHORS COPYING \
41	ChangeLog INSTALL TODO config.guess config.sub depcomp \
42	install-sh ltmain.sh missing
43ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
44am__aclocal_m4_deps = $(top_srcdir)/configure.ac
45am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
46	$(ACLOCAL_M4)
47am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
48 configure.lineno config.status.lineno
49mkinstalldirs = $(install_sh) -d
50CONFIG_HEADER = config.h
51CONFIG_CLEAN_FILES =
52CONFIG_CLEAN_VPATH_FILES =
53SOURCES =
54DIST_SOURCES =
55RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
56	html-recursive info-recursive install-data-recursive \
57	install-dvi-recursive install-exec-recursive \
58	install-html-recursive install-info-recursive \
59	install-pdf-recursive install-ps-recursive install-recursive \
60	installcheck-recursive installdirs-recursive pdf-recursive \
61	ps-recursive uninstall-recursive
62am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
63am__vpath_adj = case $$p in \
64    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
65    *) f=$$p;; \
66  esac;
67am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
68am__install_max = 40
69am__nobase_strip_setup = \
70  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
71am__nobase_strip = \
72  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
73am__nobase_list = $(am__nobase_strip_setup); \
74  for p in $$list; do echo "$$p $$p"; done | \
75  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
76  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
77    if (++n[$$2] == $(am__install_max)) \
78      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
79    END { for (dir in files) print dir, files[dir] }'
80am__base_list = \
81  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
82  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
83am__installdirs = "$(DESTDIR)$(pkgdatadir)"
84DATA = $(dist_pkgdata_DATA)
85RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
86  distclean-recursive maintainer-clean-recursive
87AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
88	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
89	distdir dist dist-all distcheck
90ETAGS = etags
91CTAGS = ctags
92DIST_SUBDIRS = $(SUBDIRS)
93DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
94distdir = $(PACKAGE)-$(VERSION)
95top_distdir = $(distdir)
96am__remove_distdir = \
97  { test ! -d "$(distdir)" \
98    || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
99         && rm -fr "$(distdir)"; }; }
100am__relativize = \
101  dir0=`pwd`; \
102  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
103  sed_rest='s,^[^/]*/*,,'; \
104  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
105  sed_butlast='s,/*[^/]*$$,,'; \
106  while test -n "$$dir1"; do \
107    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
108    if test "$$first" != "."; then \
109      if test "$$first" = ".."; then \
110        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
111        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
112      else \
113        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
114        if test "$$first2" = "$$first"; then \
115          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
116        else \
117          dir2="../$$dir2"; \
118        fi; \
119        dir0="$$dir0"/"$$first"; \
120      fi; \
121    fi; \
122    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
123  done; \
124  reldir="$$dir2"
125DIST_ARCHIVES = $(distdir).tar.gz
126GZIP_ENV = --best
127distuninstallcheck_listfiles = find . -type f -print
128distcleancheck_listfiles = find . -type f -print
129ACLOCAL = @ACLOCAL@
130ALSA_CFLAGS = @ALSA_CFLAGS@
131ALSA_LIBS = @ALSA_LIBS@
132AMTAR = @AMTAR@
133AR = @AR@
134AUTOCONF = @AUTOCONF@
135AUTOHEADER = @AUTOHEADER@
136AUTOMAKE = @AUTOMAKE@
137AWK = @AWK@
138CC = @CC@
139CCDEPMODE = @CCDEPMODE@
140CFLAGS = @CFLAGS@
141COMMON_CFLAGS = @COMMON_CFLAGS@
142COMMON_LIBS = @COMMON_LIBS@
143CPP = @CPP@
144CPPFLAGS = @CPPFLAGS@
145CYGPATH_W = @CYGPATH_W@
146DEFS = @DEFS@
147DEPDIR = @DEPDIR@
148DLLTOOL = @DLLTOOL@
149DSYMUTIL = @DSYMUTIL@
150DUMPBIN = @DUMPBIN@
151ECHO_C = @ECHO_C@
152ECHO_N = @ECHO_N@
153ECHO_T = @ECHO_T@
154EGREP = @EGREP@
155EXEEXT = @EXEEXT@
156FGREP = @FGREP@
157GREP = @GREP@
158GTK_CFLAGS = @GTK_CFLAGS@
159GTK_LIBS = @GTK_LIBS@
160GUI_CFLAGS = @GUI_CFLAGS@
161GUI_LIBS = @GUI_LIBS@
162INSTALL = @INSTALL@
163INSTALL_DATA = @INSTALL_DATA@
164INSTALL_PROGRAM = @INSTALL_PROGRAM@
165INSTALL_SCRIPT = @INSTALL_SCRIPT@
166INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
167LD = @LD@
168LDFLAGS = @LDFLAGS@
169LIBOBJS = @LIBOBJS@
170LIBS = @LIBS@
171LIBTOOL = @LIBTOOL@
172LIPO = @LIPO@
173LN_S = @LN_S@
174LTLIBOBJS = @LTLIBOBJS@
175MAKEINFO = @MAKEINFO@
176MANIFEST_TOOL = @MANIFEST_TOOL@
177MKDIR_P = @MKDIR_P@
178NM = @NM@
179NMEDIT = @NMEDIT@
180OBJDUMP = @OBJDUMP@
181OBJEXT = @OBJEXT@
182OTOOL = @OTOOL@
183OTOOL64 = @OTOOL64@
184PACKAGE = @PACKAGE@
185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
186PACKAGE_NAME = @PACKAGE_NAME@
187PACKAGE_STRING = @PACKAGE_STRING@
188PACKAGE_TARNAME = @PACKAGE_TARNAME@
189PACKAGE_URL = @PACKAGE_URL@
190PACKAGE_VERSION = @PACKAGE_VERSION@
191PATH_SEPARATOR = @PATH_SEPARATOR@
192PKG_CONFIG = @PKG_CONFIG@
193PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
194PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
195PLUGIN_CFLAGS = @PLUGIN_CFLAGS@
196PLUGIN_LIBS = @PLUGIN_LIBS@
197RANLIB = @RANLIB@
198SED = @SED@
199SET_MAKE = @SET_MAKE@
200SHELL = @SHELL@
201STRIP = @STRIP@
202VERSION = @VERSION@
203abs_builddir = @abs_builddir@
204abs_srcdir = @abs_srcdir@
205abs_top_builddir = @abs_top_builddir@
206abs_top_srcdir = @abs_top_srcdir@
207ac_ct_AR = @ac_ct_AR@
208ac_ct_CC = @ac_ct_CC@
209ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
210am__include = @am__include@
211am__leading_dot = @am__leading_dot@
212am__quote = @am__quote@
213am__tar = @am__tar@
214am__untar = @am__untar@
215bindir = @bindir@
216build = @build@
217build_alias = @build_alias@
218build_cpu = @build_cpu@
219build_os = @build_os@
220build_vendor = @build_vendor@
221builddir = @builddir@
222datadir = @datadir@
223datarootdir = @datarootdir@
224docdir = @docdir@
225dvidir = @dvidir@
226exec_prefix = @exec_prefix@
227host = @host@
228host_alias = @host_alias@
229host_cpu = @host_cpu@
230host_os = @host_os@
231host_vendor = @host_vendor@
232htmldir = @htmldir@
233includedir = @includedir@
234infodir = @infodir@
235install_sh = @install_sh@
236libdir = @libdir@
237libexecdir = @libexecdir@
238localedir = @localedir@
239localstatedir = @localstatedir@
240mandir = @mandir@
241mkdir_p = @mkdir_p@
242oldincludedir = @oldincludedir@
243pdfdir = @pdfdir@
244prefix = @prefix@
245program_transform_name = @program_transform_name@
246psdir = @psdir@
247sbindir = @sbindir@
248sharedstatedir = @sharedstatedir@
249srcdir = @srcdir@
250sysconfdir = @sysconfdir@
251target_alias = @target_alias@
252top_build_prefix = @top_build_prefix@
253top_builddir = @top_builddir@
254top_srcdir = @top_srcdir@
255SUBDIRS = src
256EXTRA_DIST = \
257	autogen.sh \
258	config.h.ac \
259	doc/eg_shapes_falling_1.png \
260	doc/eg_shapes_falling_2.png \
261	doc/eg_shapes_rising_1.png \
262	doc/eg_shapes_rising_2.png \
263	doc/voice_block_diagram.png \
264	doc/wavetable_guide \
265	extra/COPYING-patches \
266	extra/current_default_patches.WhySynth \
267	extra/more_K4_interpretations.WhySynth \
268	extra/version_20051005_patches.WhySynth \
269	extra/version_20051231_patches.WhySynth \
270	extra/version_20090608_patches.WhySynth \
271	extra/version_20100922_patches.WhySynth \
272	extra/whysynth-icon-32x32.png
273
274
275#icondir = $(datadir)/icons/hicolor/32x32/apps
276#dist_icon_DATA = extra/whysynth-icon-32x32.png
277dist_pkgdata_DATA = \
278	extra/current_default_patches.WhySynth \
279	extra/more_K4_interpretations.WhySynth \
280	extra/version_20051005_patches.WhySynth \
281	extra/version_20051231_patches.WhySynth \
282	extra/version_20090608_patches.WhySynth \
283	extra/version_20100922_patches.WhySynth
284
285AUTOMAKE_OPTIONS = foreign
286all: config.h
287	$(MAKE) $(AM_MAKEFLAGS) all-recursive
288
289.SUFFIXES:
290am--refresh:
291	@:
292$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
293	@for dep in $?; do \
294	  case '$(am__configure_deps)' in \
295	    *$$dep*) \
296	      echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
297	      $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
298		&& exit 0; \
299	      exit 1;; \
300	  esac; \
301	done; \
302	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
303	$(am__cd) $(top_srcdir) && \
304	  $(AUTOMAKE) --foreign Makefile
305.PRECIOUS: Makefile
306Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
307	@case '$?' in \
308	  *config.status*) \
309	    echo ' $(SHELL) ./config.status'; \
310	    $(SHELL) ./config.status;; \
311	  *) \
312	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
313	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
314	esac;
315
316$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
317	$(SHELL) ./config.status --recheck
318
319$(top_srcdir)/configure:  $(am__configure_deps)
320	$(am__cd) $(srcdir) && $(AUTOCONF)
321$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
322	$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
323$(am__aclocal_m4_deps):
324
325config.h: stamp-h1
326	@if test ! -f $@; then \
327	  rm -f stamp-h1; \
328	  $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
329	else :; fi
330
331stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
332	@rm -f stamp-h1
333	cd $(top_builddir) && $(SHELL) ./config.status config.h
334$(srcdir)/config.h.in:  $(am__configure_deps)
335	($(am__cd) $(top_srcdir) && $(AUTOHEADER))
336	rm -f stamp-h1
337	touch $@
338
339distclean-hdr:
340	-rm -f config.h stamp-h1
341
342mostlyclean-libtool:
343	-rm -f *.lo
344
345clean-libtool:
346	-rm -rf .libs _libs
347
348distclean-libtool:
349	-rm -f libtool config.lt
350install-dist_pkgdataDATA: $(dist_pkgdata_DATA)
351	@$(NORMAL_INSTALL)
352	test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
353	@list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
354	for p in $$list; do \
355	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
356	  echo "$$d$$p"; \
357	done | $(am__base_list) | \
358	while read files; do \
359	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \
360	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \
361	done
362
363uninstall-dist_pkgdataDATA:
364	@$(NORMAL_UNINSTALL)
365	@list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
366	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
367	test -n "$$files" || exit 0; \
368	echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$files ")"; \
369	cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$files
370
371# This directory's subdirectories are mostly independent; you can cd
372# into them and run `make' without going through this Makefile.
373# To change the values of `make' variables: instead of editing Makefiles,
374# (1) if the variable is set in `config.status', edit `config.status'
375#     (which will cause the Makefiles to be regenerated when you run `make');
376# (2) otherwise, pass the desired values on the `make' command line.
377$(RECURSIVE_TARGETS):
378	@fail= failcom='exit 1'; \
379	for f in x $$MAKEFLAGS; do \
380	  case $$f in \
381	    *=* | --[!k]*);; \
382	    *k*) failcom='fail=yes';; \
383	  esac; \
384	done; \
385	dot_seen=no; \
386	target=`echo $@ | sed s/-recursive//`; \
387	list='$(SUBDIRS)'; for subdir in $$list; do \
388	  echo "Making $$target in $$subdir"; \
389	  if test "$$subdir" = "."; then \
390	    dot_seen=yes; \
391	    local_target="$$target-am"; \
392	  else \
393	    local_target="$$target"; \
394	  fi; \
395	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
396	  || eval $$failcom; \
397	done; \
398	if test "$$dot_seen" = "no"; then \
399	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
400	fi; test -z "$$fail"
401
402$(RECURSIVE_CLEAN_TARGETS):
403	@fail= failcom='exit 1'; \
404	for f in x $$MAKEFLAGS; do \
405	  case $$f in \
406	    *=* | --[!k]*);; \
407	    *k*) failcom='fail=yes';; \
408	  esac; \
409	done; \
410	dot_seen=no; \
411	case "$@" in \
412	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
413	  *) list='$(SUBDIRS)' ;; \
414	esac; \
415	rev=''; for subdir in $$list; do \
416	  if test "$$subdir" = "."; then :; else \
417	    rev="$$subdir $$rev"; \
418	  fi; \
419	done; \
420	rev="$$rev ."; \
421	target=`echo $@ | sed s/-recursive//`; \
422	for subdir in $$rev; do \
423	  echo "Making $$target in $$subdir"; \
424	  if test "$$subdir" = "."; then \
425	    local_target="$$target-am"; \
426	  else \
427	    local_target="$$target"; \
428	  fi; \
429	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
430	  || eval $$failcom; \
431	done && test -z "$$fail"
432tags-recursive:
433	list='$(SUBDIRS)'; for subdir in $$list; do \
434	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
435	done
436ctags-recursive:
437	list='$(SUBDIRS)'; for subdir in $$list; do \
438	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
439	done
440
441ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
442	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
443	unique=`for i in $$list; do \
444	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
445	  done | \
446	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
447	      END { if (nonempty) { for (i in files) print i; }; }'`; \
448	mkid -fID $$unique
449tags: TAGS
450
451TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
452		$(TAGS_FILES) $(LISP)
453	set x; \
454	here=`pwd`; \
455	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
456	  include_option=--etags-include; \
457	  empty_fix=.; \
458	else \
459	  include_option=--include; \
460	  empty_fix=; \
461	fi; \
462	list='$(SUBDIRS)'; for subdir in $$list; do \
463	  if test "$$subdir" = .; then :; else \
464	    test ! -f $$subdir/TAGS || \
465	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
466	  fi; \
467	done; \
468	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
469	unique=`for i in $$list; do \
470	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
471	  done | \
472	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
473	      END { if (nonempty) { for (i in files) print i; }; }'`; \
474	shift; \
475	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
476	  test -n "$$unique" || unique=$$empty_fix; \
477	  if test $$# -gt 0; then \
478	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
479	      "$$@" $$unique; \
480	  else \
481	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
482	      $$unique; \
483	  fi; \
484	fi
485ctags: CTAGS
486CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
487		$(TAGS_FILES) $(LISP)
488	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
489	unique=`for i in $$list; do \
490	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
491	  done | \
492	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
493	      END { if (nonempty) { for (i in files) print i; }; }'`; \
494	test -z "$(CTAGS_ARGS)$$unique" \
495	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
496	     $$unique
497
498GTAGS:
499	here=`$(am__cd) $(top_builddir) && pwd` \
500	  && $(am__cd) $(top_srcdir) \
501	  && gtags -i $(GTAGS_ARGS) "$$here"
502
503distclean-tags:
504	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
505
506distdir: $(DISTFILES)
507	$(am__remove_distdir)
508	test -d "$(distdir)" || mkdir "$(distdir)"
509	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
510	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
511	list='$(DISTFILES)'; \
512	  dist_files=`for file in $$list; do echo $$file; done | \
513	  sed -e "s|^$$srcdirstrip/||;t" \
514	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
515	case $$dist_files in \
516	  */*) $(MKDIR_P) `echo "$$dist_files" | \
517			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
518			   sort -u` ;; \
519	esac; \
520	for file in $$dist_files; do \
521	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
522	  if test -d $$d/$$file; then \
523	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
524	    if test -d "$(distdir)/$$file"; then \
525	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
526	    fi; \
527	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
528	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
529	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
530	    fi; \
531	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
532	  else \
533	    test -f "$(distdir)/$$file" \
534	    || cp -p $$d/$$file "$(distdir)/$$file" \
535	    || exit 1; \
536	  fi; \
537	done
538	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
539	  if test "$$subdir" = .; then :; else \
540	    test -d "$(distdir)/$$subdir" \
541	    || $(MKDIR_P) "$(distdir)/$$subdir" \
542	    || exit 1; \
543	  fi; \
544	done
545	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
546	  if test "$$subdir" = .; then :; else \
547	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
548	    $(am__relativize); \
549	    new_distdir=$$reldir; \
550	    dir1=$$subdir; dir2="$(top_distdir)"; \
551	    $(am__relativize); \
552	    new_top_distdir=$$reldir; \
553	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
554	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
555	    ($(am__cd) $$subdir && \
556	      $(MAKE) $(AM_MAKEFLAGS) \
557	        top_distdir="$$new_top_distdir" \
558	        distdir="$$new_distdir" \
559		am__remove_distdir=: \
560		am__skip_length_check=: \
561		am__skip_mode_fix=: \
562	        distdir) \
563	      || exit 1; \
564	  fi; \
565	done
566	-test -n "$(am__skip_mode_fix)" \
567	|| find "$(distdir)" -type d ! -perm -755 \
568		-exec chmod u+rwx,go+rx {} \; -o \
569	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
570	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
571	  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
572	|| chmod -R a+r "$(distdir)"
573dist-gzip: distdir
574	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
575	$(am__remove_distdir)
576
577dist-bzip2: distdir
578	tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
579	$(am__remove_distdir)
580
581dist-lzma: distdir
582	tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
583	$(am__remove_distdir)
584
585dist-xz: distdir
586	tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
587	$(am__remove_distdir)
588
589dist-tarZ: distdir
590	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
591	$(am__remove_distdir)
592
593dist-shar: distdir
594	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
595	$(am__remove_distdir)
596
597dist-zip: distdir
598	-rm -f $(distdir).zip
599	zip -rq $(distdir).zip $(distdir)
600	$(am__remove_distdir)
601
602dist dist-all: distdir
603	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
604	$(am__remove_distdir)
605
606# This target untars the dist file and tries a VPATH configuration.  Then
607# it guarantees that the distribution is self-contained by making another
608# tarfile.
609distcheck: dist
610	case '$(DIST_ARCHIVES)' in \
611	*.tar.gz*) \
612	  GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
613	*.tar.bz2*) \
614	  bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
615	*.tar.lzma*) \
616	  lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
617	*.tar.xz*) \
618	  xz -dc $(distdir).tar.xz | $(am__untar) ;;\
619	*.tar.Z*) \
620	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
621	*.shar.gz*) \
622	  GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
623	*.zip*) \
624	  unzip $(distdir).zip ;;\
625	esac
626	chmod -R a-w $(distdir); chmod a+w $(distdir)
627	mkdir $(distdir)/_build
628	mkdir $(distdir)/_inst
629	chmod a-w $(distdir)
630	test -d $(distdir)/_build || exit 0; \
631	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
632	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
633	  && am__cwd=`pwd` \
634	  && $(am__cd) $(distdir)/_build \
635	  && ../configure --srcdir=.. --prefix="$$dc_install_base" \
636	    $(DISTCHECK_CONFIGURE_FLAGS) \
637	  && $(MAKE) $(AM_MAKEFLAGS) \
638	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
639	  && $(MAKE) $(AM_MAKEFLAGS) check \
640	  && $(MAKE) $(AM_MAKEFLAGS) install \
641	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
642	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
643	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
644	        distuninstallcheck \
645	  && chmod -R a-w "$$dc_install_base" \
646	  && ({ \
647	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
648	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
649	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
650	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
651	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
652	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
653	  && rm -rf "$$dc_destdir" \
654	  && $(MAKE) $(AM_MAKEFLAGS) dist \
655	  && rm -rf $(DIST_ARCHIVES) \
656	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
657	  && cd "$$am__cwd" \
658	  || exit 1
659	$(am__remove_distdir)
660	@(echo "$(distdir) archives ready for distribution: "; \
661	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
662	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
663distuninstallcheck:
664	@$(am__cd) '$(distuninstallcheck_dir)' \
665	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
666	   || { echo "ERROR: files left after uninstall:" ; \
667	        if test -n "$(DESTDIR)"; then \
668	          echo "  (check DESTDIR support)"; \
669	        fi ; \
670	        $(distuninstallcheck_listfiles) ; \
671	        exit 1; } >&2
672distcleancheck: distclean
673	@if test '$(srcdir)' = . ; then \
674	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
675	  exit 1 ; \
676	fi
677	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
678	  || { echo "ERROR: files left in build directory after distclean:" ; \
679	       $(distcleancheck_listfiles) ; \
680	       exit 1; } >&2
681check-am: all-am
682check: check-recursive
683all-am: Makefile $(DATA) config.h
684installdirs: installdirs-recursive
685installdirs-am:
686	for dir in "$(DESTDIR)$(pkgdatadir)"; do \
687	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
688	done
689install: install-recursive
690install-exec: install-exec-recursive
691install-data: install-data-recursive
692uninstall: uninstall-recursive
693
694install-am: all-am
695	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
696
697installcheck: installcheck-recursive
698install-strip:
699	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
700	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
701	  `test -z '$(STRIP)' || \
702	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
703mostlyclean-generic:
704
705clean-generic:
706
707distclean-generic:
708	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
709	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
710
711maintainer-clean-generic:
712	@echo "This command is intended for maintainers to use"
713	@echo "it deletes files that may require special tools to rebuild."
714clean: clean-recursive
715
716clean-am: clean-generic clean-libtool mostlyclean-am
717
718distclean: distclean-recursive
719	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
720	-rm -f Makefile
721distclean-am: clean-am distclean-generic distclean-hdr \
722	distclean-libtool distclean-tags
723
724dvi: dvi-recursive
725
726dvi-am:
727
728html: html-recursive
729
730html-am:
731
732info: info-recursive
733
734info-am:
735
736install-data-am: install-dist_pkgdataDATA
737
738install-dvi: install-dvi-recursive
739
740install-dvi-am:
741
742install-exec-am:
743
744install-html: install-html-recursive
745
746install-html-am:
747
748install-info: install-info-recursive
749
750install-info-am:
751
752install-man:
753
754install-pdf: install-pdf-recursive
755
756install-pdf-am:
757
758install-ps: install-ps-recursive
759
760install-ps-am:
761
762installcheck-am:
763
764maintainer-clean: maintainer-clean-recursive
765	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
766	-rm -rf $(top_srcdir)/autom4te.cache
767	-rm -f Makefile
768maintainer-clean-am: distclean-am maintainer-clean-generic
769
770mostlyclean: mostlyclean-recursive
771
772mostlyclean-am: mostlyclean-generic mostlyclean-libtool
773
774pdf: pdf-recursive
775
776pdf-am:
777
778ps: ps-recursive
779
780ps-am:
781
782uninstall-am: uninstall-dist_pkgdataDATA
783
784.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
785	ctags-recursive install-am install-strip tags-recursive
786
787.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
788	all all-am am--refresh check check-am clean clean-generic \
789	clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
790	dist-gzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \
791	distcheck distclean distclean-generic distclean-hdr \
792	distclean-libtool distclean-tags distcleancheck distdir \
793	distuninstallcheck dvi dvi-am html html-am info info-am \
794	install install-am install-data install-data-am \
795	install-dist_pkgdataDATA install-dvi install-dvi-am \
796	install-exec install-exec-am install-html install-html-am \
797	install-info install-info-am install-man install-pdf \
798	install-pdf-am install-ps install-ps-am install-strip \
799	installcheck installcheck-am installdirs installdirs-am \
800	maintainer-clean maintainer-clean-generic mostlyclean \
801	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
802	tags tags-recursive uninstall uninstall-am \
803	uninstall-dist_pkgdataDATA
804
805
806# Tell versions [3.59,3.63) of GNU make to not export all variables.
807# Otherwise a system limit (for SysV at least) may be exceeded.
808.NOEXPORT:
809