• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..13-Jan-2016-

Makefile.amH A D20-May-2008435 2111

Makefile.inH A D13-Jan-201617.7 KiB592514

READMEH A D01-Sep-20061.6 KiB3627

shell.cH A D13-Jan-2016153.5 KiB4,9594,089

sqlite3.cH A D13-Jan-20166.2 MiB186,007113,958

sqlite3.hH A D13-Jan-2016403.9 KiB8,6251,198

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.50 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 suite 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 configure script is unmaintained.  (You
28can volunteer to take over maintenance of the configure script, if you want!)
29The windows binaries on the website are created using MinGW32 configured
30as a cross-compiler running under Linux.  For details, see the ./publish.sh
31script at the top-level of the source tree.
32
33Contacts:
34
35   http://www.sqlite.org/
36