/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 06:39:13 UTC
  • Revision ID: edam@waxworlds.org-20100729063913-wvcvkogsa2alwkhr
- moved basic_statement::operator <<() back to basic_statement and just create another specialisation in command so that it can use sqlite::exec

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