1
- # Makefile.in generated by automake 1.11.1 from Makefile.am.
1
+ # Makefile.in generated by automake 1.11.3 from Makefile.am.
2
2
# @configure_input@
3
3
4
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.
5
+ # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6
+ # Foundation, Inc.
7
7
# This Makefile.in is free software; the Free Software Foundation
8
8
# gives unlimited permission to copy and/or distribute it,
9
9
# with or without modifications, as long as this notice is preserved.
@@ -75,9 +75,11 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
75
75
distdir = $(PACKAGE ) -$(VERSION )
76
76
top_distdir = $(distdir )
77
77
am__remove_distdir = \
78
- { test ! -d "$(distdir ) " \
79
- || { find "$(distdir ) " -type d ! -perm -200 -exec chmod u+w {} ';' \
80
- && rm -fr "$(distdir ) "; }; }
78
+ if test -d "$(distdir ) "; then \
79
+ find "$(distdir ) " -type d ! -perm -200 -exec chmod u+w {} ';' \
80
+ && rm -rf "$(distdir ) " \
81
+ || { sleep 5 && rm -rf "$(distdir ) "; }; \
82
+ else :; fi
81
83
am__relativize = \
82
84
dir0=` pwd ` ; \
83
85
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
@@ -106,6 +108,8 @@ am__relativize = \
106
108
DIST_ARCHIVES = $(distdir ) .tar.gz
107
109
GZIP_ENV = --best
108
110
distuninstallcheck_listfiles = find . -type f -print
111
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles ) \
112
+ | sed 's|^\./|$(prefix ) /|' | grep -v '$(infodir ) /dir$$'
109
113
distcleancheck_listfiles = find . -type f -print
110
114
ACLOCAL = @ACLOCAL@
111
115
AMTAR = @AMTAR@
@@ -246,7 +250,7 @@ all: config.h
246
250
$(MAKE ) $(AM_MAKEFLAGS ) all-recursive
247
251
248
252
.SUFFIXES :
249
- am--refresh :
253
+ am--refresh : Makefile
250
254
@:
251
255
$(srcdir ) /Makefile.in : @MAINTAINER_MODE_TRUE@ $(srcdir ) /Makefile.am $(am__configure_deps )
252
256
@for dep in $? ; do \
@@ -282,10 +286,8 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
282
286
$(am__aclocal_m4_deps ) :
283
287
284
288
config.h : stamp-h1
285
- @if test ! -f $@ ; then \
286
- rm -f stamp-h1; \
287
- $(MAKE ) $(AM_MAKEFLAGS ) stamp-h1; \
288
- else : ; fi
289
+ @if test ! -f $@ ; then rm -f stamp-h1; else : ; fi
290
+ @if test ! -f $@ ; then $(MAKE ) $(AM_MAKEFLAGS ) stamp-h1; else : ; fi
289
291
290
292
stamp-h1 : $(srcdir ) /config.in $(top_builddir ) /config.status
291
293
@rm -f stamp-h1
@@ -514,15 +516,19 @@ dist-gzip: distdir
514
516
$(am__remove_distdir )
515
517
516
518
dist-bzip2 : distdir
517
- tardir=$(distdir ) && $(am__tar ) | bzip2 -9 -c > $(distdir ) .tar.bz2
519
+ tardir=$(distdir ) && $(am__tar ) | BZIP2=$$ {BZIP2--9} bzip2 -c > $(distdir ) .tar.bz2
520
+ $(am__remove_distdir )
521
+
522
+ dist-lzip : distdir
523
+ tardir=$(distdir ) && $(am__tar ) | lzip -c $$ {LZIP_OPT--9} > $(distdir ) .tar.lz
518
524
$(am__remove_distdir )
519
525
520
526
dist-lzma : distdir
521
527
tardir=$(distdir ) && $(am__tar ) | lzma -9 -c > $(distdir ) .tar.lzma
522
528
$(am__remove_distdir )
523
529
524
530
dist-xz : distdir
525
- tardir=$(distdir ) && $(am__tar ) | xz -c > $(distdir ) .tar.xz
531
+ tardir=$(distdir ) && $(am__tar ) | XZ_OPT= $$ {XZ_OPT--e} xz -c > $(distdir ) .tar.xz
526
532
$(am__remove_distdir )
527
533
528
534
dist-tarZ : distdir
@@ -553,6 +559,8 @@ distcheck: dist
553
559
bzip2 -dc $(distdir ) .tar.bz2 | $(am__untar ) ;; \
554
560
* .tar.lzma* ) \
555
561
lzma -dc $(distdir ) .tar.lzma | $(am__untar ) ;; \
562
+ * .tar.lz* ) \
563
+ lzip -dc $(distdir ) .tar.lz | $(am__untar ) ;; \
556
564
* .tar.xz* ) \
557
565
xz -dc $(distdir ) .tar.xz | $(am__untar ) ;; \
558
566
* .tar.Z* ) \
@@ -572,6 +580,7 @@ distcheck: dist
572
580
&& am__cwd=` pwd` \
573
581
&& $(am__cd ) $(distdir ) /_build \
574
582
&& ../configure --srcdir=.. --prefix=" $$ dc_install_base" \
583
+ $(AM_DISTCHECK_CONFIGURE_FLAGS ) \
575
584
$(DISTCHECK_CONFIGURE_FLAGS ) \
576
585
&& $(MAKE ) $(AM_MAKEFLAGS ) \
577
586
&& $(MAKE ) $(AM_MAKEFLAGS ) dvi \
@@ -600,8 +609,16 @@ distcheck: dist
600
609
list=' $(DIST_ARCHIVES)' ; for i in $$ list; do echo $$ i; done) | \
601
610
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e ' $$p' -e ' $$x'
602
611
distuninstallcheck :
603
- @$(am__cd ) ' $(distuninstallcheck_dir)' \
604
- && test ` $( distuninstallcheck_listfiles) | wc -l` -le 1 \
612
+ @test -n ' $(distuninstallcheck_dir)' || { \
613
+ echo ' ERROR: trying to run $@ with an empty' \
614
+ ' $$(distuninstallcheck_dir)' >&2 ; \
615
+ exit 1; \
616
+ }; \
617
+ $(am__cd ) ' $(distuninstallcheck_dir)' || { \
618
+ echo ' ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2 ; \
619
+ exit 1; \
620
+ }; \
621
+ test ` $( am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
605
622
|| { echo " ERROR: files left after uninstall:" ; \
606
623
if test -n " $( DESTDIR) " ; then \
607
624
echo " (check DESTDIR support)" ; \
@@ -632,10 +649,15 @@ install-am: all-am
632
649
633
650
installcheck : installcheck-recursive
634
651
install-strip :
635
- $(MAKE ) $(AM_MAKEFLAGS ) INSTALL_PROGRAM=" $( INSTALL_STRIP_PROGRAM) " \
636
- install_sh_PROGRAM=" $( INSTALL_STRIP_PROGRAM) " INSTALL_STRIP_FLAG=-s \
637
- ` test -z ' $(STRIP)' || \
638
- echo " INSTALL_PROGRAM_ENV=STRIPPROG='$( STRIP) '" ` install
652
+ if test -z ' $(STRIP)' ; then \
653
+ $(MAKE ) $(AM_MAKEFLAGS ) INSTALL_PROGRAM=" $( INSTALL_STRIP_PROGRAM) " \
654
+ install_sh_PROGRAM=" $( INSTALL_STRIP_PROGRAM) " INSTALL_STRIP_FLAG=-s \
655
+ install; \
656
+ else \
657
+ $(MAKE ) $(AM_MAKEFLAGS ) INSTALL_PROGRAM=" $( INSTALL_STRIP_PROGRAM) " \
658
+ install_sh_PROGRAM=" $( INSTALL_STRIP_PROGRAM) " INSTALL_STRIP_FLAG=-s \
659
+ " INSTALL_PROGRAM_ENV=STRIPPROG='$( STRIP) '" install; \
660
+ fi
639
661
mostlyclean-generic :
640
662
641
663
clean-generic :
@@ -723,8 +745,8 @@ uninstall-am:
723
745
.PHONY : $(RECURSIVE_CLEAN_TARGETS ) $(RECURSIVE_TARGETS ) CTAGS GTAGS \
724
746
all all-am am--refresh check check-am clean clean-generic \
725
747
clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
726
- dist-gzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \
727
- distcheck distclean distclean-generic distclean-hdr \
748
+ dist-gzip dist-lzip dist- lzma dist-shar dist-tarZ dist-xz \
749
+ dist-zip distcheck distclean distclean-generic distclean-hdr \
728
750
distclean-libtool distclean-tags distcleancheck distdir \
729
751
distuninstallcheck dvi dvi-am html html-am info info-am \
730
752
install install-am install-data install-data-am install-dvi \
0 commit comments