/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-08 22:08:57 UTC
  • Revision ID: edam@waxworlds.org-20100208220857-5up6fi4y6jh5bz4k
- removed "OK" from test-main when test is successful
- aranged for test/test-main to buld properly and be called from "make check"
- added include/Makefile.am to arrange for installation of library headers
- added project website to configure.ac
- added library interface configuration variable to configure.ac

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
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