Home | History | Annotate | only in /external/chromium_org/third_party/sqlite/src
Up to higher level directory
NameDateSize
aclocal.m423-Apr-2015275.9K
addopcodes.awk23-Apr-20151.3K
art/23-Apr-2015
config.guess23-Apr-201544.1K
config.h.in23-Apr-20152.7K
config.sub23-Apr-201532.2K
configure23-Apr-2015436.2K
configure.ac23-Apr-201519.7K
contrib/23-Apr-2015
doc/23-Apr-2015
ext/23-Apr-2015
install-sh23-Apr-20155.5K
ltmain.sh23-Apr-2015239.4K
main.mk23-Apr-201517.8K
Makefile.arm-wince-mingw32ce-gcc23-Apr-20154K
Makefile.in23-Apr-201527.6K
Makefile.linux-gcc23-Apr-20154.2K
Makefile.vxworks23-Apr-201520.1K
manifest23-Apr-201555.4K
manifest.uuid23-Apr-201541
mkdll.sh23-Apr-20151.6K
mkextu.sh23-Apr-2015420
mkextw.sh23-Apr-2015640
mkopcodec.awk23-Apr-2015961
mkopcodeh.awk23-Apr-20154.8K
mkso.sh23-Apr-2015937
publish.sh23-Apr-20153.9K
publish_osx.sh23-Apr-2015849
README23-Apr-20151.7K
spec.template23-Apr-20151.8K
sqlite.pc.in23-Apr-2015258
sqlite3.123-Apr-20156.6K
sqlite3.pc.in23-Apr-2015259
src/23-Apr-2015
test/23-Apr-2015
tool/23-Apr-2015
VERSION23-Apr-20158

README

      1 This directory contains source code to 
      2 
      3     SQLite: An Embeddable SQL Database Engine
      4 
      5 To compile the project, first create a directory in which to place
      6 the build products.  It is recommended, but not required, that the
      7 build directory be separate from the source directory.  Cd into the
      8 build directory and then from the build directory run the configure
      9 script found at the root of the source tree.  Then run "make".
     10 
     11 For example:
     12 
     13     tar xzf sqlite.tar.gz    ;#  Unpack the source tree into "sqlite"
     14     mkdir bld                ;#  Build will occur in a sibling directory
     15     cd bld                   ;#  Change to the build directory
     16     ../sqlite/configure      ;#  Run the configure script
     17     make                     ;#  Run the makefile.
     18     make install             ;#  (Optional) Install the build products
     19 
     20 The configure script uses autoconf 2.61 and libtool.  If the configure
     21 script does not work out for you, there is a generic makefile named
     22 "Makefile.linux-gcc" in the top directory of the source tree that you
     23 can copy and edit to suit your needs.  Comments on the generic makefile
     24 show what changes are needed.
     25 
     26 The linux binaries on the website are created using the generic makefile,
     27 not the configure script.  The windows binaries on the website are created
     28 using MinGW32 configured as a cross-compiler running under Linux.  For 
     29 details, see the ./publish.sh script at the top-level of the source tree.
     30 The developers do not use teh configure script.
     31 
     32 SQLite does not require TCL to run, but a TCL installation is required
     33 by the makefiles.  SQLite contains a lot of generated code and TCL is
     34 used to do much of that code generation.  The makefile also requires
     35 AWK.
     36 
     37 Contacts:
     38 
     39    http://www.sqlite.org/
     40