/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: edam
  • Date: 2012-01-23 13:47:08 UTC
  • Revision ID: edam@waxworlds.org-20120123134708-ol4tilkotsm3han0
updated build system

Show diffs side-by-side

added added

removed removed

1
 
# Makefile.in generated by automake 1.11.3 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.1 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, 2010, 2011 Free Software
6
 
# Foundation, Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 
6
# 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
75
distdir = $(PACKAGE)-$(VERSION)
76
76
top_distdir = $(distdir)
77
77
am__remove_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
 
78
  { test ! -d "$(distdir)" \
 
79
    || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
 
80
         && rm -fr "$(distdir)"; }; }
83
81
am__relativize = \
84
82
  dir0=`pwd`; \
85
83
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
108
106
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz
109
107
GZIP_ENV = --best
110
108
distuninstallcheck_listfiles = find . -type f -print
111
 
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
112
 
  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
113
109
distcleancheck_listfiles = find . -type f -print
114
110
ACLOCAL = @ACLOCAL@
115
111
AMTAR = @AMTAR@
236
232
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
237
233
 
238
234
.SUFFIXES:
239
 
am--refresh: Makefile
 
235
am--refresh:
240
236
        @:
241
237
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
242
238
        @for dep in $?; do \
272
268
$(am__aclocal_m4_deps):
273
269
 
274
270
config.h: stamp-h1
275
 
        @if test ! -f $@; then rm -f stamp-h1; else :; fi
276
 
        @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
 
271
        @if test ! -f $@; then \
 
272
          rm -f stamp-h1; \
 
273
          $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
 
274
        else :; fi
277
275
 
278
276
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
279
277
        @rm -f stamp-h1
502
500
        $(am__remove_distdir)
503
501
 
504
502
dist-bzip2: distdir
505
 
        tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
506
 
        $(am__remove_distdir)
507
 
 
508
 
dist-lzip: distdir
509
 
        tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
 
503
        tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
510
504
        $(am__remove_distdir)
511
505
 
512
506
dist-lzma: distdir
513
507
        tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
514
508
        $(am__remove_distdir)
515
509
dist-xz: distdir
516
 
        tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
 
510
        tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
517
511
        $(am__remove_distdir)
518
512
 
519
513
dist-tarZ: distdir
531
525
 
532
526
dist dist-all: distdir
533
527
        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
534
 
        tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
 
528
        tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
535
529
        $(am__remove_distdir)
536
530
 
537
531
# This target untars the dist file and tries a VPATH configuration.  Then
545
539
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
546
540
        *.tar.lzma*) \
547
541
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
548
 
        *.tar.lz*) \
549
 
          lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
550
542
        *.tar.xz*) \
551
543
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
552
544
        *.tar.Z*) \
566
558
          && am__cwd=`pwd` \
567
559
          && $(am__cd) $(distdir)/_build \
568
560
          && ../configure --srcdir=.. --prefix="$$dc_install_base" \
569
 
            $(AM_DISTCHECK_CONFIGURE_FLAGS) \
570
561
            $(DISTCHECK_CONFIGURE_FLAGS) \
571
562
          && $(MAKE) $(AM_MAKEFLAGS) \
572
563
          && $(MAKE) $(AM_MAKEFLAGS) dvi \
595
586
          list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
596
587
          sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
597
588
distuninstallcheck:
598
 
        @test -n '$(distuninstallcheck_dir)' || { \
599
 
          echo 'ERROR: trying to run $@ with an empty' \
600
 
               '$$(distuninstallcheck_dir)' >&2; \
601
 
          exit 1; \
602
 
        }; \
603
 
        $(am__cd) '$(distuninstallcheck_dir)' || { \
604
 
          echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
605
 
          exit 1; \
606
 
        }; \
607
 
        test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
 
589
        @$(am__cd) '$(distuninstallcheck_dir)' \
 
590
        && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
608
591
           || { echo "ERROR: files left after uninstall:" ; \
609
592
                if test -n "$(DESTDIR)"; then \
610
593
                  echo "  (check DESTDIR support)"; \
635
618
 
636
619
installcheck: installcheck-recursive
637
620
install-strip:
638
 
        if test -z '$(STRIP)'; then \
639
 
          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
640
 
            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
641
 
              install; \
642
 
        else \
643
 
          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
644
 
            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
645
 
            "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
646
 
        fi
 
621
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
622
          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
623
          `test -z '$(STRIP)' || \
 
624
            echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
647
625
mostlyclean-generic:
648
626
 
649
627
clean-generic:
731
709
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
732
710
        all all-am am--refresh check check-am clean clean-generic \
733
711
        clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
734
 
        dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \
735
 
        dist-zip distcheck distclean distclean-generic distclean-hdr \
 
712
        dist-gzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \
 
713
        distcheck distclean distclean-generic distclean-hdr \
736
714
        distclean-libtool distclean-tags distcleancheck distdir \
737
715
        distuninstallcheck dvi dvi-am html html-am info info-am \
738
716
        install install-am install-data install-data-am install-dvi \