/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 14:34:45 UTC
  • Revision ID: edam@waxworlds.org-20120123143445-s2v4v90nycmfm6bv
fixed up tests

Show diffs side-by-side

added added

removed removed

1
 
# Makefile.in generated by automake 1.11 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,
103
103
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
104
104
  done; \
105
105
  reldir="$$dir2"
106
 
DIST_ARCHIVES = $(distdir).tar.gz
 
106
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz
107
107
GZIP_ENV = --best
108
108
distuninstallcheck_listfiles = find . -type f -print
109
109
distcleancheck_listfiles = find . -type f -print
126
126
CYGPATH_W = @CYGPATH_W@
127
127
DEFS = @DEFS@
128
128
DEPDIR = @DEPDIR@
 
129
DLLTOOL = @DLLTOOL@
129
130
DSYMUTIL = @DSYMUTIL@
130
131
DUMPBIN = @DUMPBIN@
131
132
ECHO_C = @ECHO_C@
150
151
LN_S = @LN_S@
151
152
LTLIBOBJS = @LTLIBOBJS@
152
153
MAKEINFO = @MAKEINFO@
 
154
MANIFEST_TOOL = @MANIFEST_TOOL@
153
155
MKDIR_P = @MKDIR_P@
154
156
NM = @NM@
155
157
NMEDIT = @NMEDIT@
175
177
abs_srcdir = @abs_srcdir@
176
178
abs_top_builddir = @abs_top_builddir@
177
179
abs_top_srcdir = @abs_top_srcdir@
 
180
ac_ct_AR = @ac_ct_AR@
178
181
ac_ct_CC = @ac_ct_CC@
179
182
ac_ct_CXX = @ac_ct_CXX@
180
183
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
208
211
libexecdir = @libexecdir@
209
212
localedir = @localedir@
210
213
localstatedir = @localstatedir@
211
 
lt_ECHO = @lt_ECHO@
212
214
mandir = @mandir@
213
215
mkdir_p = @mkdir_p@
214
216
oldincludedir = @oldincludedir@
298
300
#     (which will cause the Makefiles to be regenerated when you run `make');
299
301
# (2) otherwise, pass the desired values on the `make' command line.
300
302
$(RECURSIVE_TARGETS):
301
 
        @failcom='exit 1'; \
 
303
        @fail= failcom='exit 1'; \
302
304
        for f in x $$MAKEFLAGS; do \
303
305
          case $$f in \
304
306
            *=* | --[!k]*);; \
323
325
        fi; test -z "$$fail"
324
326
 
325
327
$(RECURSIVE_CLEAN_TARGETS):
326
 
        @failcom='exit 1'; \
 
328
        @fail= failcom='exit 1'; \
327
329
        for f in x $$MAKEFLAGS; do \
328
330
          case $$f in \
329
331
            *=* | --[!k]*);; \
487
489
          fi; \
488
490
        done
489
491
        -test -n "$(am__skip_mode_fix)" \
490
 
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
 
492
        || find "$(distdir)" -type d ! -perm -755 \
 
493
                -exec chmod u+rwx,go+rx {} \; -o \
491
494
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
492
495
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
493
496
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
503
506
dist-lzma: distdir
504
507
        tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
505
508
        $(am__remove_distdir)
506
 
 
507
509
dist-xz: distdir
508
510
        tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
509
511
        $(am__remove_distdir)
523
525
 
524
526
dist dist-all: distdir
525
527
        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
 
528
        tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
526
529
        $(am__remove_distdir)
527
530
 
528
531
# This target untars the dist file and tries a VPATH configuration.  Then
531
534
distcheck: dist
532
535
        case '$(DIST_ARCHIVES)' in \
533
536
        *.tar.gz*) \
534
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
 
537
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
535
538
        *.tar.bz2*) \
536
 
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
 
539
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
537
540
        *.tar.lzma*) \
538
 
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
 
541
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
539
542
        *.tar.xz*) \
540
543
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
541
544
        *.tar.Z*) \
542
545
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
543
546
        *.shar.gz*) \
544
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
 
547
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
545
548
        *.zip*) \
546
549
          unzip $(distdir).zip ;;\
547
550
        esac