• Home
  • History
  • Annotate
  • only in /external/chromium_org/third_party/sqlite/src/
NameDateSize

..12-Mar-20154 KiB

aclocal.m412-Mar-2015275.9 KiB

addopcodes.awk12-Mar-20151.3 KiB

art/12-Mar-20154 KiB

config.guess12-Mar-201544.1 KiB

config.h.in12-Mar-20152.7 KiB

config.sub12-Mar-201532.2 KiB

configure12-Mar-2015436.2 KiB

configure.ac12-Mar-201519.7 KiB

contrib/12-Mar-20154 KiB

doc/12-Mar-20154 KiB

ext/12-Mar-20154 KiB

install-sh12-Mar-20155.5 KiB

ltmain.sh12-Mar-2015239.4 KiB

main.mk12-Mar-201517.8 KiB

Makefile.arm-wince-mingw32ce-gcc12-Mar-20154 KiB

Makefile.in12-Mar-201527.6 KiB

Makefile.linux-gcc12-Mar-20154.2 KiB

Makefile.vxworks12-Mar-201520.1 KiB

manifest12-Mar-201555.4 KiB

manifest.uuid12-Mar-201541

mkdll.sh12-Mar-20151.6 KiB

mkextu.sh12-Mar-2015420

mkextw.sh12-Mar-2015640

mkopcodec.awk12-Mar-2015961

mkopcodeh.awk12-Mar-20154.8 KiB

mkso.sh12-Mar-2015937

publish.sh12-Mar-20153.9 KiB

publish_osx.sh12-Mar-2015849

README12-Mar-20151.7 KiB

spec.template12-Mar-20151.8 KiB

sqlite.pc.in12-Mar-2015258

sqlite3.112-Mar-20156.6 KiB

sqlite3.pc.in12-Mar-2015259

src/12-Mar-20154 KiB

test/12-Mar-201520 KiB

tool/12-Mar-20154 KiB

VERSION12-Mar-20158

README

1This directory contains source code to 
2
3    SQLite: An Embeddable SQL Database Engine
4
5To compile the project, first create a directory in which to place
6the build products.  It is recommended, but not required, that the
7build directory be separate from the source directory.  Cd into the
8build directory and then from the build directory run the configure
9script found at the root of the source tree.  Then run "make".
10
11For 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
20The configure script uses autoconf 2.61 and libtool.  If the configure
21script 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
23can copy and edit to suit your needs.  Comments on the generic makefile
24show what changes are needed.
25
26The linux binaries on the website are created using the generic makefile,
27not the configure script.  The windows binaries on the website are created
28using MinGW32 configured as a cross-compiler running under Linux.  For 
29details, see the ./publish.sh script at the top-level of the source tree.
30The developers do not use teh configure script.
31
32SQLite does not require TCL to run, but a TCL installation is required
33by the makefiles.  SQLite contains a lot of generated code and TCL is
34used to do much of that code generation.  The makefile also requires
35AWK.
36
37Contacts:
38
39   http://www.sqlite.org/
40