/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: 2010-07-29 09:16:26 UTC
  • Revision ID: edam@waxworlds.org-20100729091626-h8fmg0r74eyfo5ae
- fixed error caused by finialising in-progress queries during rollback that were later finaliased by RAII.

Show diffs side-by-side

added added

removed removed

1
 
# Makefile.in generated by automake 1.11.1 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
298
298
#     (which will cause the Makefiles to be regenerated when you run `make');
299
299
# (2) otherwise, pass the desired values on the `make' command line.
300
300
$(RECURSIVE_TARGETS):
301
 
        @fail= failcom='exit 1'; \
 
301
        @failcom='exit 1'; \
302
302
        for f in x $$MAKEFLAGS; do \
303
303
          case $$f in \
304
304
            *=* | --[!k]*);; \
323
323
        fi; test -z "$$fail"
324
324
 
325
325
$(RECURSIVE_CLEAN_TARGETS):
326
 
        @fail= failcom='exit 1'; \
 
326
        @failcom='exit 1'; \
327
327
        for f in x $$MAKEFLAGS; do \
328
328
          case $$f in \
329
329
            *=* | --[!k]*);; \
487
487
          fi; \
488
488
        done
489
489
        -test -n "$(am__skip_mode_fix)" \
490
 
        || find "$(distdir)" -type d ! -perm -755 \
491
 
                -exec chmod u+rwx,go+rx {} \; -o \
 
490
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
492
491
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
493
492
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
494
493
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
532
531
distcheck: dist
533
532
        case '$(DIST_ARCHIVES)' in \
534
533
        *.tar.gz*) \
535
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
 
534
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
536
535
        *.tar.bz2*) \
537
 
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
 
536
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
538
537
        *.tar.lzma*) \
539
 
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
 
538
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
540
539
        *.tar.xz*) \
541
540
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
542
541
        *.tar.Z*) \
543
542
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
544
543
        *.shar.gz*) \
545
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
 
544
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
546
545
        *.zip*) \
547
546
          unzip $(distdir).zip ;;\
548
547
        esac