/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 14:39:18 UTC
  • Revision ID: edam@waxworlds.org-20100207143918-gi030ojecbska8hw
- updated README
- set up project for use with autotools

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 \
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
144
144
LDFLAGS = @LDFLAGS@
145
145
LIBOBJS = @LIBOBJS@
146
146
LIBS = @LIBS@
147
 
LIBSQLITE3CC_INTERFACE = @LIBSQLITE3CC_INTERFACE@
148
147
LIBTOOL = @LIBTOOL@
149
148
LIPO = @LIPO@
150
149
LN_S = @LN_S@
224
223
top_build_prefix = @top_build_prefix@
225
224
top_builddir = @top_builddir@
226
225
top_srcdir = @top_srcdir@
227
 
SUBDIRS = src include test
 
226
SUBDIRS = src test
228
227
ACLOCAL_AMFLAGS = -I m4
229
228
all: config.h
230
229
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
298
297
#     (which will cause the Makefiles to be regenerated when you run `make');
299
298
# (2) otherwise, pass the desired values on the `make' command line.
300
299
$(RECURSIVE_TARGETS):
301
 
        @fail= failcom='exit 1'; \
 
300
        @failcom='exit 1'; \
302
301
        for f in x $$MAKEFLAGS; do \
303
302
          case $$f in \
304
303
            *=* | --[!k]*);; \
323
322
        fi; test -z "$$fail"
324
323
 
325
324
$(RECURSIVE_CLEAN_TARGETS):
326
 
        @fail= failcom='exit 1'; \
 
325
        @failcom='exit 1'; \
327
326
        for f in x $$MAKEFLAGS; do \
328
327
          case $$f in \
329
328
            *=* | --[!k]*);; \
487
486
          fi; \
488
487
        done
489
488
        -test -n "$(am__skip_mode_fix)" \
490
 
        || find "$(distdir)" -type d ! -perm -755 \
491
 
                -exec chmod u+rwx,go+rx {} \; -o \
 
489
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
492
490
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
493
491
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
494
492
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
532
530
distcheck: dist
533
531
        case '$(DIST_ARCHIVES)' in \
534
532
        *.tar.gz*) \
535
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
 
533
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
536
534
        *.tar.bz2*) \
537
 
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
 
535
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
538
536
        *.tar.lzma*) \
539
 
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
 
537
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
540
538
        *.tar.xz*) \
541
539
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
542
540
        *.tar.Z*) \
543
541
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
544
542
        *.shar.gz*) \
545
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
 
543
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
546
544
        *.zip*) \
547
545
          unzip $(distdir).zip ;;\
548
546
        esac