2004-06-30 13:41:55 +02:00
|
|
|
#!/usr/make
|
|
|
|
#
|
|
|
|
# Makefile for SQLITE
|
|
|
|
#
|
|
|
|
# This makefile is suppose to be configured automatically using the
|
|
|
|
# autoconf. But if that does not work for you, you can configure
|
|
|
|
# the makefile manually. Just set the parameters below to values that
|
|
|
|
# work well for your system.
|
|
|
|
#
|
|
|
|
# If the configure script does not work out-of-the-box, you might
|
|
|
|
# be able to get it to work by giving it some hints. See the comment
|
|
|
|
# at the beginning of configure.in for additional information.
|
|
|
|
#
|
|
|
|
|
|
|
|
# The toplevel directory of the source tree. This is the directory
|
|
|
|
# that contains this "Makefile.in" and the "configure.in" script.
|
|
|
|
#
|
2015-01-15 16:47:06 +01:00
|
|
|
TOP = @abs_srcdir@
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
# C Compiler and options for use in building executables that
|
|
|
|
# will run on the platform that is doing the build.
|
|
|
|
#
|
|
|
|
BCC = @BUILD_CC@ @BUILD_CFLAGS@
|
|
|
|
|
2015-01-01 20:53:10 +01:00
|
|
|
# TCC is the C Compile and options for use in building executables that
|
2004-06-30 13:41:55 +02:00
|
|
|
# will run on the target platform. (BCC and TCC are usually the
|
2015-01-01 20:53:10 +01:00
|
|
|
# same unless your are cross-compiling.) Separate CC and CFLAGS macros
|
|
|
|
# are provide so that these aspects of the build process can be changed
|
|
|
|
# on the "make" command-line. Ex: "make CC=clang CFLAGS=-fsanitize=undefined"
|
2004-06-30 13:41:55 +02:00
|
|
|
#
|
2015-01-01 20:53:10 +01:00
|
|
|
CC = @CC@
|
|
|
|
CFLAGS = @CPPFLAGS@ @CFLAGS@
|
2015-01-07 15:41:18 +01:00
|
|
|
TCC = $(CC) $(CFLAGS) -I. -I${TOP}/src -I${TOP}/ext/rtree -I${TOP}/ext/fts3
|
2005-01-03 22:28:56 +01:00
|
|
|
|
2008-05-07 04:42:01 +02:00
|
|
|
# Define this for the autoconf-based build, so that the code knows it can
|
|
|
|
# include the generated config.h
|
|
|
|
#
|
2012-01-14 04:34:24 +01:00
|
|
|
TCC += -D_HAVE_SQLITE_CONFIG_H -DBUILD_sqlite
|
2008-05-07 04:42:01 +02:00
|
|
|
|
2005-01-03 22:28:56 +01:00
|
|
|
# Define -DNDEBUG to compile without debugging (i.e., for production usage)
|
|
|
|
# Omitting the define will cause extra debugging code to be inserted and
|
|
|
|
# includes extra comments when "EXPLAIN stmt" is used.
|
|
|
|
#
|
2015-01-10 15:27:17 +01:00
|
|
|
TCC += @TARGET_DEBUG@
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
# Compiler options needed for programs that use the TCL library.
|
|
|
|
#
|
2004-12-10 04:08:12 +01:00
|
|
|
TCC += @TCL_INCLUDE_SPEC@
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
# The library that programs using TCL must link against.
|
|
|
|
#
|
2012-12-06 01:16:51 +01:00
|
|
|
LIBTCL = @TCL_LIB_SPEC@
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
# Compiler options needed for programs that use the readline() library.
|
|
|
|
#
|
|
|
|
READLINE_FLAGS = -DHAVE_READLINE=@TARGET_HAVE_READLINE@ @TARGET_READLINE_INC@
|
|
|
|
|
|
|
|
# The library that programs using readline() must link against.
|
|
|
|
#
|
|
|
|
LIBREADLINE = @TARGET_READLINE_LIBS@
|
|
|
|
|
|
|
|
# Should the database engine be compiled threadsafe
|
|
|
|
#
|
2007-09-03 18:12:09 +02:00
|
|
|
TCC += -DSQLITE_THREADSAFE=@SQLITE_THREADSAFE@
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-03-09 03:20:11 +01:00
|
|
|
# Any target libraries which libsqlite must be linked against
|
|
|
|
#
|
2007-02-17 15:46:31 +01:00
|
|
|
TLIBS = @LIBS@
|
2006-01-23 19:06:52 +01:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
# Flags controlling use of the in memory btree implementation
|
|
|
|
#
|
2008-06-26 12:54:12 +02:00
|
|
|
# SQLITE_TEMP_STORE is 0 to force temporary tables to be in a file, 1 to
|
2004-06-30 13:41:55 +02:00
|
|
|
# default to file, 2 to default to memory, and 3 to force temporary
|
|
|
|
# tables to always be in memory.
|
|
|
|
#
|
2008-06-26 12:54:12 +02:00
|
|
|
TEMP_STORE = -DSQLITE_TEMP_STORE=@TEMP_STORE@
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-07-22 07:05:01 +02:00
|
|
|
# Enable/disable loadable extensions, and other optional features
|
2008-10-22 20:27:31 +02:00
|
|
|
# based on configuration. (-DSQLITE_OMIT*, -DSQLITE_ENABLE*).
|
|
|
|
# The same set of OMIT and ENABLE flags should be passed to the
|
|
|
|
# LEMON parser generator and the mkkeywordhash tool as well.
|
2008-07-22 07:05:01 +02:00
|
|
|
OPT_FEATURE_FLAGS = @OPT_FEATURE_FLAGS@
|
|
|
|
|
|
|
|
TCC += $(OPT_FEATURE_FLAGS)
|
2008-03-06 05:14:17 +01:00
|
|
|
|
2008-10-22 20:27:31 +02:00
|
|
|
# Add in any optional parameters specified on the make commane line
|
|
|
|
# ie. make "OPTS=-DSQLITE_ENABLE_FOO=1 -DSQLITE_OMIT_FOO=1".
|
|
|
|
TCC += $(OPTS)
|
|
|
|
|
2004-11-27 16:52:16 +01:00
|
|
|
# Version numbers and release number for the SQLite being compiled.
|
|
|
|
#
|
|
|
|
VERSION = @VERSION@
|
2005-02-05 08:33:34 +01:00
|
|
|
VERSION_NUMBER = @VERSION_NUMBER@
|
2004-11-27 16:52:16 +01:00
|
|
|
RELEASE = @RELEASE@
|
|
|
|
|
2004-11-25 14:50:01 +01:00
|
|
|
# Filename extensions
|
|
|
|
#
|
|
|
|
BEXE = @BUILD_EXEEXT@
|
|
|
|
TEXE = @TARGET_EXEEXT@
|
|
|
|
|
2004-11-27 16:52:16 +01:00
|
|
|
# The following variable is "1" if the configure script was able to locate
|
|
|
|
# the tclConfig.sh file. It is an empty string otherwise. When this
|
|
|
|
# variable is "1", the TCL extension library (libtclsqlite3.so) is built
|
|
|
|
# and installed.
|
2004-11-25 14:50:01 +01:00
|
|
|
#
|
|
|
|
HAVE_TCL = @HAVE_TCL@
|
|
|
|
|
2008-03-09 03:51:10 +01:00
|
|
|
# This is the command to use for tclsh - normally just "tclsh", but we may
|
|
|
|
# know the specific version we want to use
|
|
|
|
#
|
|
|
|
TCLSH_CMD = @TCLSH_CMD@
|
|
|
|
|
2009-01-28 05:46:14 +01:00
|
|
|
# Where do we want to install the tcl plugin
|
|
|
|
#
|
|
|
|
TCLLIBDIR = @TCLLIBDIR@
|
|
|
|
|
2004-11-27 16:52:16 +01:00
|
|
|
# The suffix used on shared libraries. Ex: ".dll", ".so", ".dylib"
|
|
|
|
#
|
|
|
|
SHLIB_SUFFIX = @TCL_SHLIB_SUFFIX@
|
|
|
|
|
2008-04-01 04:45:22 +02:00
|
|
|
# If gcov support was enabled by the configure script, add the appropriate
|
|
|
|
# flags here. It's not always as easy as just having the user add the right
|
|
|
|
# CFLAGS / LDFLAGS, because libtool wants to use CFLAGS when linking, which
|
|
|
|
# causes build errors with -fprofile-arcs -ftest-coverage with some GCCs.
|
|
|
|
# Supposedly GCC does the right thing if you use --coverage, but in
|
|
|
|
# practice it still fails. See:
|
|
|
|
#
|
|
|
|
# http://www.mail-archive.com/debian-gcc@lists.debian.org/msg26197.html
|
|
|
|
#
|
|
|
|
# for more info.
|
|
|
|
#
|
2008-10-22 20:27:31 +02:00
|
|
|
GCOV_CFLAGS1 = -DSQLITE_COVERAGE_TEST=1 -fprofile-arcs -ftest-coverage
|
2008-04-01 04:45:22 +02:00
|
|
|
GCOV_LDFLAGS1 = -lgcov
|
|
|
|
USE_GCOV = @USE_GCOV@
|
|
|
|
LTCOMPILE_EXTRAS += $(GCOV_CFLAGS$(USE_GCOV))
|
|
|
|
LTLINK_EXTRAS += $(GCOV_LDFLAGS$(USE_GCOV))
|
|
|
|
|
|
|
|
|
2004-11-27 16:52:16 +01:00
|
|
|
# The directory into which to store package information for
|
|
|
|
|
|
|
|
# Some standard variables and programs
|
|
|
|
#
|
2008-03-07 03:20:56 +01:00
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
2004-11-27 16:52:16 +01:00
|
|
|
libdir = @libdir@
|
2008-08-04 06:28:18 +02:00
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
2008-03-06 09:09:12 +01:00
|
|
|
bindir = @bindir@
|
|
|
|
includedir = @includedir@
|
2004-11-27 16:52:16 +01:00
|
|
|
INSTALL = @INSTALL@
|
|
|
|
LIBTOOL = ./libtool
|
|
|
|
ALLOWRELEASE = @ALLOWRELEASE@
|
|
|
|
|
|
|
|
# libtool compile/link/install
|
2008-04-01 04:45:22 +02:00
|
|
|
LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(TCC) $(LTCOMPILE_EXTRAS)
|
2008-10-12 03:49:41 +02:00
|
|
|
LTLINK = $(LIBTOOL) --mode=link $(TCC) $(LTCOMPILE_EXTRAS) @LDFLAGS@ $(LTLINK_EXTRAS)
|
2004-11-27 16:52:16 +01:00
|
|
|
LTINSTALL = $(LIBTOOL) --mode=install $(INSTALL)
|
|
|
|
|
2006-01-23 19:06:52 +01:00
|
|
|
# nawk compatible awk.
|
|
|
|
NAWK = @AWK@
|
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
# You should not have to change anything below this line
|
|
|
|
###############################################################################
|
2004-11-27 16:52:16 +01:00
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
USE_AMALGAMATION = @USE_AMALGAMATION@
|
|
|
|
|
2008-03-04 20:03:08 +01:00
|
|
|
# Object files for the SQLite library (non-amalgamation).
|
|
|
|
#
|
2010-07-06 22:37:09 +02:00
|
|
|
LIBOBJS0 = alter.lo analyze.lo attach.lo auth.lo \
|
|
|
|
backup.lo bitvec.lo btmutex.lo btree.lo build.lo \
|
2010-10-21 14:34:29 +02:00
|
|
|
callback.lo complete.lo ctime.lo date.lo delete.lo \
|
|
|
|
expr.lo fault.lo fkey.lo \
|
2012-05-28 17:32:09 +02:00
|
|
|
fts3.lo fts3_aux.lo fts3_expr.lo fts3_hash.lo fts3_icu.lo \
|
|
|
|
fts3_porter.lo fts3_snippet.lo fts3_tokenizer.lo fts3_tokenizer1.lo \
|
2013-04-22 17:30:37 +02:00
|
|
|
fts3_tokenize_vtab.lo \
|
2012-05-28 17:32:09 +02:00
|
|
|
fts3_unicode.lo fts3_unicode2.lo fts3_write.lo \
|
2010-07-06 22:37:09 +02:00
|
|
|
func.lo global.lo hash.lo \
|
|
|
|
icu.lo insert.lo journal.lo legacy.lo loadext.lo \
|
|
|
|
main.lo malloc.lo mem0.lo mem1.lo mem2.lo mem3.lo mem5.lo \
|
|
|
|
memjournal.lo \
|
2012-06-21 15:00:37 +02:00
|
|
|
mutex.lo mutex_noop.lo mutex_unix.lo mutex_w32.lo \
|
|
|
|
notify.lo opcodes.lo os.lo os_unix.lo os_win.lo \
|
2010-07-06 22:37:09 +02:00
|
|
|
pager.lo parse.lo pcache.lo pcache1.lo pragma.lo prepare.lo printf.lo \
|
|
|
|
random.lo resolve.lo rowset.lo rtree.lo select.lo status.lo \
|
2012-07-21 21:40:42 +02:00
|
|
|
table.lo threads.lo tokenize.lo trigger.lo \
|
2010-07-06 22:37:09 +02:00
|
|
|
update.lo util.lo vacuum.lo \
|
2011-08-12 18:34:42 +02:00
|
|
|
vdbe.lo vdbeapi.lo vdbeaux.lo vdbeblob.lo vdbemem.lo vdbesort.lo \
|
|
|
|
vdbetrace.lo wal.lo walker.lo where.lo utf.lo vtab.lo
|
2008-03-04 20:03:08 +01:00
|
|
|
|
|
|
|
# Object files for the amalgamation.
|
|
|
|
#
|
2010-07-06 22:37:09 +02:00
|
|
|
LIBOBJS1 = sqlite3.lo
|
2008-03-04 20:03:08 +01:00
|
|
|
|
|
|
|
# Determine the real value of LIBOBJ based on the 'configure' script
|
|
|
|
#
|
2010-07-06 22:37:09 +02:00
|
|
|
LIBOBJ = $(LIBOBJS$(USE_AMALGAMATION))
|
2008-03-04 20:03:08 +01:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
# All of the source code files.
|
|
|
|
#
|
|
|
|
SRC = \
|
2005-02-15 21:47:57 +01:00
|
|
|
$(TOP)/src/alter.c \
|
2005-07-08 14:13:04 +02:00
|
|
|
$(TOP)/src/analyze.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/attach.c \
|
|
|
|
$(TOP)/src/auth.c \
|
2009-02-03 17:51:24 +01:00
|
|
|
$(TOP)/src/backup.c \
|
2008-02-26 04:45:59 +01:00
|
|
|
$(TOP)/src/bitvec.c \
|
2007-08-28 04:27:51 +02:00
|
|
|
$(TOP)/src/btmutex.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/btree.c \
|
|
|
|
$(TOP)/src/btree.h \
|
2008-03-13 19:28:03 +01:00
|
|
|
$(TOP)/src/btreeInt.h \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/build.c \
|
2005-05-24 14:01:00 +02:00
|
|
|
$(TOP)/src/callback.c \
|
2005-08-14 19:53:20 +02:00
|
|
|
$(TOP)/src/complete.c \
|
2010-02-23 21:08:35 +01:00
|
|
|
$(TOP)/src/ctime.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/date.c \
|
|
|
|
$(TOP)/src/delete.c \
|
|
|
|
$(TOP)/src/expr.c \
|
2008-01-22 22:30:53 +01:00
|
|
|
$(TOP)/src/fault.c \
|
2009-09-19 19:59:59 +02:00
|
|
|
$(TOP)/src/fkey.c \
|
2008-08-21 20:49:27 +02:00
|
|
|
$(TOP)/src/func.c \
|
2008-06-13 20:24:27 +02:00
|
|
|
$(TOP)/src/global.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/hash.c \
|
|
|
|
$(TOP)/src/hash.h \
|
2008-05-29 22:22:37 +02:00
|
|
|
$(TOP)/src/hwtime.h \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/insert.c \
|
2007-08-28 01:38:43 +02:00
|
|
|
$(TOP)/src/journal.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/legacy.c \
|
2006-06-08 17:28:43 +02:00
|
|
|
$(TOP)/src/loadext.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/main.c \
|
2007-05-07 15:11:10 +02:00
|
|
|
$(TOP)/src/malloc.c \
|
2008-10-28 19:58:20 +01:00
|
|
|
$(TOP)/src/mem0.c \
|
2007-08-28 01:38:43 +02:00
|
|
|
$(TOP)/src/mem1.c \
|
|
|
|
$(TOP)/src/mem2.c \
|
2007-10-19 19:47:24 +02:00
|
|
|
$(TOP)/src/mem3.c \
|
2008-03-02 06:34:10 +01:00
|
|
|
$(TOP)/src/mem5.c \
|
2008-10-21 06:30:31 +02:00
|
|
|
$(TOP)/src/memjournal.c \
|
2015-01-12 19:02:52 +01:00
|
|
|
$(TOP)/src/msvc.h \
|
2007-08-28 01:38:43 +02:00
|
|
|
$(TOP)/src/mutex.c \
|
2008-03-13 19:28:03 +01:00
|
|
|
$(TOP)/src/mutex.h \
|
2008-10-07 17:25:48 +02:00
|
|
|
$(TOP)/src/mutex_noop.c \
|
2007-08-28 18:34:42 +02:00
|
|
|
$(TOP)/src/mutex_unix.c \
|
|
|
|
$(TOP)/src/mutex_w32.c \
|
2009-03-16 15:48:18 +01:00
|
|
|
$(TOP)/src/notify.c \
|
2005-11-30 04:20:31 +01:00
|
|
|
$(TOP)/src/os.c \
|
2008-03-13 19:28:03 +01:00
|
|
|
$(TOP)/src/os.h \
|
|
|
|
$(TOP)/src/os_common.h \
|
2013-11-26 02:00:31 +01:00
|
|
|
$(TOP)/src/os_setup.h \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/os_unix.c \
|
|
|
|
$(TOP)/src/os_win.c \
|
2013-11-25 10:36:07 +01:00
|
|
|
$(TOP)/src/os_win.h \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/pager.c \
|
|
|
|
$(TOP)/src/pager.h \
|
|
|
|
$(TOP)/src/parse.y \
|
2008-08-20 16:49:23 +02:00
|
|
|
$(TOP)/src/pcache.c \
|
|
|
|
$(TOP)/src/pcache.h \
|
2008-11-13 15:28:28 +01:00
|
|
|
$(TOP)/src/pcache1.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/pragma.c \
|
2015-02-02 22:34:54 +01:00
|
|
|
$(TOP)/src/pragma.h \
|
2005-05-25 06:11:56 +02:00
|
|
|
$(TOP)/src/prepare.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/printf.c \
|
|
|
|
$(TOP)/src/random.c \
|
2008-08-20 18:35:10 +02:00
|
|
|
$(TOP)/src/resolve.c \
|
2008-12-04 21:40:10 +01:00
|
|
|
$(TOP)/src/rowset.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/select.c \
|
2008-06-19 02:16:08 +02:00
|
|
|
$(TOP)/src/status.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/shell.c \
|
|
|
|
$(TOP)/src/sqlite.h.in \
|
2008-03-13 19:28:03 +01:00
|
|
|
$(TOP)/src/sqlite3ext.h \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/sqliteInt.h \
|
2008-03-13 19:28:03 +01:00
|
|
|
$(TOP)/src/sqliteLimit.h \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/table.c \
|
2012-07-21 21:40:42 +02:00
|
|
|
$(TOP)/src/threads.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/tclsqlite.c \
|
|
|
|
$(TOP)/src/tokenize.c \
|
|
|
|
$(TOP)/src/trigger.c \
|
|
|
|
$(TOP)/src/utf.c \
|
|
|
|
$(TOP)/src/update.c \
|
|
|
|
$(TOP)/src/util.c \
|
|
|
|
$(TOP)/src/vacuum.c \
|
|
|
|
$(TOP)/src/vdbe.c \
|
|
|
|
$(TOP)/src/vdbe.h \
|
|
|
|
$(TOP)/src/vdbeapi.c \
|
|
|
|
$(TOP)/src/vdbeaux.c \
|
2007-05-17 18:38:30 +02:00
|
|
|
$(TOP)/src/vdbeblob.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/vdbemem.c \
|
2011-08-12 18:34:42 +02:00
|
|
|
$(TOP)/src/vdbesort.c \
|
2009-11-25 19:03:42 +01:00
|
|
|
$(TOP)/src/vdbetrace.c \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/vdbeInt.h \
|
2006-06-12 01:41:55 +02:00
|
|
|
$(TOP)/src/vtab.c \
|
2015-03-02 23:06:43 +01:00
|
|
|
$(TOP)/src/vxworks.h \
|
2010-04-26 02:19:45 +02:00
|
|
|
$(TOP)/src/wal.c \
|
|
|
|
$(TOP)/src/wal.h \
|
2008-08-20 18:35:10 +02:00
|
|
|
$(TOP)/src/walker.c \
|
2013-11-12 19:37:25 +01:00
|
|
|
$(TOP)/src/where.c \
|
|
|
|
$(TOP)/src/whereInt.h
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2006-10-03 21:12:32 +02:00
|
|
|
# Source code for extensions
|
|
|
|
#
|
|
|
|
SRC += \
|
|
|
|
$(TOP)/ext/fts1/fts1.c \
|
|
|
|
$(TOP)/ext/fts1/fts1.h \
|
|
|
|
$(TOP)/ext/fts1/fts1_hash.c \
|
|
|
|
$(TOP)/ext/fts1/fts1_hash.h \
|
|
|
|
$(TOP)/ext/fts1/fts1_porter.c \
|
|
|
|
$(TOP)/ext/fts1/fts1_tokenizer.h \
|
|
|
|
$(TOP)/ext/fts1/fts1_tokenizer1.c
|
2008-03-02 06:40:05 +01:00
|
|
|
SRC += \
|
|
|
|
$(TOP)/ext/fts2/fts2.c \
|
|
|
|
$(TOP)/ext/fts2/fts2.h \
|
|
|
|
$(TOP)/ext/fts2/fts2_hash.c \
|
|
|
|
$(TOP)/ext/fts2/fts2_hash.h \
|
|
|
|
$(TOP)/ext/fts2/fts2_icu.c \
|
|
|
|
$(TOP)/ext/fts2/fts2_porter.c \
|
|
|
|
$(TOP)/ext/fts2/fts2_tokenizer.h \
|
|
|
|
$(TOP)/ext/fts2/fts2_tokenizer.c \
|
|
|
|
$(TOP)/ext/fts2/fts2_tokenizer1.c
|
|
|
|
SRC += \
|
|
|
|
$(TOP)/ext/fts3/fts3.c \
|
|
|
|
$(TOP)/ext/fts3/fts3.h \
|
2009-11-19 16:25:25 +01:00
|
|
|
$(TOP)/ext/fts3/fts3Int.h \
|
2011-02-09 16:25:17 +01:00
|
|
|
$(TOP)/ext/fts3/fts3_aux.c \
|
2009-01-02 16:47:01 +01:00
|
|
|
$(TOP)/ext/fts3/fts3_expr.c \
|
2008-03-02 06:40:05 +01:00
|
|
|
$(TOP)/ext/fts3/fts3_hash.c \
|
|
|
|
$(TOP)/ext/fts3/fts3_hash.h \
|
|
|
|
$(TOP)/ext/fts3/fts3_icu.c \
|
|
|
|
$(TOP)/ext/fts3/fts3_porter.c \
|
2009-11-19 16:25:25 +01:00
|
|
|
$(TOP)/ext/fts3/fts3_snippet.c \
|
2008-03-02 06:40:05 +01:00
|
|
|
$(TOP)/ext/fts3/fts3_tokenizer.h \
|
|
|
|
$(TOP)/ext/fts3/fts3_tokenizer.c \
|
2009-11-19 16:25:25 +01:00
|
|
|
$(TOP)/ext/fts3/fts3_tokenizer1.c \
|
2013-04-22 17:30:37 +02:00
|
|
|
$(TOP)/ext/fts3/fts3_tokenize_vtab.c \
|
2012-05-28 17:32:09 +02:00
|
|
|
$(TOP)/ext/fts3/fts3_unicode.c \
|
|
|
|
$(TOP)/ext/fts3/fts3_unicode2.c \
|
2009-11-19 16:25:25 +01:00
|
|
|
$(TOP)/ext/fts3/fts3_write.c
|
2008-03-02 06:40:05 +01:00
|
|
|
SRC += \
|
2008-09-08 10:08:09 +02:00
|
|
|
$(TOP)/ext/icu/sqliteicu.h \
|
2008-03-02 06:40:05 +01:00
|
|
|
$(TOP)/ext/icu/icu.c
|
2008-05-28 19:31:17 +02:00
|
|
|
SRC += \
|
|
|
|
$(TOP)/ext/rtree/rtree.h \
|
|
|
|
$(TOP)/ext/rtree/rtree.c
|
2006-10-03 21:12:32 +02:00
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
|
|
|
|
# Generated source code files
|
2004-06-30 13:41:55 +02:00
|
|
|
#
|
2010-07-06 22:37:09 +02:00
|
|
|
SRC += \
|
|
|
|
keywordhash.h \
|
|
|
|
opcodes.c \
|
|
|
|
opcodes.h \
|
|
|
|
parse.c \
|
|
|
|
parse.h \
|
|
|
|
config.h \
|
|
|
|
sqlite3.h
|
2008-03-14 05:11:03 +01:00
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
# Source code to the test files.
|
2008-03-14 05:11:03 +01:00
|
|
|
#
|
|
|
|
TESTSRC = \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/test1.c \
|
|
|
|
$(TOP)/src/test2.c \
|
|
|
|
$(TOP)/src/test3.c \
|
|
|
|
$(TOP)/src/test4.c \
|
|
|
|
$(TOP)/src/test5.c \
|
2005-11-26 01:25:00 +01:00
|
|
|
$(TOP)/src/test6.c \
|
2006-01-10 00:50:11 +01:00
|
|
|
$(TOP)/src/test7.c \
|
2006-06-12 01:41:55 +02:00
|
|
|
$(TOP)/src/test8.c \
|
2007-03-29 14:19:11 +02:00
|
|
|
$(TOP)/src/test9.c \
|
2006-08-23 22:07:20 +02:00
|
|
|
$(TOP)/src/test_autoext.c \
|
2006-01-10 00:50:11 +01:00
|
|
|
$(TOP)/src/test_async.c \
|
2009-02-03 17:51:24 +01:00
|
|
|
$(TOP)/src/test_backup.c \
|
2014-12-05 01:17:39 +01:00
|
|
|
$(TOP)/src/test_blob.c \
|
2007-05-05 20:39:25 +02:00
|
|
|
$(TOP)/src/test_btree.c \
|
2007-05-08 03:08:49 +02:00
|
|
|
$(TOP)/src/test_config.c \
|
2010-05-06 17:35:59 +02:00
|
|
|
$(TOP)/src/test_demovfs.c \
|
2008-01-22 12:50:13 +01:00
|
|
|
$(TOP)/src/test_devsym.c \
|
2013-03-03 21:26:46 +01:00
|
|
|
$(TOP)/src/test_fs.c \
|
2008-03-19 17:08:53 +01:00
|
|
|
$(TOP)/src/test_func.c \
|
2007-04-06 17:02:13 +02:00
|
|
|
$(TOP)/src/test_hexio.c \
|
2009-08-21 04:07:09 +02:00
|
|
|
$(TOP)/src/test_init.c \
|
2009-11-10 18:24:37 +01:00
|
|
|
$(TOP)/src/test_intarray.c \
|
2008-12-22 11:58:46 +01:00
|
|
|
$(TOP)/src/test_journal.c \
|
2007-08-28 01:38:43 +02:00
|
|
|
$(TOP)/src/test_malloc.c \
|
2010-11-05 01:00:42 +01:00
|
|
|
$(TOP)/src/test_multiplex.c \
|
2008-07-09 00:15:49 +02:00
|
|
|
$(TOP)/src/test_mutex.c \
|
2007-10-05 17:04:12 +02:00
|
|
|
$(TOP)/src/test_onefile.c \
|
2008-04-14 01:13:39 +02:00
|
|
|
$(TOP)/src/test_osinst.c \
|
2008-11-19 02:20:26 +01:00
|
|
|
$(TOP)/src/test_pcache.c \
|
2010-10-06 22:25:00 +02:00
|
|
|
$(TOP)/src/test_quota.c \
|
2010-08-28 20:58:00 +02:00
|
|
|
$(TOP)/src/test_rtree.c \
|
2006-06-15 17:59:19 +02:00
|
|
|
$(TOP)/src/test_schema.c \
|
2006-01-25 16:55:37 +01:00
|
|
|
$(TOP)/src/test_server.c \
|
2010-11-24 14:04:22 +01:00
|
|
|
$(TOP)/src/test_superlock.c \
|
2011-04-01 22:54:38 +02:00
|
|
|
$(TOP)/src/test_syscall.c \
|
2010-07-12 10:39:37 +02:00
|
|
|
$(TOP)/src/test_stat.c \
|
2006-06-14 01:51:34 +02:00
|
|
|
$(TOP)/src/test_tclvar.c \
|
2009-08-21 04:07:09 +02:00
|
|
|
$(TOP)/src/test_thread.c \
|
2010-05-06 17:35:59 +02:00
|
|
|
$(TOP)/src/test_vfs.c \
|
2011-05-17 16:41:36 +02:00
|
|
|
$(TOP)/src/test_wsd.c \
|
2011-06-13 11:11:01 +02:00
|
|
|
$(TOP)/ext/fts3/fts3_term.c \
|
|
|
|
$(TOP)/ext/fts3/fts3_test.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2013-04-25 16:31:46 +02:00
|
|
|
# Statically linked extensions
|
|
|
|
#
|
|
|
|
TESTSRC += \
|
2013-04-25 18:42:55 +02:00
|
|
|
$(TOP)/ext/misc/amatch.c \
|
|
|
|
$(TOP)/ext/misc/closure.c \
|
2014-11-10 17:49:56 +01:00
|
|
|
$(TOP)/ext/misc/eval.c \
|
2014-06-16 14:44:32 +02:00
|
|
|
$(TOP)/ext/misc/fileio.c \
|
2013-04-25 16:31:46 +02:00
|
|
|
$(TOP)/ext/misc/fuzzer.c \
|
2013-04-25 18:42:55 +02:00
|
|
|
$(TOP)/ext/misc/ieee754.c \
|
2013-04-25 21:31:33 +02:00
|
|
|
$(TOP)/ext/misc/nextchar.c \
|
2013-05-28 22:25:54 +02:00
|
|
|
$(TOP)/ext/misc/percentile.c \
|
2013-04-25 16:31:46 +02:00
|
|
|
$(TOP)/ext/misc/regexp.c \
|
2013-04-25 16:59:01 +02:00
|
|
|
$(TOP)/ext/misc/spellfix.c \
|
2013-10-14 23:14:42 +02:00
|
|
|
$(TOP)/ext/misc/totype.c \
|
2013-04-25 16:31:46 +02:00
|
|
|
$(TOP)/ext/misc/wholenumber.c
|
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
# Source code to the library files needed by the test fixture
|
|
|
|
#
|
|
|
|
TESTSRC2 = \
|
|
|
|
$(TOP)/src/attach.c \
|
|
|
|
$(TOP)/src/backup.c \
|
|
|
|
$(TOP)/src/bitvec.c \
|
|
|
|
$(TOP)/src/btree.c \
|
|
|
|
$(TOP)/src/build.c \
|
|
|
|
$(TOP)/src/ctime.c \
|
|
|
|
$(TOP)/src/date.c \
|
|
|
|
$(TOP)/src/expr.c \
|
|
|
|
$(TOP)/src/func.c \
|
|
|
|
$(TOP)/src/insert.c \
|
|
|
|
$(TOP)/src/wal.c \
|
2013-05-15 22:35:13 +02:00
|
|
|
$(TOP)/src/main.c \
|
2010-07-06 22:37:09 +02:00
|
|
|
$(TOP)/src/mem5.c \
|
|
|
|
$(TOP)/src/os.c \
|
|
|
|
$(TOP)/src/os_unix.c \
|
|
|
|
$(TOP)/src/os_win.c \
|
|
|
|
$(TOP)/src/pager.c \
|
|
|
|
$(TOP)/src/pragma.c \
|
|
|
|
$(TOP)/src/prepare.c \
|
|
|
|
$(TOP)/src/printf.c \
|
|
|
|
$(TOP)/src/random.c \
|
|
|
|
$(TOP)/src/pcache.c \
|
|
|
|
$(TOP)/src/pcache1.c \
|
|
|
|
$(TOP)/src/select.c \
|
|
|
|
$(TOP)/src/tokenize.c \
|
|
|
|
$(TOP)/src/utf.c \
|
|
|
|
$(TOP)/src/util.c \
|
|
|
|
$(TOP)/src/vdbeapi.c \
|
|
|
|
$(TOP)/src/vdbeaux.c \
|
|
|
|
$(TOP)/src/vdbe.c \
|
|
|
|
$(TOP)/src/vdbemem.c \
|
|
|
|
$(TOP)/src/vdbetrace.c \
|
|
|
|
$(TOP)/src/where.c \
|
|
|
|
parse.c \
|
|
|
|
$(TOP)/ext/fts3/fts3.c \
|
2011-02-09 16:25:17 +01:00
|
|
|
$(TOP)/ext/fts3/fts3_aux.c \
|
2010-07-06 22:37:09 +02:00
|
|
|
$(TOP)/ext/fts3/fts3_expr.c \
|
2011-05-12 23:01:12 +02:00
|
|
|
$(TOP)/ext/fts3/fts3_term.c \
|
2010-07-06 22:37:09 +02:00
|
|
|
$(TOP)/ext/fts3/fts3_tokenizer.c \
|
|
|
|
$(TOP)/ext/fts3/fts3_write.c \
|
|
|
|
$(TOP)/ext/async/sqlite3async.c
|
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
# Header files used by all library source files.
|
|
|
|
#
|
|
|
|
HDR = \
|
|
|
|
$(TOP)/src/btree.h \
|
2007-05-05 13:48:52 +02:00
|
|
|
$(TOP)/src/btreeInt.h \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/hash.h \
|
2008-05-29 22:22:37 +02:00
|
|
|
$(TOP)/src/hwtime.h \
|
2010-07-06 22:37:09 +02:00
|
|
|
keywordhash.h \
|
2015-01-12 19:02:52 +01:00
|
|
|
$(TOP)/src/msvc.h \
|
2007-08-28 18:34:42 +02:00
|
|
|
$(TOP)/src/mutex.h \
|
2004-06-30 13:41:55 +02:00
|
|
|
opcodes.h \
|
|
|
|
$(TOP)/src/os.h \
|
|
|
|
$(TOP)/src/os_common.h \
|
2013-11-26 02:00:31 +01:00
|
|
|
$(TOP)/src/os_setup.h \
|
2013-11-25 10:36:07 +01:00
|
|
|
$(TOP)/src/os_win.h \
|
2010-07-06 22:37:09 +02:00
|
|
|
$(TOP)/src/pager.h \
|
|
|
|
$(TOP)/src/pcache.h \
|
|
|
|
parse.h \
|
2015-02-02 22:34:54 +01:00
|
|
|
$(TOP)/src/pragma.h \
|
2010-07-06 22:37:09 +02:00
|
|
|
sqlite3.h \
|
2006-06-08 17:28:43 +02:00
|
|
|
$(TOP)/src/sqlite3ext.h \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/sqliteInt.h \
|
2010-07-06 22:37:09 +02:00
|
|
|
$(TOP)/src/sqliteLimit.h \
|
2004-06-30 13:41:55 +02:00
|
|
|
$(TOP)/src/vdbe.h \
|
2008-03-13 19:28:03 +01:00
|
|
|
$(TOP)/src/vdbeInt.h \
|
2015-03-02 23:06:43 +01:00
|
|
|
$(TOP)/src/vxworks.h \
|
2013-11-12 19:37:25 +01:00
|
|
|
$(TOP)/src/whereInt.h \
|
2008-03-20 03:25:35 +01:00
|
|
|
config.h
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2006-10-03 21:12:32 +02:00
|
|
|
# Header files used by extensions
|
|
|
|
#
|
2010-07-06 22:37:09 +02:00
|
|
|
EXTHDR += \
|
2006-10-03 21:12:32 +02:00
|
|
|
$(TOP)/ext/fts1/fts1.h \
|
|
|
|
$(TOP)/ext/fts1/fts1_hash.h \
|
|
|
|
$(TOP)/ext/fts1/fts1_tokenizer.h
|
2010-07-06 22:37:09 +02:00
|
|
|
EXTHDR += \
|
2008-03-02 06:40:05 +01:00
|
|
|
$(TOP)/ext/fts2/fts2.h \
|
|
|
|
$(TOP)/ext/fts2/fts2_hash.h \
|
|
|
|
$(TOP)/ext/fts2/fts2_tokenizer.h
|
2010-07-06 22:37:09 +02:00
|
|
|
EXTHDR += \
|
2008-03-02 06:40:05 +01:00
|
|
|
$(TOP)/ext/fts3/fts3.h \
|
2009-11-19 16:25:25 +01:00
|
|
|
$(TOP)/ext/fts3/fts3Int.h \
|
2008-03-02 06:40:05 +01:00
|
|
|
$(TOP)/ext/fts3/fts3_hash.h \
|
|
|
|
$(TOP)/ext/fts3/fts3_tokenizer.h
|
2010-07-06 22:37:09 +02:00
|
|
|
EXTHDR += \
|
2008-05-28 19:31:17 +02:00
|
|
|
$(TOP)/ext/rtree/rtree.h
|
2010-07-06 22:37:09 +02:00
|
|
|
EXTHDR += \
|
2008-09-08 10:08:09 +02:00
|
|
|
$(TOP)/ext/icu/sqliteicu.h
|
2010-08-28 20:58:00 +02:00
|
|
|
EXTHDR += \
|
|
|
|
$(TOP)/ext/rtree/sqlite3rtree.h
|
2006-10-03 21:12:32 +02:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
# This is the default Makefile target. The objects listed here
|
|
|
|
# are what get build when you type just "make" with no arguments.
|
|
|
|
#
|
2004-11-25 14:50:01 +01:00
|
|
|
all: sqlite3.h libsqlite3.la sqlite3$(TEXE) $(HAVE_TCL:1=libtclsqlite3.la)
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
Makefile: $(TOP)/Makefile.in
|
|
|
|
./config.status
|
|
|
|
|
2009-01-26 21:59:02 +01:00
|
|
|
sqlite3.pc: $(TOP)/sqlite3.pc.in
|
|
|
|
./config.status
|
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
libsqlite3.la: $(LIBOBJ)
|
2013-10-12 00:19:55 +02:00
|
|
|
$(LTLINK) -no-undefined -o $@ $(LIBOBJ) $(TLIBS) \
|
2008-03-13 20:55:20 +01:00
|
|
|
${ALLOWRELEASE} -rpath "$(libdir)" -version-info "8:6:8"
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
libtclsqlite3.la: tclsqlite.lo libsqlite3.la
|
2013-10-12 00:19:55 +02:00
|
|
|
$(LTLINK) -no-undefined -o $@ tclsqlite.lo \
|
2008-07-25 14:49:44 +02:00
|
|
|
libsqlite3.la @TCL_STUB_LIB_SPEC@ $(TLIBS) \
|
2009-01-28 05:46:14 +01:00
|
|
|
-rpath "$(TCLLIBDIR)" \
|
|
|
|
-version-info "8:6:8" \
|
|
|
|
-avoid-version
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2007-12-17 17:20:06 +01:00
|
|
|
sqlite3$(TEXE): $(TOP)/src/shell.c libsqlite3.la sqlite3.h
|
2008-03-09 03:20:11 +01:00
|
|
|
$(LTLINK) $(READLINE_FLAGS) \
|
2007-12-13 19:20:46 +01:00
|
|
|
-o $@ $(TOP)/src/shell.c libsqlite3.la \
|
2008-03-13 20:55:20 +01:00
|
|
|
$(LIBREADLINE) $(TLIBS) -rpath "$(libdir)"
|
2007-12-13 19:20:46 +01:00
|
|
|
|
2015-04-09 15:34:29 +02:00
|
|
|
sqldiff$(EXE): $(TOP)/tool/sqldiff.c sqlite3.c sqlite3.h
|
|
|
|
$(LTLINK) -o $@ $(TOP)/tool/sqldiff.c sqlite3.c $(TLIBS)
|
|
|
|
|
2015-04-17 16:30:49 +02:00
|
|
|
fuzzershell$(EXE): $(TOP)/tool/fuzzershell.c sqlite3.c sqlite3.h
|
|
|
|
$(LTLINK) -o $@ $(TOP)/tool/fuzzershell.c sqlite3.c $(TLIBS)
|
|
|
|
|
2013-04-08 16:28:33 +02:00
|
|
|
mptester$(EXE): sqlite3.c $(TOP)/mptest/mptest.c
|
|
|
|
$(LTLINK) -o $@ -I. $(TOP)/mptest/mptest.c sqlite3.c \
|
|
|
|
$(TLIBS) -rpath "$(libdir)"
|
|
|
|
|
2015-03-11 15:34:38 +01:00
|
|
|
MPTEST1=./mptester$(EXE) mptest.db $(TOP)/mptest/crash01.test --repeat 20
|
|
|
|
MPTEST2=./mptester$(EXE) mptest.db $(TOP)/mptest/multiwrite01.test --repeat 20
|
2014-12-30 21:40:32 +01:00
|
|
|
mptest: mptester$(EXE)
|
2015-03-11 15:34:38 +01:00
|
|
|
rm -f mptest.db
|
|
|
|
$(MPTEST1) --journalmode DELETE
|
|
|
|
$(MPTEST2) --journalmode WAL
|
|
|
|
$(MPTEST1) --journalmode WAL
|
|
|
|
$(MPTEST2) --journalmode PERSIST
|
|
|
|
$(MPTEST1) --journalmode PERSIST
|
|
|
|
$(MPTEST2) --journalmode TRUNCATE
|
|
|
|
$(MPTEST1) --journalmode TRUNCATE
|
|
|
|
$(MPTEST2) --journalmode DELETE
|
|
|
|
|
2013-04-08 16:28:33 +02:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
# This target creates a directory named "tsrc" and fills it with
|
|
|
|
# copies of all of the C source code and header files needed to
|
|
|
|
# build on the target system. Some of the C source code and header
|
|
|
|
# files are automatically generated. This target takes care of
|
|
|
|
# all that automatic generation.
|
|
|
|
#
|
2010-07-06 22:37:09 +02:00
|
|
|
.target_source: $(SRC) $(TOP)/tool/vdbe-compress.tcl
|
2004-06-30 13:41:55 +02:00
|
|
|
rm -rf tsrc
|
2010-07-06 22:37:09 +02:00
|
|
|
mkdir tsrc
|
|
|
|
cp -f $(SRC) tsrc
|
2004-06-30 13:41:55 +02:00
|
|
|
rm tsrc/sqlite.h.in tsrc/parse.y
|
2013-12-11 01:59:10 +01:00
|
|
|
$(TCLSH_CMD) $(TOP)/tool/vdbe-compress.tcl $(OPTS) <tsrc/vdbe.c >vdbe.new
|
2009-06-02 17:21:42 +02:00
|
|
|
mv vdbe.new tsrc/vdbe.c
|
2008-03-04 20:03:08 +01:00
|
|
|
touch .target_source
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2015-05-04 19:06:39 +02:00
|
|
|
sqlite3.c: .target_source $(TOP)/src/test_stat.c $(TOP)/tool/mksqlite3c.tcl
|
|
|
|
$(TCLSH_CMD) $(TOP)/tool/mksqlite3c.tcl --srcdir $(TOP)/src
|
2013-03-19 17:12:40 +01:00
|
|
|
cp tsrc/shell.c tsrc/sqlite3ext.h .
|
2007-04-05 20:34:58 +02:00
|
|
|
|
2011-11-07 17:46:43 +01:00
|
|
|
tclsqlite3.c: sqlite3.c
|
|
|
|
echo '#ifndef USE_SYSTEM_SQLITE' >tclsqlite3.c
|
|
|
|
cat sqlite3.c >>tclsqlite3.c
|
|
|
|
echo '#endif /* USE_SYSTEM_SQLITE */' >>tclsqlite3.c
|
|
|
|
cat $(TOP)/src/tclsqlite.c >>tclsqlite3.c
|
|
|
|
|
2011-07-22 13:16:39 +02:00
|
|
|
sqlite3-all.c: sqlite3.c $(TOP)/tool/split-sqlite3c.tcl
|
|
|
|
$(TCLSH_CMD) $(TOP)/tool/split-sqlite3c.tcl
|
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
# Rule to build the amalgamation
|
|
|
|
#
|
|
|
|
sqlite3.lo: sqlite3.c
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c sqlite3.c
|
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
# Rules to build the LEMON compiler generator
|
|
|
|
#
|
2009-07-03 19:09:28 +02:00
|
|
|
lemon$(BEXE): $(TOP)/tool/lemon.c $(TOP)/src/lempar.c
|
2008-03-14 00:28:22 +01:00
|
|
|
$(BCC) -o $@ $(TOP)/tool/lemon.c
|
2009-07-03 19:09:28 +02:00
|
|
|
cp $(TOP)/src/lempar.c .
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
# Rules to build individual *.o files from generated *.c files. This
|
|
|
|
# applies to:
|
2008-03-04 20:03:08 +01:00
|
|
|
#
|
2010-07-06 22:37:09 +02:00
|
|
|
# parse.o
|
|
|
|
# opcodes.o
|
|
|
|
#
|
|
|
|
parse.lo: parse.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c parse.c
|
2008-03-04 20:03:08 +01:00
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
opcodes.lo: opcodes.c
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c opcodes.c
|
|
|
|
|
|
|
|
# Rules to build individual *.o files from files in the src directory.
|
2004-06-30 13:41:55 +02:00
|
|
|
#
|
2005-02-15 21:47:57 +01:00
|
|
|
alter.lo: $(TOP)/src/alter.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/alter.c
|
2005-02-15 21:47:57 +01:00
|
|
|
|
2005-07-08 14:13:04 +02:00
|
|
|
analyze.lo: $(TOP)/src/analyze.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/analyze.c
|
2005-07-08 14:13:04 +02:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
attach.lo: $(TOP)/src/attach.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/attach.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
auth.lo: $(TOP)/src/auth.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/auth.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2009-02-20 23:27:41 +01:00
|
|
|
backup.lo: $(TOP)/src/backup.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/backup.c
|
|
|
|
|
2008-02-27 04:22:49 +01:00
|
|
|
bitvec.lo: $(TOP)/src/bitvec.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/bitvec.c
|
2008-02-27 04:22:49 +01:00
|
|
|
|
2007-08-28 04:27:51 +02:00
|
|
|
btmutex.lo: $(TOP)/src/btmutex.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/btmutex.c
|
2007-08-28 04:27:51 +02:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
btree.lo: $(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/btree.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
build.lo: $(TOP)/src/build.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/build.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2005-05-24 14:01:00 +02:00
|
|
|
callback.lo: $(TOP)/src/callback.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/callback.c
|
2005-05-24 14:01:00 +02:00
|
|
|
|
2005-08-14 19:53:20 +02:00
|
|
|
complete.lo: $(TOP)/src/complete.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/complete.c
|
2005-08-14 19:53:20 +02:00
|
|
|
|
2010-02-23 21:08:35 +01:00
|
|
|
ctime.lo: $(TOP)/src/ctime.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/ctime.c
|
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
date.lo: $(TOP)/src/date.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/date.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
delete.lo: $(TOP)/src/delete.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/delete.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
expr.lo: $(TOP)/src/expr.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/expr.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-01-22 22:30:53 +01:00
|
|
|
fault.lo: $(TOP)/src/fault.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/fault.c
|
2008-01-22 22:30:53 +01:00
|
|
|
|
2009-09-19 19:59:59 +02:00
|
|
|
fkey.lo: $(TOP)/src/fkey.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/fkey.c
|
|
|
|
|
2008-08-21 20:49:27 +02:00
|
|
|
func.lo: $(TOP)/src/func.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/func.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-06-13 20:24:27 +02:00
|
|
|
global.lo: $(TOP)/src/global.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/global.c
|
2008-06-13 20:24:27 +02:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
hash.lo: $(TOP)/src/hash.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/hash.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
insert.lo: $(TOP)/src/insert.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/insert.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2007-08-28 01:38:43 +02:00
|
|
|
journal.lo: $(TOP)/src/journal.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/journal.c
|
2007-08-28 01:38:43 +02:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
legacy.lo: $(TOP)/src/legacy.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/legacy.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2006-06-08 17:28:43 +02:00
|
|
|
loadext.lo: $(TOP)/src/loadext.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/loadext.c
|
2006-06-08 17:28:43 +02:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
main.lo: $(TOP)/src/main.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/main.c
|
|
|
|
|
2007-05-05 13:48:52 +02:00
|
|
|
malloc.lo: $(TOP)/src/malloc.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/malloc.c
|
|
|
|
|
2008-10-28 19:58:20 +01:00
|
|
|
mem0.lo: $(TOP)/src/mem0.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/mem0.c
|
|
|
|
|
2007-08-28 01:38:43 +02:00
|
|
|
mem1.lo: $(TOP)/src/mem1.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/mem1.c
|
|
|
|
|
|
|
|
mem2.lo: $(TOP)/src/mem2.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/mem2.c
|
|
|
|
|
2007-10-19 19:47:24 +02:00
|
|
|
mem3.lo: $(TOP)/src/mem3.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/mem3.c
|
|
|
|
|
2008-03-02 06:34:10 +01:00
|
|
|
mem5.lo: $(TOP)/src/mem5.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/mem5.c
|
|
|
|
|
2008-10-21 06:30:31 +02:00
|
|
|
memjournal.lo: $(TOP)/src/memjournal.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/memjournal.c
|
2008-10-21 06:30:31 +02:00
|
|
|
|
2007-08-28 01:38:43 +02:00
|
|
|
mutex.lo: $(TOP)/src/mutex.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/mutex.c
|
|
|
|
|
2008-10-07 17:25:48 +02:00
|
|
|
mutex_noop.lo: $(TOP)/src/mutex_noop.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/mutex_noop.c
|
|
|
|
|
2007-08-28 18:34:42 +02:00
|
|
|
mutex_unix.lo: $(TOP)/src/mutex_unix.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/mutex_unix.c
|
|
|
|
|
|
|
|
mutex_w32.lo: $(TOP)/src/mutex_w32.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/mutex_w32.c
|
|
|
|
|
2009-03-16 15:48:18 +01:00
|
|
|
notify.lo: $(TOP)/src/notify.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/notify.c
|
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
pager.lo: $(TOP)/src/pager.c $(HDR) $(TOP)/src/pager.h
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/pager.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-08-20 16:49:23 +02:00
|
|
|
pcache.lo: $(TOP)/src/pcache.c $(HDR) $(TOP)/src/pcache.h
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/pcache.c
|
2008-08-20 16:49:23 +02:00
|
|
|
|
2008-11-13 15:28:28 +01:00
|
|
|
pcache1.lo: $(TOP)/src/pcache1.c $(HDR) $(TOP)/src/pcache.h
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/pcache1.c
|
2008-11-13 15:28:28 +01:00
|
|
|
|
2005-11-30 04:20:31 +01:00
|
|
|
os.lo: $(TOP)/src/os.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/os.c
|
2005-11-30 04:20:31 +01:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
os_unix.lo: $(TOP)/src/os_unix.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/os_unix.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
os_win.lo: $(TOP)/src/os_win.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/os_win.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
pragma.lo: $(TOP)/src/pragma.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/pragma.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2005-05-25 06:11:56 +02:00
|
|
|
prepare.lo: $(TOP)/src/prepare.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/prepare.c
|
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
printf.lo: $(TOP)/src/printf.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/printf.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
random.lo: $(TOP)/src/random.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/random.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-08-20 18:35:10 +02:00
|
|
|
resolve.lo: $(TOP)/src/resolve.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/resolve.c
|
2008-08-20 18:35:10 +02:00
|
|
|
|
2008-12-04 21:40:10 +01:00
|
|
|
rowset.lo: $(TOP)/src/rowset.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/rowset.c
|
2008-12-04 21:40:10 +01:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
select.lo: $(TOP)/src/select.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/select.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-06-19 02:16:08 +02:00
|
|
|
status.lo: $(TOP)/src/status.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/status.c
|
2008-06-19 02:16:08 +02:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
table.lo: $(TOP)/src/table.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/table.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2012-07-21 21:40:42 +02:00
|
|
|
threads.lo: $(TOP)/src/threads.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/threads.c
|
|
|
|
|
2005-01-18 05:00:42 +01:00
|
|
|
tokenize.lo: $(TOP)/src/tokenize.c keywordhash.h $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/tokenize.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
trigger.lo: $(TOP)/src/trigger.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/trigger.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
update.lo: $(TOP)/src/update.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/update.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
utf.lo: $(TOP)/src/utf.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/utf.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
util.lo: $(TOP)/src/util.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/util.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
vacuum.lo: $(TOP)/src/vacuum.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/vacuum.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-03-13 19:28:03 +01:00
|
|
|
vdbe.lo: $(TOP)/src/vdbe.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/vdbe.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-03-13 19:28:03 +01:00
|
|
|
vdbeapi.lo: $(TOP)/src/vdbeapi.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/vdbeapi.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-03-13 19:28:03 +01:00
|
|
|
vdbeaux.lo: $(TOP)/src/vdbeaux.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/vdbeaux.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-03-13 19:28:03 +01:00
|
|
|
vdbeblob.lo: $(TOP)/src/vdbeblob.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/vdbeblob.c
|
2007-05-17 18:38:30 +02:00
|
|
|
|
2008-03-13 19:28:03 +01:00
|
|
|
vdbemem.lo: $(TOP)/src/vdbemem.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/vdbemem.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2011-08-12 18:34:42 +02:00
|
|
|
vdbesort.lo: $(TOP)/src/vdbesort.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/vdbesort.c
|
|
|
|
|
2009-11-25 19:03:42 +01:00
|
|
|
vdbetrace.lo: $(TOP)/src/vdbetrace.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/vdbetrace.c
|
|
|
|
|
2008-03-13 19:28:03 +01:00
|
|
|
vtab.lo: $(TOP)/src/vtab.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/vtab.c
|
2006-06-12 01:41:55 +02:00
|
|
|
|
2010-04-26 02:19:45 +02:00
|
|
|
wal.lo: $(TOP)/src/wal.c $(HDR)
|
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/wal.c
|
|
|
|
|
2008-08-20 18:35:10 +02:00
|
|
|
walker.lo: $(TOP)/src/walker.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/walker.c
|
2008-08-20 18:35:10 +02:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
where.lo: $(TOP)/src/where.c $(HDR)
|
2009-01-19 19:18:40 +01:00
|
|
|
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/where.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
tclsqlite.lo: $(TOP)/src/tclsqlite.c $(HDR)
|
|
|
|
$(LTCOMPILE) -DUSE_TCL_STUBS=1 -c $(TOP)/src/tclsqlite.c
|
|
|
|
|
2004-11-25 14:50:01 +01:00
|
|
|
tclsqlite-shell.lo: $(TOP)/src/tclsqlite.c $(HDR)
|
|
|
|
$(LTCOMPILE) -DTCLSH=1 -o $@ -c $(TOP)/src/tclsqlite.c
|
|
|
|
|
|
|
|
tclsqlite-stubs.lo: $(TOP)/src/tclsqlite.c $(HDR)
|
2010-08-19 16:41:58 +02:00
|
|
|
$(LTCOMPILE) -DUSE_TCL_STUBS=1 -o $@ -c $(TOP)/src/tclsqlite.c
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2008-03-14 00:28:22 +01:00
|
|
|
tclsqlite3$(TEXE): tclsqlite-shell.lo libsqlite3.la
|
|
|
|
$(LTLINK) -o $@ tclsqlite-shell.lo \
|
2004-06-30 13:41:55 +02:00
|
|
|
libsqlite3.la $(LIBTCL)
|
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
# Rules to build opcodes.c and opcodes.h
|
|
|
|
#
|
|
|
|
opcodes.c: opcodes.h $(TOP)/mkopcodec.awk
|
2011-08-30 03:29:04 +02:00
|
|
|
$(NAWK) -f $(TOP)/mkopcodec.awk opcodes.h >opcodes.c
|
2010-07-06 22:37:09 +02:00
|
|
|
|
|
|
|
opcodes.h: parse.h $(TOP)/src/vdbe.c $(TOP)/mkopcodeh.awk
|
|
|
|
cat parse.h $(TOP)/src/vdbe.c | $(NAWK) -f $(TOP)/mkopcodeh.awk >opcodes.h
|
|
|
|
|
|
|
|
# Rules to build parse.c and parse.h - the outputs of lemon.
|
|
|
|
#
|
|
|
|
parse.h: parse.c
|
|
|
|
|
|
|
|
parse.c: $(TOP)/src/parse.y lemon$(BEXE) $(TOP)/addopcodes.awk
|
|
|
|
cp $(TOP)/src/parse.y .
|
|
|
|
rm -f parse.h
|
|
|
|
./lemon$(BEXE) $(OPT_FEATURE_FLAGS) $(OPTS) parse.y
|
|
|
|
mv parse.h parse.h.temp
|
|
|
|
$(NAWK) -f $(TOP)/addopcodes.awk parse.h.temp >parse.h
|
|
|
|
|
|
|
|
sqlite3.h: $(TOP)/src/sqlite.h.in $(TOP)/manifest.uuid $(TOP)/VERSION
|
2011-07-22 12:33:04 +02:00
|
|
|
$(TCLSH_CMD) $(TOP)/tool/mksqlite3h.tcl $(TOP) >sqlite3.h
|
2010-07-06 22:37:09 +02:00
|
|
|
|
|
|
|
keywordhash.h: $(TOP)/tool/mkkeywordhash.c
|
|
|
|
$(BCC) -o mkkeywordhash$(BEXE) $(OPT_FEATURE_FLAGS) $(OPTS) $(TOP)/tool/mkkeywordhash.c
|
|
|
|
./mkkeywordhash$(BEXE) >keywordhash.h
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Rules to build the extension objects.
|
|
|
|
#
|
|
|
|
icu.lo: $(TOP)/ext/icu/icu.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/icu/icu.c
|
|
|
|
|
|
|
|
fts2.lo: $(TOP)/ext/fts2/fts2.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts2/fts2.c
|
|
|
|
|
|
|
|
fts2_hash.lo: $(TOP)/ext/fts2/fts2_hash.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts2/fts2_hash.c
|
|
|
|
|
|
|
|
fts2_icu.lo: $(TOP)/ext/fts2/fts2_icu.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts2/fts2_icu.c
|
|
|
|
|
|
|
|
fts2_porter.lo: $(TOP)/ext/fts2/fts2_porter.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts2/fts2_porter.c
|
|
|
|
|
|
|
|
fts2_tokenizer.lo: $(TOP)/ext/fts2/fts2_tokenizer.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts2/fts2_tokenizer.c
|
|
|
|
|
|
|
|
fts2_tokenizer1.lo: $(TOP)/ext/fts2/fts2_tokenizer1.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts2/fts2_tokenizer1.c
|
|
|
|
|
|
|
|
fts3.lo: $(TOP)/ext/fts3/fts3.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3.c
|
|
|
|
|
2011-02-09 16:25:17 +01:00
|
|
|
fts3_aux.lo: $(TOP)/ext/fts3/fts3_aux.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_aux.c
|
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
fts3_expr.lo: $(TOP)/ext/fts3/fts3_expr.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_expr.c
|
|
|
|
|
|
|
|
fts3_hash.lo: $(TOP)/ext/fts3/fts3_hash.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_hash.c
|
|
|
|
|
|
|
|
fts3_icu.lo: $(TOP)/ext/fts3/fts3_icu.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_icu.c
|
|
|
|
|
2011-05-12 23:01:12 +02:00
|
|
|
fts3_porter.lo: $(TOP)/ext/fts3/fts3_porter.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_porter.c
|
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
fts3_snippet.lo: $(TOP)/ext/fts3/fts3_snippet.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_snippet.c
|
|
|
|
|
|
|
|
fts3_tokenizer.lo: $(TOP)/ext/fts3/fts3_tokenizer.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_tokenizer.c
|
|
|
|
|
|
|
|
fts3_tokenizer1.lo: $(TOP)/ext/fts3/fts3_tokenizer1.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_tokenizer1.c
|
|
|
|
|
2013-05-16 20:33:06 +02:00
|
|
|
fts3_tokenize_vtab.lo: $(TOP)/ext/fts3/fts3_tokenize_vtab.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_tokenize_vtab.c
|
2013-04-22 17:30:37 +02:00
|
|
|
|
2012-06-09 20:52:29 +02:00
|
|
|
fts3_unicode.lo: $(TOP)/ext/fts3/fts3_unicode.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_unicode.c
|
|
|
|
|
|
|
|
fts3_unicode2.lo: $(TOP)/ext/fts3/fts3_unicode2.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_unicode2.c
|
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
fts3_write.lo: $(TOP)/ext/fts3/fts3_write.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/fts3/fts3_write.c
|
|
|
|
|
|
|
|
rtree.lo: $(TOP)/ext/rtree/rtree.c $(HDR) $(EXTHDR)
|
|
|
|
$(LTCOMPILE) -DSQLITE_CORE -c $(TOP)/ext/rtree/rtree.c
|
|
|
|
|
|
|
|
|
|
|
|
# Rules to build the 'testfixture' application.
|
|
|
|
#
|
|
|
|
# If using the amalgamation, use sqlite3.c directly to build the test
|
|
|
|
# fixture. Otherwise link against libsqlite3.la. (This distinction is
|
|
|
|
# necessary because the test fixture requires non-API symbols which are
|
|
|
|
# hidden when the library is built via the amalgamation).
|
|
|
|
#
|
|
|
|
TESTFIXTURE_FLAGS = -DTCLSH=1 -DSQLITE_TEST=1 -DSQLITE_CRASH_TEST=1
|
|
|
|
TESTFIXTURE_FLAGS += -DSQLITE_SERVER=1 -DSQLITE_PRIVATE="" -DSQLITE_CORE
|
2011-09-23 18:34:49 +02:00
|
|
|
TESTFIXTURE_FLAGS += -DBUILD_sqlite
|
2010-07-06 22:37:09 +02:00
|
|
|
|
|
|
|
TESTFIXTURE_SRC0 = $(TESTSRC2) libsqlite3.la
|
|
|
|
TESTFIXTURE_SRC1 = sqlite3.c
|
2013-03-19 17:12:40 +01:00
|
|
|
TESTFIXTURE_SRC = $(TESTSRC) $(TOP)/src/tclsqlite.c
|
|
|
|
TESTFIXTURE_SRC += $(TESTFIXTURE_SRC$(USE_AMALGAMATION))
|
2010-07-06 22:37:09 +02:00
|
|
|
|
2008-03-14 05:11:03 +01:00
|
|
|
testfixture$(TEXE): $(TESTFIXTURE_SRC)
|
2010-07-06 22:37:09 +02:00
|
|
|
$(LTLINK) -DSQLITE_NO_SYNC=1 $(TEMP_STORE) $(TESTFIXTURE_FLAGS) \
|
2008-05-13 02:57:21 +02:00
|
|
|
-o $@ $(TESTFIXTURE_SRC) $(LIBTCL) $(TLIBS)
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2015-01-08 02:05:42 +01:00
|
|
|
# A very detailed test running most or all test cases
|
2015-04-24 18:09:12 +02:00
|
|
|
fulltest: testfixture$(TEXE) sqlite3$(TEXE) fuzztest
|
2008-03-14 00:28:22 +01:00
|
|
|
./testfixture$(TEXE) $(TOP)/test/all.test
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2015-01-08 02:05:42 +01:00
|
|
|
# Really really long testing
|
2015-04-25 15:39:29 +02:00
|
|
|
soaktest: testfixture$(TEXE) sqlite3$(TEXE) fuzzoomtest
|
2010-07-06 22:37:09 +02:00
|
|
|
./testfixture$(TEXE) $(TOP)/test/all.test -soak=1
|
|
|
|
|
2015-01-08 02:05:42 +01:00
|
|
|
# Do extra testing but not aeverything.
|
2012-09-13 03:51:02 +02:00
|
|
|
fulltestonly: testfixture$(TEXE) sqlite3$(TEXE)
|
|
|
|
./testfixture$(TEXE) $(TOP)/test/full.test
|
|
|
|
|
2015-04-24 18:09:12 +02:00
|
|
|
# Fuzz testing
|
|
|
|
fuzztest: fuzzershell$(TEXE)
|
2015-05-01 21:21:12 +02:00
|
|
|
./fuzzershell$(TEXE) $(TOP)/test/fuzzdata1.txt $(TOP)/test/fuzzdata2.txt
|
2015-04-24 18:09:12 +02:00
|
|
|
|
2015-04-25 15:39:29 +02:00
|
|
|
fuzzoomtest: fuzzershell$(TEXE)
|
|
|
|
./fuzzershell$(TEXE) -f $(TOP)/test/fuzzdata1.txt --oom
|
|
|
|
|
2015-01-08 02:05:42 +01:00
|
|
|
# This is the common case. Run many tests but not those that take
|
|
|
|
# a really long time.
|
|
|
|
#
|
2015-04-24 18:09:12 +02:00
|
|
|
test: testfixture$(TEXE) sqlite3$(TEXE) fuzztest
|
2008-06-25 19:54:53 +02:00
|
|
|
./testfixture$(TEXE) $(TOP)/test/veryquick.test
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2015-01-08 02:05:42 +01:00
|
|
|
# Run a test using valgrind. This can take a really long time
|
|
|
|
# because valgrind is so much slower than a native machine.
|
|
|
|
#
|
2015-04-24 18:53:03 +02:00
|
|
|
valgrindtest: testfixture$(TEXE) sqlite3$(TEXE) fuzzershell$(TEXE)
|
|
|
|
valgrind -v ./fuzzershell$(TEXE) -f $(TOP)/test/fuzzdata1.txt
|
2015-01-08 17:47:51 +01:00
|
|
|
OMIT_MISUSE=1 valgrind -v ./testfixture$(TEXE) $(TOP)/test/permutations.test valgrind
|
2015-01-07 15:09:41 +01:00
|
|
|
|
2015-01-08 02:05:42 +01:00
|
|
|
# A very fast test that checks basic sanity. The name comes from
|
|
|
|
# the 60s-era electronics testing: "Turn it on and see if smoke
|
|
|
|
# comes out."
|
|
|
|
#
|
2015-04-24 20:31:12 +02:00
|
|
|
smoketest: testfixture$(TEXE) fuzzershell$(TEXE)
|
2015-01-08 03:28:02 +01:00
|
|
|
./testfixture$(TEXE) $(TOP)/test/main.test
|
2015-01-08 02:05:42 +01:00
|
|
|
|
2011-09-21 19:04:21 +02:00
|
|
|
sqlite3_analyzer.c: sqlite3.c $(TOP)/src/test_stat.c $(TOP)/src/tclsqlite.c $(TOP)/tool/spaceanal.tcl
|
|
|
|
echo "#define TCLSH 2" > $@
|
2015-05-04 19:06:39 +02:00
|
|
|
echo "#define SQLITE_ENABLE_DBSTAT_VTAB" >> $@
|
|
|
|
cat sqlite3.c $(TOP)/src/tclsqlite.c >> $@
|
2011-09-21 19:04:21 +02:00
|
|
|
echo "static const char *tclsh_main_loop(void){" >> $@
|
|
|
|
echo "static const char *zMainloop = " >> $@
|
|
|
|
$(NAWK) -f $(TOP)/tool/tostr.awk $(TOP)/tool/spaceanal.tcl >> $@
|
|
|
|
echo "; return zMainloop; }" >> $@
|
|
|
|
|
2011-09-21 20:29:49 +02:00
|
|
|
sqlite3_analyzer$(TEXE): sqlite3_analyzer.c
|
2011-09-21 19:04:21 +02:00
|
|
|
$(LTLINK) sqlite3_analyzer.c -o $@ $(LIBTCL) $(TLIBS)
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2014-06-30 13:14:26 +02:00
|
|
|
showdb$(TEXE): $(TOP)/tool/showdb.c sqlite3.lo
|
|
|
|
$(LTLINK) -o $@ $(TOP)/tool/showdb.c sqlite3.lo $(TLIBS)
|
|
|
|
|
|
|
|
showstat4$(TEXE): $(TOP)/tool/showstat4.c sqlite3.lo
|
|
|
|
$(LTLINK) -o $@ $(TOP)/tool/showstat4.c sqlite3.lo $(TLIBS)
|
|
|
|
|
|
|
|
showjournal$(TEXE): $(TOP)/tool/showjournal.c sqlite3.lo
|
|
|
|
$(LTLINK) -o $@ $(TOP)/tool/showjournal.c sqlite3.lo $(TLIBS)
|
|
|
|
|
|
|
|
showwal$(TEXE): $(TOP)/tool/showwal.c sqlite3.lo
|
|
|
|
$(LTLINK) -o $@ $(TOP)/tool/showwal.c sqlite3.lo $(TLIBS)
|
|
|
|
|
|
|
|
rollback-test$(TEXE): $(TOP)/tool/rollback-test.c sqlite3.lo
|
|
|
|
$(LTLINK) -o $@ $(TOP)/tool/rollback-test.c sqlite3.lo $(TLIBS)
|
2013-11-07 19:37:31 +01:00
|
|
|
|
2014-06-18 20:10:12 +02:00
|
|
|
LogEst$(TEXE): $(TOP)/tool/logest.c sqlite3.h
|
|
|
|
$(LTLINK) -I. -o $@ $(TOP)/tool/logest.c
|
2013-11-07 19:37:31 +01:00
|
|
|
|
|
|
|
wordcount$(TEXE): $(TOP)/test/wordcount.c sqlite3.c
|
|
|
|
$(LTLINK) -o $@ $(TOP)/test/wordcount.c sqlite3.c $(TLIBS)
|
|
|
|
|
2015-02-03 20:20:03 +01:00
|
|
|
speedtest1$(TEXE): $(TOP)/test/speedtest1.c sqlite3.lo
|
2013-11-23 05:16:58 +01:00
|
|
|
$(LTLINK) -o $@ $(TOP)/test/speedtest1.c sqlite3.lo $(TLIBS)
|
|
|
|
|
2014-12-23 20:52:26 +01:00
|
|
|
# This target will fail if the SQLite amalgamation contains any exported
|
|
|
|
# symbols that do not begin with "sqlite3_". It is run as part of the
|
|
|
|
# releasetest.tcl script.
|
|
|
|
#
|
2014-12-23 22:03:09 +01:00
|
|
|
checksymbols: sqlite3.lo
|
2014-12-29 03:55:58 +01:00
|
|
|
nm -g --defined-only sqlite3.o | grep -v " sqlite3_" ; test $$? -ne 0
|
|
|
|
echo '0 errors out of 1 tests'
|
2014-12-23 20:52:26 +01:00
|
|
|
|
2015-01-15 16:47:06 +01:00
|
|
|
# Build the amalgamation-autoconf package.
|
|
|
|
#
|
|
|
|
amalgamation-tarball: sqlite3.c
|
|
|
|
TOP=$(TOP) sh $(TOP)/tool/mkautoconfamal.sh
|
|
|
|
|
2014-12-23 21:31:43 +01:00
|
|
|
# The next two rules are used to support the "threadtest" target. Building
|
|
|
|
# threadtest runs a few thread-safety tests that are implemented in C. This
|
|
|
|
# target is invoked by the releasetest.tcl script.
|
|
|
|
#
|
|
|
|
THREADTEST3_SRC = $(TOP)/test/threadtest3.c \
|
|
|
|
$(TOP)/test/tt3_checkpoint.c \
|
|
|
|
$(TOP)/test/tt3_index.c \
|
|
|
|
$(TOP)/test/tt3_vacuum.c \
|
|
|
|
$(TOP)/test/tt3_stress.c \
|
|
|
|
$(TOP)/test/tt3_lookaside1.c
|
|
|
|
|
2014-12-23 22:03:09 +01:00
|
|
|
threadtest3$(TEXE): sqlite3.lo $(THREADTEST3_SRC)
|
|
|
|
$(LTLINK) $(TOP)/test/threadtest3.c sqlite3.lo -o $@ $(TLIBS)
|
2014-12-23 21:31:43 +01:00
|
|
|
|
|
|
|
threadtest: threadtest3$(TEXE)
|
|
|
|
./threadtest3$(TEXE)
|
|
|
|
|
2014-12-23 22:17:58 +01:00
|
|
|
releasetest:
|
|
|
|
$(TCLSH_CMD) $(TOP)/test/releasetest.tcl
|
|
|
|
|
2010-07-06 22:37:09 +02:00
|
|
|
# Standard install and cleanup targets
|
|
|
|
#
|
2009-02-18 05:33:59 +01:00
|
|
|
lib_install: libsqlite3.la
|
2004-09-17 23:07:34 +02:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(libdir)
|
|
|
|
$(LTINSTALL) libsqlite3.la $(DESTDIR)$(libdir)
|
2009-02-18 05:33:59 +01:00
|
|
|
|
|
|
|
install: sqlite3$(BEXE) lib_install sqlite3.h sqlite3.pc ${HAVE_TCL:1=tcl_install}
|
2008-03-06 09:09:12 +01:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(bindir)
|
|
|
|
$(LTINSTALL) sqlite3$(BEXE) $(DESTDIR)$(bindir)
|
|
|
|
$(INSTALL) -d $(DESTDIR)$(includedir)
|
|
|
|
$(INSTALL) -m 0644 sqlite3.h $(DESTDIR)$(includedir)
|
|
|
|
$(INSTALL) -m 0644 $(TOP)/src/sqlite3ext.h $(DESTDIR)$(includedir)
|
2008-08-04 06:28:18 +02:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(pkgconfigdir)
|
|
|
|
$(INSTALL) -m 0644 sqlite3.pc $(DESTDIR)$(pkgconfigdir)
|
2004-06-30 13:41:55 +02:00
|
|
|
|
2009-01-28 05:46:14 +01:00
|
|
|
pkgIndex.tcl:
|
2015-03-31 19:01:52 +02:00
|
|
|
echo 'package ifneeded sqlite3 $(RELEASE) [list load $(TCLLIBDIR)/libtclsqlite3$(SHLIB_SUFFIX) sqlite3]' > $@
|
2009-02-18 05:33:59 +01:00
|
|
|
tcl_install: lib_install libtclsqlite3.la pkgIndex.tcl
|
2009-01-28 05:46:14 +01:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(TCLLIBDIR)
|
|
|
|
$(LTINSTALL) libtclsqlite3.la $(DESTDIR)$(TCLLIBDIR)
|
|
|
|
rm -f $(DESTDIR)$(TCLLIBDIR)/libtclsqlite3.la $(DESTDIR)$(TCLLIBDIR)/libtclsqlite3.a
|
|
|
|
$(INSTALL) -m 0644 pkgIndex.tcl $(DESTDIR)$(TCLLIBDIR)
|
2004-11-27 16:52:16 +01:00
|
|
|
|
2004-06-30 13:41:55 +02:00
|
|
|
clean:
|
2004-11-25 14:50:01 +01:00
|
|
|
rm -f *.lo *.la *.o sqlite3$(TEXE) libsqlite3.la
|
2004-06-30 13:41:55 +02:00
|
|
|
rm -f sqlite3.h opcodes.*
|
2010-07-06 22:37:09 +02:00
|
|
|
rm -rf .libs .deps
|
2004-11-03 04:59:57 +01:00
|
|
|
rm -f lemon$(BEXE) lempar.c parse.* sqlite*.tar.gz
|
2005-01-18 05:00:42 +01:00
|
|
|
rm -f mkkeywordhash$(BEXE) keywordhash.h
|
2004-06-30 13:41:55 +02:00
|
|
|
rm -f *.da *.bb *.bbg gmon.out
|
2012-03-08 21:00:36 +01:00
|
|
|
rm -rf quota2a quota2b quota2c
|
2010-07-06 22:37:09 +02:00
|
|
|
rm -rf tsrc .target_source
|
2011-09-22 02:06:44 +02:00
|
|
|
rm -f tclsqlite3$(TEXE)
|
2004-11-25 14:50:01 +01:00
|
|
|
rm -f testfixture$(TEXE) test.db
|
2014-07-18 23:02:54 +02:00
|
|
|
rm -f LogEst$(TEXE) fts3view$(TEXE) rollback-test$(TEXE) showdb$(TEXE)
|
|
|
|
rm -f showjournal$(TEXE) showstat4$(TEXE) showwal$(TEXE) speedtest1$(TEXE)
|
|
|
|
rm -f wordcount$(TEXE)
|
2011-09-22 02:06:44 +02:00
|
|
|
rm -f sqlite3.dll sqlite3.lib sqlite3.exp sqlite3.def
|
2010-07-06 22:37:09 +02:00
|
|
|
rm -f sqlite3.c
|
2013-03-29 20:52:04 +01:00
|
|
|
rm -f sqlite3rc.h
|
|
|
|
rm -f shell.c sqlite3ext.h
|
2011-09-22 02:06:44 +02:00
|
|
|
rm -f sqlite3_analyzer$(TEXE) sqlite3_analyzer.c
|
2012-10-20 11:35:57 +02:00
|
|
|
rm -f sqlite-*-output.vsix
|
2013-04-10 05:06:43 +02:00
|
|
|
rm -f mptester mptester.exe
|
2004-06-30 13:41:55 +02:00
|
|
|
|
|
|
|
distclean: clean
|
2008-03-06 08:19:20 +01:00
|
|
|
rm -f config.log config.status libtool Makefile sqlite3.pc
|
2006-09-03 00:14:11 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Windows section
|
|
|
|
#
|
|
|
|
dll: sqlite3.dll
|
|
|
|
|
|
|
|
REAL_LIBOBJ = $(LIBOBJ:%.lo=.libs/%.o)
|
|
|
|
|
|
|
|
$(REAL_LIBOBJ): $(LIBOBJ)
|
|
|
|
|
|
|
|
sqlite3.def: $(REAL_LIBOBJ)
|
|
|
|
echo 'EXPORTS' >sqlite3.def
|
|
|
|
nm $(REAL_LIBOBJ) | grep ' T ' | grep ' _sqlite3_' \
|
|
|
|
| sed 's/^.* _//' >>sqlite3.def
|
|
|
|
|
|
|
|
sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def
|
2008-03-14 00:28:22 +01:00
|
|
|
$(TCC) -shared -o $@ sqlite3.def \
|
2006-09-03 00:14:11 +02:00
|
|
|
-Wl,"--strip-all" $(REAL_LIBOBJ)
|