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

..05-Nov-20144 KiB

aclocal.m405-Nov-2014275.9 KiB

addopcodes.awk05-Nov-20141.3 KiB

art/05-Nov-20144 KiB

config.guess05-Nov-201444.1 KiB

config.h.in05-Nov-20142.7 KiB

config.sub05-Nov-201432.2 KiB

configure05-Nov-2014436.2 KiB

configure.ac05-Nov-201419.7 KiB

contrib/05-Nov-20144 KiB

doc/05-Nov-20144 KiB

ext/05-Nov-20144 KiB

install-sh05-Nov-20145.5 KiB

ltmain.sh05-Nov-2014239.4 KiB

main.mk05-Nov-201417.8 KiB

Makefile.arm-wince-mingw32ce-gcc05-Nov-20144 KiB

Makefile.in05-Nov-201427.6 KiB

Makefile.linux-gcc05-Nov-20144.2 KiB

Makefile.vxworks05-Nov-201420.1 KiB

manifest05-Nov-201455.4 KiB

manifest.uuid05-Nov-201441

mkdll.sh05-Nov-20141.6 KiB

mkextu.sh05-Nov-2014420

mkextw.sh05-Nov-2014640

mkopcodec.awk05-Nov-2014961

mkopcodeh.awk05-Nov-20144.8 KiB

mkso.sh05-Nov-2014937

publish.sh05-Nov-20143.9 KiB

publish_osx.sh05-Nov-2014849

README05-Nov-20141.7 KiB

spec.template05-Nov-20141.8 KiB

sqlite.pc.in05-Nov-2014258

sqlite3.105-Nov-20146.6 KiB

sqlite3.pc.in05-Nov-2014259

src/05-Nov-20144 KiB

test/05-Nov-201420 KiB

tool/05-Nov-20144 KiB

VERSION05-Nov-20148

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