• Home
Name Date Size #Lines LOC

..--

art/03-May-2024-

contrib/03-May-2024-680533

doc/03-May-2024-1,101932

ext/03-May-2024-38,20225,019

src/03-May-2024-146,26294,575

test/03-May-2024-272,605256,888

tool/03-May-2024-13,30410,286

Makefile.arm-wince-mingw32ce-gccD03-May-20244 KiB13923

Makefile.inD03-May-202427.6 KiB948627

Makefile.linux-gccD03-May-20244.2 KiB14928

Makefile.vxworksD03-May-202420.1 KiB664400

READMED03-May-20241.7 KiB4030

VERSIOND03-May-20248 21

aclocal.m4D03-May-2024275.9 KiB7,9737,141

addopcodes.awkD03-May-20241.3 KiB3526

config.guessD03-May-202444.1 KiB1,5361,322

config.h.inD03-May-20242.7 KiB10570

config.subD03-May-202432.2 KiB1,6451,501

configureD03-May-2024436.2 KiB15,66812,516

configure.acD03-May-202419.7 KiB702641

install-shD03-May-20245.5 KiB252153

ltmain.shD03-May-2024239.4 KiB8,4626,520

main.mkD03-May-202417.8 KiB607437

manifestD03-May-202455.4 KiB937936

manifest.uuidD03-May-202441 21

mkdll.shD03-May-20241.6 KiB5041

mkextu.shD03-May-2024420 145

mkextw.shD03-May-2024640 2318

mkopcodec.awkD03-May-2024961 3221

mkopcodeh.awkD03-May-20244.8 KiB162111

mkso.shD03-May-2024937 3324

publish.shD03-May-20243.9 KiB13981

publish_osx.shD03-May-2024849 3617

spec.templateD03-May-20241.8 KiB6854

sqlite.pc.inD03-May-2024258 1411

sqlite3.1D03-May-20246.6 KiB230195

sqlite3.pc.inD03-May-2024259 1411

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