/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-02-07 15:28:23 UTC
  • Revision ID: edam@waxworlds.org-20100207152823-42k206h6gwy7vla4
- fixed .am files so the library gets built!

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,
38
38
subdir = .
39
39
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
40
40
        $(srcdir)/Makefile.in $(srcdir)/config.h.in \
41
 
        $(top_srcdir)/configure COPYING COPYING.LESSER NEWS TODO \
 
41
        $(top_srcdir)/configure COPYING COPYING.LESSER TODO \
42
42
        build-aux/config.guess build-aux/config.sub build-aux/depcomp \
43
43
        build-aux/install-sh build-aux/ltmain.sh build-aux/missing
44
44
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
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@
145
144
LDFLAGS = @LDFLAGS@
146
145
LIBOBJS = @LIBOBJS@
147
146
LIBS = @LIBS@
148
 
LIBSQLITE3CC_INTERFACE = @LIBSQLITE3CC_INTERFACE@
149
147
LIBTOOL = @LIBTOOL@
150
148
LIPO = @LIPO@
151
149
LN_S = @LN_S@
152
150
LTLIBOBJS = @LTLIBOBJS@
153
151
MAKEINFO = @MAKEINFO@
154
 
MANIFEST_TOOL = @MANIFEST_TOOL@
155
152
MKDIR_P = @MKDIR_P@
156
153
NM = @NM@
157
154
NMEDIT = @NMEDIT@
177
174
abs_srcdir = @abs_srcdir@
178
175
abs_top_builddir = @abs_top_builddir@
179
176
abs_top_srcdir = @abs_top_srcdir@
180
 
ac_ct_AR = @ac_ct_AR@
181
177
ac_ct_CC = @ac_ct_CC@
182
178
ac_ct_CXX = @ac_ct_CXX@
183
179
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
211
207
libexecdir = @libexecdir@
212
208
localedir = @localedir@
213
209
localstatedir = @localstatedir@
 
210
lt_ECHO = @lt_ECHO@
214
211
mandir = @mandir@
215
212
mkdir_p = @mkdir_p@
216
213
oldincludedir = @oldincludedir@
226
223
top_build_prefix = @top_build_prefix@
227
224
top_builddir = @top_builddir@
228
225
top_srcdir = @top_srcdir@
229
 
SUBDIRS = src include test
 
226
SUBDIRS = src test
230
227
ACLOCAL_AMFLAGS = -I m4
231
228
all: config.h
232
229
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
300
297
#     (which will cause the Makefiles to be regenerated when you run `make');
301
298
# (2) otherwise, pass the desired values on the `make' command line.
302
299
$(RECURSIVE_TARGETS):
303
 
        @fail= failcom='exit 1'; \
 
300
        @failcom='exit 1'; \
304
301
        for f in x $$MAKEFLAGS; do \
305
302
          case $$f in \
306
303
            *=* | --[!k]*);; \
325
322
        fi; test -z "$$fail"
326
323
 
327
324
$(RECURSIVE_CLEAN_TARGETS):
328
 
        @fail= failcom='exit 1'; \
 
325
        @failcom='exit 1'; \
329
326
        for f in x $$MAKEFLAGS; do \
330
327
          case $$f in \
331
328
            *=* | --[!k]*);; \
489
486
          fi; \
490
487
        done
491
488
        -test -n "$(am__skip_mode_fix)" \
492
 
        || find "$(distdir)" -type d ! -perm -755 \
493
 
                -exec chmod u+rwx,go+rx {} \; -o \
 
489
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
494
490
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
495
491
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
496
492
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
506
502
dist-lzma: distdir
507
503
        tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
508
504
        $(am__remove_distdir)
 
505
 
509
506
dist-xz: distdir
510
507
        tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
511
508
        $(am__remove_distdir)
525
522
 
526
523
dist dist-all: distdir
527
524
        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
528
 
        tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
529
525
        $(am__remove_distdir)
530
526
 
531
527
# This target untars the dist file and tries a VPATH configuration.  Then
534
530
distcheck: dist
535
531
        case '$(DIST_ARCHIVES)' in \
536
532
        *.tar.gz*) \
537
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
 
533
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
538
534
        *.tar.bz2*) \
539
 
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
 
535
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
540
536
        *.tar.lzma*) \
541
 
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
 
537
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
542
538
        *.tar.xz*) \
543
539
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
544
540
        *.tar.Z*) \
545
541
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
546
542
        *.shar.gz*) \
547
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
 
543
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
548
544
        *.zip*) \
549
545
          unzip $(distdir).zip ;;\
550
546
        esac