Home | History | Annotate | only in /external/chromium_org/third_party/sqlite/src
Up to higher level directory
NameDateSize
aclocal.m411-Dec-2013275.9K
addopcodes.awk11-Dec-20131.3K
art/11-Dec-2013
config.guess11-Dec-201344.1K
config.h.in11-Dec-20132.7K
config.sub11-Dec-201332.2K
configure11-Dec-2013436.2K
configure.ac11-Dec-201319.7K
contrib/11-Dec-2013
doc/11-Dec-2013
ext/11-Dec-2013
install-sh11-Dec-20135.5K
ltmain.sh11-Dec-2013239.4K
main.mk11-Dec-201317.8K
Makefile.arm-wince-mingw32ce-gcc11-Dec-20134K
Makefile.in11-Dec-201327.6K
Makefile.linux-gcc11-Dec-20134.2K
Makefile.vxworks11-Dec-201320.1K
manifest11-Dec-201355.4K
manifest.uuid11-Dec-201341
mkdll.sh11-Dec-20131.6K
mkextu.sh11-Dec-2013420
mkextw.sh11-Dec-2013640
mkopcodec.awk11-Dec-2013961
mkopcodeh.awk11-Dec-20134.8K
mkso.sh11-Dec-2013937
publish.sh11-Dec-20133.9K
publish_osx.sh11-Dec-2013849
README11-Dec-20131.7K
spec.template11-Dec-20131.8K
sqlite.pc.in11-Dec-2013258
sqlite3.111-Dec-20136.6K
sqlite3.pc.in11-Dec-2013259
src/11-Dec-2013
test/11-Dec-2013
tool/11-Dec-2013
VERSION11-Dec-20138

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