blob: 2fb9687655fed7cc9914b9966ecd4f47e39a7f02 [file] [log] [blame]
shanehb2f20bf2011-06-17 07:07:24 +00001#
shaneh603e4262011-06-17 18:52:07 +00002# nmake Makefile for SQLite
shanehb2f20bf2011-06-17 07:07:24 +00003#
4
5# The toplevel directory of the source tree. This is the directory
6# that contains this "Makefile.msc".
7#
8TOP = .
9
shaneh6e7850c2011-06-17 15:57:07 +000010# Set this non-0 to create and use the SQLite amalgamation file.
11#
mistachkin0ec07442012-10-12 18:06:07 +000012!IFNDEF USE_AMALGAMATION
shaneh6e7850c2011-06-17 15:57:07 +000013USE_AMALGAMATION = 1
mistachkin0ec07442012-10-12 18:06:07 +000014!ENDIF
shaneh6e7850c2011-06-17 15:57:07 +000015
mistachkinc756ded2011-10-02 05:23:16 +000016# Set this non-0 to use the International Components for Unicode (ICU).
17#
mistachkin0ec07442012-10-12 18:06:07 +000018!IFNDEF USE_ICU
mistachkinc756ded2011-10-02 05:23:16 +000019USE_ICU = 0
mistachkin0ec07442012-10-12 18:06:07 +000020!ENDIF
mistachkinc756ded2011-10-02 05:23:16 +000021
mistachkin8d967a92012-06-21 04:21:35 +000022# Set this non-0 to dynamically link to the MSVC runtime library.
23#
mistachkin0ec07442012-10-12 18:06:07 +000024!IFNDEF USE_CRT_DLL
mistachkin8d967a92012-06-21 04:21:35 +000025USE_CRT_DLL = 0
mistachkin0ec07442012-10-12 18:06:07 +000026!ENDIF
mistachkin8d967a92012-06-21 04:21:35 +000027
mistachkin52fd8e12012-08-28 01:44:13 +000028# Set this non-0 to attempt setting the native compiler automatically
29# for cross-compiling the command line tools needed during the compilation
30# process.
31#
mistachkin0ec07442012-10-12 18:06:07 +000032!IFNDEF XCOMPILE
mistachkin52fd8e12012-08-28 01:44:13 +000033XCOMPILE = 0
mistachkin0ec07442012-10-12 18:06:07 +000034!ENDIF
mistachkin52fd8e12012-08-28 01:44:13 +000035
mistachkinbd58d5f2012-06-30 22:22:34 +000036# Set this non-0 to use the native libraries paths for cross-compiling
37# the command line tools needed during the compilation process.
38#
mistachkin0ec07442012-10-12 18:06:07 +000039!IFNDEF USE_NATIVE_LIBPATHS
mistachkinbd58d5f2012-06-30 22:22:34 +000040USE_NATIVE_LIBPATHS = 0
mistachkin0ec07442012-10-12 18:06:07 +000041!ENDIF
mistachkinbd58d5f2012-06-30 22:22:34 +000042
mistachkin08c1c312012-10-06 03:48:25 +000043# Set this 0 to skip the compiling and embedding of version resources.
44#
mistachkin0ec07442012-10-12 18:06:07 +000045!IFNDEF USE_RC
mistachkin08c1c312012-10-06 03:48:25 +000046USE_RC = 1
mistachkin0ec07442012-10-12 18:06:07 +000047!ENDIF
mistachkin08c1c312012-10-06 03:48:25 +000048
mistachkin46b721a2012-03-23 12:28:21 +000049# Set this non-0 to compile binaries suitable for the WinRT environment.
50# This setting does not apply to any binaries that require Tcl to operate
51# properly (i.e. the text fixture, etc).
52#
mistachkin0ec07442012-10-12 18:06:07 +000053!IFNDEF FOR_WINRT
mistachkin46b721a2012-03-23 12:28:21 +000054FOR_WINRT = 0
mistachkin0ec07442012-10-12 18:06:07 +000055!ENDIF
mistachkin46b721a2012-03-23 12:28:21 +000056
mistachkin31856a32012-07-27 07:13:25 +000057# Set this non-0 to skip attempting to look for and/or link with the Tcl
58# runtime library.
59#
mistachkin0ec07442012-10-12 18:06:07 +000060!IFNDEF NO_TCL
mistachkin31856a32012-07-27 07:13:25 +000061NO_TCL = 0
mistachkin0ec07442012-10-12 18:06:07 +000062!ENDIF
mistachkin31856a32012-07-27 07:13:25 +000063
mistachkin4d60be52011-08-26 05:40:31 +000064# Set this to non-0 to create and use PDBs.
65#
mistachkin0ec07442012-10-12 18:06:07 +000066!IFNDEF SYMBOLS
mistachkin4d60be52011-08-26 05:40:31 +000067SYMBOLS = 1
mistachkin0ec07442012-10-12 18:06:07 +000068!ENDIF
mistachkin4d60be52011-08-26 05:40:31 +000069
mistachkin2f7d5d82012-08-22 00:39:34 +000070# Set this to non-0 to use the SQLite debugging heap subsystem.
71#
mistachkin0ec07442012-10-12 18:06:07 +000072!IFNDEF MEMDEBUG
mistachkin2f7d5d82012-08-22 00:39:34 +000073MEMDEBUG = 0
mistachkin0ec07442012-10-12 18:06:07 +000074!ENDIF
mistachkin2f7d5d82012-08-22 00:39:34 +000075
76# Set this to non-0 to use the Win32 native heap subsystem.
77#
mistachkin0ec07442012-10-12 18:06:07 +000078!IFNDEF WIN32HEAP
mistachkin2f7d5d82012-08-22 00:39:34 +000079WIN32HEAP = 0
mistachkin0ec07442012-10-12 18:06:07 +000080!ENDIF
mistachkin2f7d5d82012-08-22 00:39:34 +000081
mistachkinf2d25f22011-08-25 04:09:12 +000082# Set this to one of the following values to enable various debugging
83# features. Each level includes the debugging options from the previous
84# levels. Currently, the recognized values for DEBUG are:
85#
86# 0 == NDEBUG: Disables assert() and other runtime diagnostics.
87# 1 == Disables NDEBUG and all optimizations and then enables PDBs.
88# 2 == SQLITE_DEBUG: Enables various diagnostics messages and code.
89# 3 == SQLITE_WIN32_MALLOC_VALIDATE: Validate the Win32 native heap per call.
90# 4 == SQLITE_DEBUG_OS_TRACE: Enables output from the OSTRACE() macros.
91# 5 == SQLITE_ENABLE_IOTRACE: Enables output from the IOTRACE() macros.
92#
mistachkin0ec07442012-10-12 18:06:07 +000093!IFNDEF DEBUG
mistachkinf2d25f22011-08-25 04:09:12 +000094DEBUG = 0
mistachkin0ec07442012-10-12 18:06:07 +000095!ENDIF
shanehb2f20bf2011-06-17 07:07:24 +000096
mistachkine37f99c2012-06-30 16:22:05 +000097# Check for the predefined command macro CC. This should point to the compiler
mistachkinbd58d5f2012-06-30 22:22:34 +000098# binary for the target platform. If it is not defined, simply define it to
mistachkine37f99c2012-06-30 16:22:05 +000099# the legacy default value 'cl.exe'.
100#
101!IFNDEF CC
102CC = cl.exe
103!ENDIF
104
mistachkin228aeff2012-06-30 19:24:09 +0000105# Check for the command macro LD. This should point to the linker binary for
mistachkinbd58d5f2012-06-30 22:22:34 +0000106# the target platform. If it is not defined, simply define it to the legacy
mistachkin228aeff2012-06-30 19:24:09 +0000107# default value 'link.exe'.
108#
109!IFNDEF LD
110LD = link.exe
111!ENDIF
112
mistachkin4d9d1f42012-09-03 10:32:32 +0000113# Check for the predefined command macro RC. This should point to the resource
114# compiler binary for the target platform. If it is not defined, simply define
115# it to the legacy default value 'rc.exe'.
116#
117!IFNDEF RC
118RC = rc.exe
119!ENDIF
120
mistachkine37f99c2012-06-30 16:22:05 +0000121# Check for the command macro NCC. This should point to the compiler binary
mistachkinbd58d5f2012-06-30 22:22:34 +0000122# for the platform the compilation process is taking place on. If it is not
123# defined, simply define it to have the same value as the CC macro. When
mistachkine37f99c2012-06-30 16:22:05 +0000124# cross-compiling, it is suggested that this macro be modified via the command
125# line (since nmake itself does not provide a built-in method to guess it).
126# For example, to use the x86 compiler when cross-compiling for x64, a command
mistachkinbd58d5f2012-06-30 22:22:34 +0000127# line similar to the following could be used (all on one line):
mistachkine37f99c2012-06-30 16:22:05 +0000128#
mistachkin6f928332012-08-17 11:47:32 +0000129# nmake /f Makefile.msc sqlite3.dll
mistachkin52fd8e12012-08-28 01:44:13 +0000130# XCOMPILE=1 USE_NATIVE_LIBPATHS=1
131#
132# Alternatively, the full path and file name to the compiler binary for the
133# platform the compilation process is taking place may be specified (all on
134# one line):
135#
136# nmake /f Makefile.msc sqlite3.dll
mistachkinbd58d5f2012-06-30 22:22:34 +0000137# "NCC=""%VCINSTALLDIR%\bin\cl.exe"""
138# USE_NATIVE_LIBPATHS=1
mistachkine37f99c2012-06-30 16:22:05 +0000139#
mistachkinfd0ba2a2012-07-27 08:21:45 +0000140!IFDEF NCC
141NCC = $(NCC:\\=\)
mistachkin52fd8e12012-08-28 01:44:13 +0000142!ELSEIF $(XCOMPILE)!=0
143NCC = "$(VCINSTALLDIR)\bin\cl.exe"
144NCC = $(NCC:\\=\)
mistachkinfd0ba2a2012-07-27 08:21:45 +0000145!ELSE
mistachkine37f99c2012-06-30 16:22:05 +0000146NCC = $(CC)
147!ENDIF
148
mistachkinbd58d5f2012-06-30 22:22:34 +0000149# Check for the MSVC runtime library path macro. Othertise, this
150# value will default to the 'lib' directory underneath the MSVC
151# installation directory.
152#
153!IFNDEF NCRTLIBPATH
154NCRTLIBPATH = $(VCINSTALLDIR)\lib
155!ENDIF
156
mistachkin0b5ae722012-07-27 23:03:47 +0000157NCRTLIBPATH = $(NCRTLIBPATH:\\=\)
158
mistachkinbd58d5f2012-06-30 22:22:34 +0000159# Check for the Platform SDK library path macro. Othertise, this
160# value will default to the 'lib' directory underneath the Windows
161# SDK installation directory (the environment variable used appears
162# to be available when using Visual C++ 2008 or later via the
163# command line).
164#
165!IFNDEF NSDKLIBPATH
166NSDKLIBPATH = $(WINDOWSSDKDIR)\lib
167!ENDIF
168
mistachkin0b5ae722012-07-27 23:03:47 +0000169NSDKLIBPATH = $(NSDKLIBPATH:\\=\)
170
mistachkinbd58d5f2012-06-30 22:22:34 +0000171# C compiler and options for use in building executables that
shanehb2f20bf2011-06-17 07:07:24 +0000172# will run on the platform that is doing the build.
173#
mistachkine37f99c2012-06-30 16:22:05 +0000174BCC = $(NCC) -W3
shanehb2f20bf2011-06-17 07:07:24 +0000175
mistachkinbd58d5f2012-06-30 22:22:34 +0000176# Check if the native library paths should be used when compiling
177# the command line tools used during the compilation process. If
178# so, set the necessary macro now.
179#
180!IF $(USE_NATIVE_LIBPATHS)!=0
181NLTLIBPATHS = "/LIBPATH:$(NCRTLIBPATH)" "/LIBPATH:$(NSDKLIBPATH)"
182!ENDIF
183
184# C compiler and options for use in building executables that
shanehb2f20bf2011-06-17 07:07:24 +0000185# will run on the target platform. (BCC and TCC are usually the
186# same unless your are cross-compiling.)
187#
mistachkin8ccc6d42012-09-27 21:03:53 +0000188TCC = $(CC) -W3 -DSQLITE_OS_WIN=1 -I$(TOP) -I$(TOP)\src -fp:precise
189RCC = $(RC) -DSQLITE_OS_WIN=1 -I$(TOP) -I$(TOP)\src
shaneh6e7850c2011-06-17 15:57:07 +0000190
mistachkinf39eaf22012-03-20 02:18:42 +0000191# When compiling the library for use in the WinRT environment,
mistachkin46b721a2012-03-23 12:28:21 +0000192# the following compile-time options must be used as well to
mistachkinf39eaf22012-03-20 02:18:42 +0000193# disable use of Win32 APIs that are not available and to enable
194# use of Win32 APIs that are specific to Windows 8 and/or WinRT.
195#
mistachkin46b721a2012-03-23 12:28:21 +0000196!IF $(FOR_WINRT)!=0
mistachkin8d967a92012-06-21 04:21:35 +0000197TCC = $(TCC) -DSQLITE_OS_WINRT=1
mistachkin4d9d1f42012-09-03 10:32:32 +0000198RCC = $(RCC) -DSQLITE_OS_WINRT=1
mistachkin08c1c312012-10-06 03:48:25 +0000199TCC = $(TCC) -DWINAPI_FAMILY=WINAPI_FAMILY_APP
200RCC = $(RCC) -DWINAPI_FAMILY=WINAPI_FAMILY_APP
mistachkin8d967a92012-06-21 04:21:35 +0000201!ENDIF
202
203# Also, we need to dynamically link to the correct MSVC runtime
204# when compiling for WinRT (e.g. debug or release) OR if the
205# USE_CRT_DLL option is set to force dynamically linking to the
206# MSVC runtime library.
207#
208!IF $(FOR_WINRT)!=0 || $(USE_CRT_DLL)!=0
209!IF $(DEBUG)>0
210TCC = $(TCC) -MDd
mistachkin08c1c312012-10-06 03:48:25 +0000211BCC = $(BCC) -MDd
mistachkin8d967a92012-06-21 04:21:35 +0000212!ELSE
213TCC = $(TCC) -MD
mistachkin08c1c312012-10-06 03:48:25 +0000214BCC = $(BCC) -MD
mistachkin8d967a92012-06-21 04:21:35 +0000215!ENDIF
216!ELSE
217!IF $(DEBUG)>0
218TCC = $(TCC) -MTd
mistachkin08c1c312012-10-06 03:48:25 +0000219BCC = $(BCC) -MTd
mistachkin8d967a92012-06-21 04:21:35 +0000220!ELSE
221TCC = $(TCC) -MT
mistachkin08c1c312012-10-06 03:48:25 +0000222BCC = $(BCC) -MT
mistachkin8d967a92012-06-21 04:21:35 +0000223!ENDIF
mistachkin46b721a2012-03-23 12:28:21 +0000224!ENDIF
mistachkinf39eaf22012-03-20 02:18:42 +0000225
226# The mksqlite3c.tcl and mksqlite3h.tcl scripts will pull in
shaneh6e7850c2011-06-17 15:57:07 +0000227# any extension header files by default. For non-amalgamation
228# builds, we need to make sure the compiler can find these.
229#
230!IF $(USE_AMALGAMATION)==0
231TCC = $(TCC) -I$(TOP)\ext\fts3
mistachkin4d9d1f42012-09-03 10:32:32 +0000232RCC = $(RCC) -I$(TOP)\ext\fts3
shaneh6e7850c2011-06-17 15:57:07 +0000233TCC = $(TCC) -I$(TOP)\ext\rtree
mistachkin4d9d1f42012-09-03 10:32:32 +0000234RCC = $(RCC) -I$(TOP)\ext\rtree
shaneh6e7850c2011-06-17 15:57:07 +0000235!ENDIF
shanehb2f20bf2011-06-17 07:07:24 +0000236
237# Define -DNDEBUG to compile without debugging (i.e., for production usage)
238# Omitting the define will cause extra debugging code to be inserted and
239# includes extra comments when "EXPLAIN stmt" is used.
240#
mistachkin753c5442011-08-25 02:02:25 +0000241!IF $(DEBUG)==0
shanehb2f20bf2011-06-17 07:07:24 +0000242TCC = $(TCC) -DNDEBUG
mistachkinfec360a2012-04-18 10:29:21 +0000243BCC = $(BCC) -DNDEBUG
mistachkin4d9d1f42012-09-03 10:32:32 +0000244RCC = $(RCC) -DNDEBUG
mistachkin753c5442011-08-25 02:02:25 +0000245!ENDIF
246
247!IF $(DEBUG)>1
248TCC = $(TCC) -DSQLITE_DEBUG
mistachkin4d9d1f42012-09-03 10:32:32 +0000249RCC = $(RCC) -DSQLITE_DEBUG
mistachkin753c5442011-08-25 02:02:25 +0000250!ENDIF
251
252!IF $(DEBUG)>3
253TCC = $(TCC) -DSQLITE_DEBUG_OS_TRACE=1
mistachkin4d9d1f42012-09-03 10:32:32 +0000254RCC = $(RCC) -DSQLITE_DEBUG_OS_TRACE=1
mistachkin753c5442011-08-25 02:02:25 +0000255!ENDIF
256
257!IF $(DEBUG)>4
258TCC = $(TCC) -DSQLITE_ENABLE_IOTRACE
mistachkin4d9d1f42012-09-03 10:32:32 +0000259RCC = $(RCC) -DSQLITE_ENABLE_IOTRACE
mistachkin753c5442011-08-25 02:02:25 +0000260!ENDIF
shanehb2f20bf2011-06-17 07:07:24 +0000261
mistachkin176f1b42011-08-02 23:34:00 +0000262#
mistachkinbd58d5f2012-06-30 22:22:34 +0000263# Prevent warnings about "insecure" MSVC runtime library functions
264# being used.
mistachkin176f1b42011-08-02 23:34:00 +0000265#
266TCC = $(TCC) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS
mistachkinfec360a2012-04-18 10:29:21 +0000267BCC = $(BCC) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS
mistachkin4d9d1f42012-09-03 10:32:32 +0000268RCC = $(RCC) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS
mistachkin176f1b42011-08-02 23:34:00 +0000269
mistachkin1b186a92011-08-24 16:13:57 +0000270#
mistachkinbd58d5f2012-06-30 22:22:34 +0000271# Prevent warnings about "deprecated" POSIX functions being used.
272#
273TCC = $(TCC) -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS
274BCC = $(BCC) -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS
mistachkin4d9d1f42012-09-03 10:32:32 +0000275RCC = $(RCC) -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS
mistachkinbd58d5f2012-06-30 22:22:34 +0000276
277#
mistachkin2f7d5d82012-08-22 00:39:34 +0000278# Use the SQLite debugging heap subsystem?
mistachkin1b186a92011-08-24 16:13:57 +0000279#
mistachkin2f7d5d82012-08-22 00:39:34 +0000280!IF $(MEMDEBUG)!=0
281TCC = $(TCC) -DSQLITE_MEMDEBUG=1
mistachkin4d9d1f42012-09-03 10:32:32 +0000282RCC = $(RCC) -DSQLITE_MEMDEBUG=1
mistachkin2f7d5d82012-08-22 00:39:34 +0000283
284#
285# Use native Win32 heap subsystem instead of malloc/free?
286#
287!ELSEIF $(WIN32HEAP)!=0
288TCC = $(TCC) -DSQLITE_WIN32_MALLOC=1
mistachkin4d9d1f42012-09-03 10:32:32 +0000289RCC = $(RCC) -DSQLITE_WIN32_MALLOC=1
mistachkin753c5442011-08-25 02:02:25 +0000290
291#
292# Validate the heap on every call into the native Win32 heap subsystem?
293#
294!IF $(DEBUG)>2
295TCC = $(TCC) -DSQLITE_WIN32_MALLOC_VALIDATE=1
mistachkin4d9d1f42012-09-03 10:32:32 +0000296RCC = $(RCC) -DSQLITE_WIN32_MALLOC_VALIDATE=1
mistachkin753c5442011-08-25 02:02:25 +0000297!ENDIF
mistachkin2f7d5d82012-08-22 00:39:34 +0000298!ENDIF
mistachkin1b186a92011-08-24 16:13:57 +0000299
mistachkin5b0b6fd2011-06-25 01:14:36 +0000300# The locations of the Tcl header and library files. Also, the library that
301# non-stubs enabled programs using Tcl must link against. These variables
302# (TCLINCDIR, TCLLIBDIR, and LIBTCL) may be overridden via the environment
303# prior to running nmake in order to match the actual installed location and
304# version on this machine.
shanehb2f20bf2011-06-17 07:07:24 +0000305#
mistachkine37f99c2012-06-30 16:22:05 +0000306!IFNDEF TCLINCDIR
shanehb2f20bf2011-06-17 07:07:24 +0000307TCLINCDIR = c:\tcl\include
mistachkine37f99c2012-06-30 16:22:05 +0000308!ENDIF
mistachkin5b0b6fd2011-06-25 01:14:36 +0000309
mistachkine37f99c2012-06-30 16:22:05 +0000310!IFNDEF TCLLIBDIR
shanehb2f20bf2011-06-17 07:07:24 +0000311TCLLIBDIR = c:\tcl\lib
mistachkine37f99c2012-06-30 16:22:05 +0000312!ENDIF
mistachkin5b0b6fd2011-06-25 01:14:36 +0000313
mistachkine37f99c2012-06-30 16:22:05 +0000314!IFNDEF LIBTCL
mistachkin5b0b6fd2011-06-25 01:14:36 +0000315LIBTCL = tcl85.lib
mistachkine37f99c2012-06-30 16:22:05 +0000316!ENDIF
shanehb2f20bf2011-06-17 07:07:24 +0000317
mistachkinc756ded2011-10-02 05:23:16 +0000318# The locations of the ICU header and library files. These variables
319# (ICUINCDIR, ICULIBDIR, and LIBICU) may be overridden via the environment
320# prior to running nmake in order to match the actual installed location on
321# this machine.
322#
mistachkine37f99c2012-06-30 16:22:05 +0000323!IFNDEF ICUINCDIR
mistachkinc756ded2011-10-02 05:23:16 +0000324ICUINCDIR = c:\icu\include
mistachkine37f99c2012-06-30 16:22:05 +0000325!ENDIF
mistachkinc756ded2011-10-02 05:23:16 +0000326
mistachkine37f99c2012-06-30 16:22:05 +0000327!IFNDEF ICULIBDIR
mistachkinc756ded2011-10-02 05:23:16 +0000328ICULIBDIR = c:\icu\lib
mistachkine37f99c2012-06-30 16:22:05 +0000329!ENDIF
mistachkinc756ded2011-10-02 05:23:16 +0000330
mistachkine37f99c2012-06-30 16:22:05 +0000331!IFNDEF LIBICU
mistachkinc756ded2011-10-02 05:23:16 +0000332LIBICU = icuuc.lib icuin.lib
mistachkine37f99c2012-06-30 16:22:05 +0000333!ENDIF
mistachkinc756ded2011-10-02 05:23:16 +0000334
shanehb2f20bf2011-06-17 07:07:24 +0000335# This is the command to use for tclsh - normally just "tclsh", but we may
mistachkin5b0b6fd2011-06-25 01:14:36 +0000336# know the specific version we want to use. This variable (TCLSH_CMD) may be
337# overridden via the environment prior to running nmake in order to select a
338# specific Tcl shell to use.
shanehb2f20bf2011-06-17 07:07:24 +0000339#
mistachkine37f99c2012-06-30 16:22:05 +0000340!IFNDEF TCLSH_CMD
shanehb2f20bf2011-06-17 07:07:24 +0000341TCLSH_CMD = tclsh85
mistachkine37f99c2012-06-30 16:22:05 +0000342!ENDIF
shanehb2f20bf2011-06-17 07:07:24 +0000343
344# Compiler options needed for programs that use the readline() library.
345#
shaneh6e7850c2011-06-17 15:57:07 +0000346READLINE_FLAGS = -DHAVE_READLINE=0
shanehb2f20bf2011-06-17 07:07:24 +0000347
348# The library that programs using readline() must link against.
349#
shaneh6e7850c2011-06-17 15:57:07 +0000350LIBREADLINE =
shanehb2f20bf2011-06-17 07:07:24 +0000351
352# Should the database engine be compiled threadsafe
353#
354TCC = $(TCC) -DSQLITE_THREADSAFE=1
mistachkin4d9d1f42012-09-03 10:32:32 +0000355RCC = $(RCC) -DSQLITE_THREADSAFE=1
shanehb2f20bf2011-06-17 07:07:24 +0000356
357# Do threads override each others locks by default (1), or do we test (-1)
358#
359TCC = $(TCC) -DSQLITE_THREAD_OVERRIDE_LOCK=-1
mistachkin4d9d1f42012-09-03 10:32:32 +0000360RCC = $(RCC) -DSQLITE_THREAD_OVERRIDE_LOCK=-1
shanehb2f20bf2011-06-17 07:07:24 +0000361
362# Any target libraries which libsqlite must be linked against
shaneh6e7850c2011-06-17 15:57:07 +0000363#
mistachkine37f99c2012-06-30 16:22:05 +0000364!IFNDEF TLIBS
shaneh6e7850c2011-06-17 15:57:07 +0000365TLIBS =
mistachkine37f99c2012-06-30 16:22:05 +0000366!ENDIF
shanehb2f20bf2011-06-17 07:07:24 +0000367
368# Flags controlling use of the in memory btree implementation
369#
370# SQLITE_TEMP_STORE is 0 to force temporary tables to be in a file, 1 to
371# default to file, 2 to default to memory, and 3 to force temporary
372# tables to always be in memory.
373#
shaneh6e7850c2011-06-17 15:57:07 +0000374TCC = $(TCC) -DSQLITE_TEMP_STORE=1
mistachkin4d9d1f42012-09-03 10:32:32 +0000375RCC = $(RCC) -DSQLITE_TEMP_STORE=1
shanehb2f20bf2011-06-17 07:07:24 +0000376
377# Enable/disable loadable extensions, and other optional features
shaneh6e7850c2011-06-17 15:57:07 +0000378# based on configuration. (-DSQLITE_OMIT*, -DSQLITE_ENABLE*).
379# The same set of OMIT and ENABLE flags should be passed to the
shanehb2f20bf2011-06-17 07:07:24 +0000380# LEMON parser generator and the mkkeywordhash tool as well.
381
382# BEGIN standard options
383OPT_FEATURE_FLAGS = $(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS3=1
384OPT_FEATURE_FLAGS = $(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_RTREE=1
385OPT_FEATURE_FLAGS = $(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_COLUMN_METADATA=1
386# END standard options
387
388# BEGIN required Windows option
389OPT_FEATURE_FLAGS = $(OPT_FEATURE_FLAGS) -DSQLITE_MAX_TRIGGER_DEPTH=100
390# END required Windows option
391
392TCC = $(TCC) $(OPT_FEATURE_FLAGS)
mistachkin4d9d1f42012-09-03 10:32:32 +0000393RCC = $(RCC) $(OPT_FEATURE_FLAGS)
shanehb2f20bf2011-06-17 07:07:24 +0000394
395# Add in any optional parameters specified on the make commane line
396# ie. make "OPTS=-DSQLITE_ENABLE_FOO=1 -DSQLITE_OMIT_FOO=1".
397TCC = $(TCC) $(OPTS)
mistachkin4d9d1f42012-09-03 10:32:32 +0000398RCC = $(RCC) $(OPTS)
shanehb2f20bf2011-06-17 07:07:24 +0000399
mistachkin4d60be52011-08-26 05:40:31 +0000400# If symbols are enabled, enable PDBs.
mistachkinf2d25f22011-08-25 04:09:12 +0000401# If debugging is enabled, disable all optimizations and enable PDBs.
402!IF $(DEBUG)>0
mistachkin4d60be52011-08-26 05:40:31 +0000403TCC = $(TCC) -Od -D_DEBUG
mistachkinfec360a2012-04-18 10:29:21 +0000404BCC = $(BCC) -Od -D_DEBUG
mistachkin4d9d1f42012-09-03 10:32:32 +0000405RCC = $(RCC) -D_DEBUG
mistachkin4d60be52011-08-26 05:40:31 +0000406!ELSE
407TCC = $(TCC) -O2
mistachkinfec360a2012-04-18 10:29:21 +0000408BCC = $(BCC) -O2
mistachkin4d60be52011-08-26 05:40:31 +0000409!ENDIF
410
411!IF $(DEBUG)>0 || $(SYMBOLS)!=0
412TCC = $(TCC) -Zi
mistachkinfec360a2012-04-18 10:29:21 +0000413BCC = $(BCC) -Zi
mistachkin753c5442011-08-25 02:02:25 +0000414!ENDIF
415
mistachkinc756ded2011-10-02 05:23:16 +0000416# If ICU support is enabled, add the compiler options for it.
417!IF $(USE_ICU)!=0
418TCC = $(TCC) -DSQLITE_ENABLE_ICU=1
mistachkin4d9d1f42012-09-03 10:32:32 +0000419RCC = $(RCC) -DSQLITE_ENABLE_ICU=1
mistachkinc756ded2011-10-02 05:23:16 +0000420TCC = $(TCC) -I$(TOP)\ext\icu
mistachkin4d9d1f42012-09-03 10:32:32 +0000421RCC = $(RCC) -I$(TOP)\ext\icu
mistachkinc756ded2011-10-02 05:23:16 +0000422TCC = $(TCC) -I$(ICUINCDIR)
mistachkin4d9d1f42012-09-03 10:32:32 +0000423RCC = $(RCC) -I$(ICUINCDIR)
mistachkinc756ded2011-10-02 05:23:16 +0000424!ENDIF
425
mistachkin4d9d1f42012-09-03 10:32:32 +0000426# Command line prefixes for compiling code, compiling resources,
427# linking, etc.
shanehb2f20bf2011-06-17 07:07:24 +0000428LTCOMPILE = $(TCC) -Fo$@
mistachkin4d9d1f42012-09-03 10:32:32 +0000429LTRCOMPILE = $(RCC) -r
shanehb2f20bf2011-06-17 07:07:24 +0000430LTLIB = lib.exe
shaneh2a0b9ef2011-06-20 20:52:32 +0000431LTLINK = $(TCC) -Fe$@
432
433# If a platform was set, force the linker to target that.
434# Note that the vcvars*.bat family of batch files typically
435# set this for you. Otherwise, the linker will attempt
436# to deduce the binary type based on the object files.
mistachkine37f99c2012-06-30 16:22:05 +0000437!IFDEF PLATFORM
shaneh2a0b9ef2011-06-20 20:52:32 +0000438LTLINKOPTS = /MACHINE:$(PLATFORM)
shaneh29ebea82011-06-21 18:12:07 +0000439LTLIBOPTS = /MACHINE:$(PLATFORM)
shaneh2a0b9ef2011-06-20 20:52:32 +0000440!ENDIF
shanehb2f20bf2011-06-17 07:07:24 +0000441
mistachkina6ff8572012-04-17 21:00:12 +0000442# When compiling for use in the WinRT environment, the following
443# linker option must be used to mark the executable as runnable
444# only in the context of an application container.
445#
446!IF $(FOR_WINRT)!=0
447LTLINKOPTS = $(LTLINKOPTS) /APPCONTAINER
448!ENDIF
449
mistachkinfec360a2012-04-18 10:29:21 +0000450# If either debugging or symbols are enabled, enable PDBs.
mistachkin4d60be52011-08-26 05:40:31 +0000451!IF $(DEBUG)>0 || $(SYMBOLS)!=0
mistachkin228aeff2012-06-30 19:24:09 +0000452LDFLAGS = /DEBUG
mistachkin753c5442011-08-25 02:02:25 +0000453!ENDIF
454
mistachkinc756ded2011-10-02 05:23:16 +0000455# Start with the Tcl related linker options.
mistachkin31856a32012-07-27 07:13:25 +0000456!IF $(NO_TCL)==0
mistachkinc756ded2011-10-02 05:23:16 +0000457LTLIBPATHS = /LIBPATH:$(TCLLIBDIR)
458LTLIBS = $(LIBTCL)
mistachkin31856a32012-07-27 07:13:25 +0000459!ENDIF
mistachkinc756ded2011-10-02 05:23:16 +0000460
461# If ICU support is enabled, add the linker options for it.
462!IF $(USE_ICU)!=0
463LTLIBPATHS = $(LTLIBPATHS) /LIBPATH:$(ICULIBDIR)
464LTLIBS = $(LTLIBS) $(LIBICU)
465!ENDIF
466
shanehb2f20bf2011-06-17 07:07:24 +0000467# nawk compatible awk.
mistachkin5b0b6fd2011-06-25 01:14:36 +0000468NAWK = gawk.exe
shanehb2f20bf2011-06-17 07:07:24 +0000469
470# You should not have to change anything below this line
471###############################################################################
472
shanehb2f20bf2011-06-17 07:07:24 +0000473# Object files for the SQLite library (non-amalgamation).
474#
475LIBOBJS0 = alter.lo analyze.lo attach.lo auth.lo \
476 backup.lo bitvec.lo btmutex.lo btree.lo build.lo \
477 callback.lo complete.lo ctime.lo date.lo delete.lo \
478 expr.lo fault.lo fkey.lo \
drh391d4ba2012-05-28 20:22:16 +0000479 fts3.lo fts3_aux.lo fts3_expr.lo fts3_hash.lo fts3_icu.lo \
480 fts3_porter.lo fts3_snippet.lo fts3_tokenizer.lo fts3_tokenizer1.lo \
481 fts3_unicode.lo fts3_unicode2.lo fts3_write.lo \
shanehb2f20bf2011-06-17 07:07:24 +0000482 func.lo global.lo hash.lo \
483 icu.lo insert.lo journal.lo legacy.lo loadext.lo \
484 main.lo malloc.lo mem0.lo mem1.lo mem2.lo mem3.lo mem5.lo \
485 memjournal.lo \
mistachkinf1c6bc52012-06-21 15:09:20 +0000486 mutex.lo mutex_noop.lo mutex_unix.lo mutex_w32.lo \
487 notify.lo opcodes.lo os.lo os_unix.lo os_win.lo \
shanehb2f20bf2011-06-17 07:07:24 +0000488 pager.lo parse.lo pcache.lo pcache1.lo pragma.lo prepare.lo printf.lo \
489 random.lo resolve.lo rowset.lo rtree.lo select.lo status.lo \
490 table.lo tokenize.lo trigger.lo \
491 update.lo util.lo vacuum.lo \
mistachkin81c428a2011-08-17 02:19:54 +0000492 vdbe.lo vdbeapi.lo vdbeaux.lo vdbeblob.lo vdbemem.lo vdbesort.lo \
493 vdbetrace.lo wal.lo walker.lo where.lo utf.lo vtab.lo
shanehb2f20bf2011-06-17 07:07:24 +0000494
495# Object files for the amalgamation.
496#
497LIBOBJS1 = sqlite3.lo
498
499# Determine the real value of LIBOBJ based on the 'configure' script
500#
501!IF $(USE_AMALGAMATION)==0
502LIBOBJ = $(LIBOBJS0)
503!ELSE
504LIBOBJ = $(LIBOBJS1)
505!ENDIF
506
mistachkin08c1c312012-10-06 03:48:25 +0000507# Determine if embedded resource compilation and usage are enabled.
508#
509!IF $(USE_RC)!=0
510LIBRESOBJS = sqlite3res.lo
511!ELSE
512LIBRESOBJS =
513!ENDIF
514
shanehb2f20bf2011-06-17 07:07:24 +0000515# All of the source code files.
516#
517SRC = \
518 $(TOP)\src\alter.c \
519 $(TOP)\src\analyze.c \
520 $(TOP)\src\attach.c \
521 $(TOP)\src\auth.c \
522 $(TOP)\src\backup.c \
523 $(TOP)\src\bitvec.c \
524 $(TOP)\src\btmutex.c \
525 $(TOP)\src\btree.c \
526 $(TOP)\src\btree.h \
527 $(TOP)\src\btreeInt.h \
528 $(TOP)\src\build.c \
529 $(TOP)\src\callback.c \
530 $(TOP)\src\complete.c \
531 $(TOP)\src\ctime.c \
532 $(TOP)\src\date.c \
533 $(TOP)\src\delete.c \
534 $(TOP)\src\expr.c \
535 $(TOP)\src\fault.c \
536 $(TOP)\src\fkey.c \
537 $(TOP)\src\func.c \
538 $(TOP)\src\global.c \
539 $(TOP)\src\hash.c \
540 $(TOP)\src\hash.h \
541 $(TOP)\src\hwtime.h \
542 $(TOP)\src\insert.c \
543 $(TOP)\src\journal.c \
544 $(TOP)\src\legacy.c \
545 $(TOP)\src\loadext.c \
546 $(TOP)\src\main.c \
547 $(TOP)\src\malloc.c \
548 $(TOP)\src\mem0.c \
549 $(TOP)\src\mem1.c \
550 $(TOP)\src\mem2.c \
551 $(TOP)\src\mem3.c \
552 $(TOP)\src\mem5.c \
553 $(TOP)\src\memjournal.c \
554 $(TOP)\src\mutex.c \
555 $(TOP)\src\mutex.h \
556 $(TOP)\src\mutex_noop.c \
shanehb2f20bf2011-06-17 07:07:24 +0000557 $(TOP)\src\mutex_unix.c \
558 $(TOP)\src\mutex_w32.c \
559 $(TOP)\src\notify.c \
560 $(TOP)\src\os.c \
561 $(TOP)\src\os.h \
562 $(TOP)\src\os_common.h \
shanehb2f20bf2011-06-17 07:07:24 +0000563 $(TOP)\src\os_unix.c \
564 $(TOP)\src\os_win.c \
565 $(TOP)\src\pager.c \
566 $(TOP)\src\pager.h \
567 $(TOP)\src\parse.y \
568 $(TOP)\src\pcache.c \
569 $(TOP)\src\pcache.h \
570 $(TOP)\src\pcache1.c \
571 $(TOP)\src\pragma.c \
572 $(TOP)\src\prepare.c \
573 $(TOP)\src\printf.c \
574 $(TOP)\src\random.c \
575 $(TOP)\src\resolve.c \
576 $(TOP)\src\rowset.c \
577 $(TOP)\src\select.c \
578 $(TOP)\src\status.c \
579 $(TOP)\src\shell.c \
580 $(TOP)\src\sqlite.h.in \
581 $(TOP)\src\sqlite3ext.h \
582 $(TOP)\src\sqliteInt.h \
583 $(TOP)\src\sqliteLimit.h \
584 $(TOP)\src\table.c \
585 $(TOP)\src\tclsqlite.c \
586 $(TOP)\src\tokenize.c \
587 $(TOP)\src\trigger.c \
588 $(TOP)\src\utf.c \
589 $(TOP)\src\update.c \
590 $(TOP)\src\util.c \
591 $(TOP)\src\vacuum.c \
592 $(TOP)\src\vdbe.c \
593 $(TOP)\src\vdbe.h \
594 $(TOP)\src\vdbeapi.c \
595 $(TOP)\src\vdbeaux.c \
596 $(TOP)\src\vdbeblob.c \
597 $(TOP)\src\vdbemem.c \
mistachkin81c428a2011-08-17 02:19:54 +0000598 $(TOP)\src\vdbesort.c \
shanehb2f20bf2011-06-17 07:07:24 +0000599 $(TOP)\src\vdbetrace.c \
600 $(TOP)\src\vdbeInt.h \
601 $(TOP)\src\vtab.c \
602 $(TOP)\src\wal.c \
603 $(TOP)\src\wal.h \
604 $(TOP)\src\walker.c \
605 $(TOP)\src\where.c
606
607# Source code for extensions
608#
609SRC = $(SRC) \
610 $(TOP)\ext\fts1\fts1.c \
611 $(TOP)\ext\fts1\fts1.h \
612 $(TOP)\ext\fts1\fts1_hash.c \
613 $(TOP)\ext\fts1\fts1_hash.h \
614 $(TOP)\ext\fts1\fts1_porter.c \
615 $(TOP)\ext\fts1\fts1_tokenizer.h \
616 $(TOP)\ext\fts1\fts1_tokenizer1.c
617SRC = $(SRC) \
618 $(TOP)\ext\fts2\fts2.c \
619 $(TOP)\ext\fts2\fts2.h \
620 $(TOP)\ext\fts2\fts2_hash.c \
621 $(TOP)\ext\fts2\fts2_hash.h \
622 $(TOP)\ext\fts2\fts2_icu.c \
623 $(TOP)\ext\fts2\fts2_porter.c \
624 $(TOP)\ext\fts2\fts2_tokenizer.h \
625 $(TOP)\ext\fts2\fts2_tokenizer.c \
626 $(TOP)\ext\fts2\fts2_tokenizer1.c
627SRC = $(SRC) \
628 $(TOP)\ext\fts3\fts3.c \
629 $(TOP)\ext\fts3\fts3.h \
630 $(TOP)\ext\fts3\fts3Int.h \
631 $(TOP)\ext\fts3\fts3_aux.c \
632 $(TOP)\ext\fts3\fts3_expr.c \
633 $(TOP)\ext\fts3\fts3_hash.c \
634 $(TOP)\ext\fts3\fts3_hash.h \
635 $(TOP)\ext\fts3\fts3_icu.c \
636 $(TOP)\ext\fts3\fts3_porter.c \
637 $(TOP)\ext\fts3\fts3_snippet.c \
638 $(TOP)\ext\fts3\fts3_tokenizer.h \
639 $(TOP)\ext\fts3\fts3_tokenizer.c \
640 $(TOP)\ext\fts3\fts3_tokenizer1.c \
drh391d4ba2012-05-28 20:22:16 +0000641 $(TOP)\ext\fts3\fts3_unicode.c \
642 $(TOP)\ext\fts3\fts3_unicode2.c \
shanehb2f20bf2011-06-17 07:07:24 +0000643 $(TOP)\ext\fts3\fts3_write.c
644SRC = $(SRC) \
645 $(TOP)\ext\icu\sqliteicu.h \
646 $(TOP)\ext\icu\icu.c
647SRC = $(SRC) \
648 $(TOP)\ext\rtree\rtree.h \
649 $(TOP)\ext\rtree\rtree.c
650
651
652# Generated source code files
653#
654SRC = $(SRC) \
655 keywordhash.h \
656 opcodes.c \
657 opcodes.h \
658 parse.c \
659 parse.h \
660 sqlite3.h
661
662# Source code to the test files.
663#
664TESTSRC = \
665 $(TOP)\src\test1.c \
666 $(TOP)\src\test2.c \
667 $(TOP)\src\test3.c \
668 $(TOP)\src\test4.c \
669 $(TOP)\src\test5.c \
670 $(TOP)\src\test6.c \
671 $(TOP)\src\test7.c \
672 $(TOP)\src\test8.c \
673 $(TOP)\src\test9.c \
674 $(TOP)\src\test_autoext.c \
675 $(TOP)\src\test_async.c \
676 $(TOP)\src\test_backup.c \
677 $(TOP)\src\test_btree.c \
678 $(TOP)\src\test_config.c \
679 $(TOP)\src\test_demovfs.c \
680 $(TOP)\src\test_devsym.c \
mistachkin413c63b2013-01-17 03:18:14 +0000681 $(TOP)\src\test_fs.c \
shanehb2f20bf2011-06-17 07:07:24 +0000682 $(TOP)\src\test_func.c \
683 $(TOP)\src\test_fuzzer.c \
684 $(TOP)\src\test_hexio.c \
685 $(TOP)\src\test_init.c \
686 $(TOP)\src\test_intarray.c \
687 $(TOP)\src\test_journal.c \
688 $(TOP)\src\test_malloc.c \
689 $(TOP)\src\test_multiplex.c \
690 $(TOP)\src\test_mutex.c \
691 $(TOP)\src\test_onefile.c \
692 $(TOP)\src\test_osinst.c \
693 $(TOP)\src\test_pcache.c \
694 $(TOP)\src\test_quota.c \
drh14172742012-12-31 19:18:38 +0000695 $(TOP)\src\test_regexp.c \
shanehb2f20bf2011-06-17 07:07:24 +0000696 $(TOP)\src\test_rtree.c \
697 $(TOP)\src\test_schema.c \
698 $(TOP)\src\test_server.c \
699 $(TOP)\src\test_superlock.c \
700 $(TOP)\src\test_syscall.c \
701 $(TOP)\src\test_stat.c \
702 $(TOP)\src\test_tclvar.c \
703 $(TOP)\src\test_thread.c \
704 $(TOP)\src\test_vfs.c \
705 $(TOP)\src\test_wholenumber.c \
706 $(TOP)\src\test_wsd.c \
707 $(TOP)\ext\fts3\fts3_term.c \
shaneh6e7850c2011-06-17 15:57:07 +0000708 $(TOP)\ext\fts3\fts3_test.c
shanehb2f20bf2011-06-17 07:07:24 +0000709
710# Source code to the library files needed by the test fixture
711#
712TESTSRC2 = \
713 $(TOP)\src\attach.c \
714 $(TOP)\src\backup.c \
715 $(TOP)\src\bitvec.c \
716 $(TOP)\src\btree.c \
717 $(TOP)\src\build.c \
718 $(TOP)\src\ctime.c \
719 $(TOP)\src\date.c \
720 $(TOP)\src\expr.c \
721 $(TOP)\src\func.c \
722 $(TOP)\src\insert.c \
723 $(TOP)\src\wal.c \
724 $(TOP)\src\mem5.c \
725 $(TOP)\src\os.c \
shanehb2f20bf2011-06-17 07:07:24 +0000726 $(TOP)\src\os_unix.c \
727 $(TOP)\src\os_win.c \
728 $(TOP)\src\pager.c \
729 $(TOP)\src\pragma.c \
730 $(TOP)\src\prepare.c \
731 $(TOP)\src\printf.c \
732 $(TOP)\src\random.c \
733 $(TOP)\src\pcache.c \
734 $(TOP)\src\pcache1.c \
735 $(TOP)\src\select.c \
736 $(TOP)\src\tokenize.c \
737 $(TOP)\src\utf.c \
738 $(TOP)\src\util.c \
739 $(TOP)\src\vdbeapi.c \
740 $(TOP)\src\vdbeaux.c \
741 $(TOP)\src\vdbe.c \
742 $(TOP)\src\vdbemem.c \
mistachkin81c428a2011-08-17 02:19:54 +0000743 $(TOP)\src\vdbesort.c \
shanehb2f20bf2011-06-17 07:07:24 +0000744 $(TOP)\src\vdbetrace.c \
745 $(TOP)\src\where.c \
746 parse.c \
747 $(TOP)\ext\fts3\fts3.c \
748 $(TOP)\ext\fts3\fts3_aux.c \
749 $(TOP)\ext\fts3\fts3_expr.c \
shanehb2f20bf2011-06-17 07:07:24 +0000750 $(TOP)\ext\fts3\fts3_tokenizer.c \
drh391d4ba2012-05-28 20:22:16 +0000751 $(TOP)\ext\fts3\fts3_unicode.c \
752 $(TOP)\ext\fts3\fts3_unicode2.c \
shanehb2f20bf2011-06-17 07:07:24 +0000753 $(TOP)\ext\fts3\fts3_write.c \
754 $(TOP)\ext\async\sqlite3async.c
755
756# Header files used by all library source files.
757#
758HDR = \
759 $(TOP)\src\btree.h \
760 $(TOP)\src\btreeInt.h \
761 $(TOP)\src\hash.h \
762 $(TOP)\src\hwtime.h \
763 keywordhash.h \
764 $(TOP)\src\mutex.h \
765 opcodes.h \
766 $(TOP)\src\os.h \
767 $(TOP)\src\os_common.h \
768 $(TOP)\src\pager.h \
769 $(TOP)\src\pcache.h \
shaneh6e7850c2011-06-17 15:57:07 +0000770 parse.h \
771 sqlite3.h \
shanehb2f20bf2011-06-17 07:07:24 +0000772 $(TOP)\src\sqlite3ext.h \
shaneh6e7850c2011-06-17 15:57:07 +0000773 $(TOP)\src\sqliteInt.h \
shanehb2f20bf2011-06-17 07:07:24 +0000774 $(TOP)\src\sqliteLimit.h \
775 $(TOP)\src\vdbe.h \
776 $(TOP)\src\vdbeInt.h
777
778# Header files used by extensions
779#
780EXTHDR = $(EXTHDR) \
781 $(TOP)\ext\fts1\fts1.h \
782 $(TOP)\ext\fts1\fts1_hash.h \
783 $(TOP)\ext\fts1\fts1_tokenizer.h
784EXTHDR = $(EXTHDR) \
785 $(TOP)\ext\fts2\fts2.h \
786 $(TOP)\ext\fts2\fts2_hash.h \
787 $(TOP)\ext\fts2\fts2_tokenizer.h
788EXTHDR = $(EXTHDR) \
789 $(TOP)\ext\fts3\fts3.h \
790 $(TOP)\ext\fts3\fts3Int.h \
791 $(TOP)\ext\fts3\fts3_hash.h \
792 $(TOP)\ext\fts3\fts3_tokenizer.h
793EXTHDR = $(EXTHDR) \
794 $(TOP)\ext\rtree\rtree.h
795EXTHDR = $(EXTHDR) \
796 $(TOP)\ext\icu\sqliteicu.h
797EXTHDR = $(EXTHDR) \
798 $(TOP)\ext\rtree\sqlite3rtree.h
799
800# This is the default Makefile target. The objects listed here
801# are what get build when you type just "make" with no arguments.
802#
mistachkin5b0b6fd2011-06-25 01:14:36 +0000803all: dll libsqlite3.lib sqlite3.exe libtclsqlite3.lib
shanehb2f20bf2011-06-17 07:07:24 +0000804
shanehb2f20bf2011-06-17 07:07:24 +0000805libsqlite3.lib: $(LIBOBJ)
shaneh29ebea82011-06-21 18:12:07 +0000806 $(LTLIB) $(LTLIBOPTS) /OUT:$@ $(LIBOBJ) $(TLIBS)
shanehb2f20bf2011-06-17 07:07:24 +0000807
808libtclsqlite3.lib: tclsqlite.lo libsqlite3.lib
mistachkinc756ded2011-10-02 05:23:16 +0000809 $(LTLIB) $(LTLIBOPTS) $(LTLIBPATHS) /OUT:$@ tclsqlite.lo libsqlite3.lib $(LIBTCL:tcl=tclstub) $(TLIBS)
shanehb2f20bf2011-06-17 07:07:24 +0000810
mistachkin08c1c312012-10-06 03:48:25 +0000811sqlite3.exe: $(TOP)\src\shell.c libsqlite3.lib $(LIBRESOBJS) sqlite3.h
shanehb2f20bf2011-06-17 07:07:24 +0000812 $(LTLINK) $(READLINE_FLAGS) \
shaneh2a0b9ef2011-06-20 20:52:32 +0000813 $(TOP)\src\shell.c \
mistachkin08c1c312012-10-06 03:48:25 +0000814 /link $(LTLINKOPTS) $(LTLIBPATHS) libsqlite3.lib $(LIBRESOBJS) $(LIBREADLINE) $(LTLIBS) $(TLIBS)
shanehb2f20bf2011-06-17 07:07:24 +0000815
816# This target creates a directory named "tsrc" and fills it with
817# copies of all of the C source code and header files needed to
818# build on the target system. Some of the C source code and header
819# files are automatically generated. This target takes care of
820# all that automatic generation.
821#
822.target_source: $(SRC) $(TOP)\tool\vdbe-compress.tcl
823 -rmdir /S/Q tsrc
824 -mkdir tsrc
825 for %i in ($(SRC)) do copy /Y %i tsrc
826 del /Q tsrc\sqlite.h.in tsrc\parse.y
mistachkin5b0b6fd2011-06-25 01:14:36 +0000827 $(TCLSH_CMD) $(TOP)\tool\vdbe-compress.tcl < tsrc\vdbe.c > vdbe.new
shanehb2f20bf2011-06-17 07:07:24 +0000828 move vdbe.new tsrc\vdbe.c
829 echo > .target_source
830
831sqlite3.c: .target_source $(TOP)\tool\mksqlite3c.tcl
832 $(TCLSH_CMD) $(TOP)\tool\mksqlite3c.tcl
833
mistachkin48dd9de2012-12-06 04:33:13 +0000834sqlite3-all.c: sqlite3.c $(TOP)\tool\split-sqlite3c.tcl
835 $(TCLSH_CMD) $(TOP)\tool\split-sqlite3c.tcl
drh75e7bc12011-07-22 11:23:49 +0000836
shanehb2f20bf2011-06-17 07:07:24 +0000837# Rule to build the amalgamation
838#
839sqlite3.lo: sqlite3.c
shaneh6e7850c2011-06-17 15:57:07 +0000840 $(LTCOMPILE) -c sqlite3.c
shanehb2f20bf2011-06-17 07:07:24 +0000841
842# Rules to build the LEMON compiler generator
843#
844lempar.c: $(TOP)\src\lempar.c
845 copy $(TOP)\src\lempar.c .
846
847lemon.exe: $(TOP)\tool\lemon.c lempar.c
mistachkinbd58d5f2012-06-30 22:22:34 +0000848 $(BCC) -Daccess=_access -Fe$@ $(TOP)\tool\lemon.c /link $(NLTLIBPATHS)
shanehb2f20bf2011-06-17 07:07:24 +0000849
850# Rules to build individual *.lo files from generated *.c files. This
851# applies to:
852#
853# parse.lo
854# opcodes.lo
855#
856parse.lo: parse.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000857 $(LTCOMPILE) -c parse.c
shanehb2f20bf2011-06-17 07:07:24 +0000858
859opcodes.lo: opcodes.c
shaneh6e7850c2011-06-17 15:57:07 +0000860 $(LTCOMPILE) -c opcodes.c
shanehb2f20bf2011-06-17 07:07:24 +0000861
mistachkin4d9d1f42012-09-03 10:32:32 +0000862# Rule to build the Win32 resources object file.
863#
mistachkin08c1c312012-10-06 03:48:25 +0000864!IF $(USE_RC)!=0
865$(LIBRESOBJS): $(TOP)\src\sqlite3.rc $(HDR)
mistachkin4d9d1f42012-09-03 10:32:32 +0000866 echo #ifndef SQLITE_RESOURCE_VERSION > sqlite3rc.h
mistachkin8ccc6d42012-09-27 21:03:53 +0000867 for /F %%V in ('type "$(TOP)\VERSION"') do ( \
mistachkin4d9d1f42012-09-03 10:32:32 +0000868 echo #define SQLITE_RESOURCE_VERSION %%V \
mistachkin597a8c52012-09-03 11:14:53 +0000869 | $(NAWK) "/.*/ { gsub(/[.]/,\",\");print }" >> sqlite3rc.h \
mistachkin4d9d1f42012-09-03 10:32:32 +0000870 )
871 echo #endif >> sqlite3rc.h
mistachkin08c1c312012-10-06 03:48:25 +0000872 $(LTRCOMPILE) -fo $(LIBRESOBJS) $(TOP)\src\sqlite3.rc
873!ENDIF
mistachkin4d9d1f42012-09-03 10:32:32 +0000874
shanehb2f20bf2011-06-17 07:07:24 +0000875# Rules to build individual *.lo files from files in the src directory.
876#
877alter.lo: $(TOP)\src\alter.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000878 $(LTCOMPILE) -c $(TOP)\src\alter.c
shanehb2f20bf2011-06-17 07:07:24 +0000879
880analyze.lo: $(TOP)\src\analyze.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000881 $(LTCOMPILE) -c $(TOP)\src\analyze.c
shanehb2f20bf2011-06-17 07:07:24 +0000882
883attach.lo: $(TOP)\src\attach.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000884 $(LTCOMPILE) -c $(TOP)\src\attach.c
shanehb2f20bf2011-06-17 07:07:24 +0000885
886auth.lo: $(TOP)\src\auth.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000887 $(LTCOMPILE) -c $(TOP)\src\auth.c
shanehb2f20bf2011-06-17 07:07:24 +0000888
889backup.lo: $(TOP)\src\backup.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000890 $(LTCOMPILE) -c $(TOP)\src\backup.c
shanehb2f20bf2011-06-17 07:07:24 +0000891
892bitvec.lo: $(TOP)\src\bitvec.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000893 $(LTCOMPILE) -c $(TOP)\src\bitvec.c
shanehb2f20bf2011-06-17 07:07:24 +0000894
895btmutex.lo: $(TOP)\src\btmutex.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000896 $(LTCOMPILE) -c $(TOP)\src\btmutex.c
shanehb2f20bf2011-06-17 07:07:24 +0000897
898btree.lo: $(TOP)\src\btree.c $(HDR) $(TOP)\src\pager.h
shaneh6e7850c2011-06-17 15:57:07 +0000899 $(LTCOMPILE) -c $(TOP)\src\btree.c
shanehb2f20bf2011-06-17 07:07:24 +0000900
901build.lo: $(TOP)\src\build.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000902 $(LTCOMPILE) -c $(TOP)\src\build.c
shanehb2f20bf2011-06-17 07:07:24 +0000903
904callback.lo: $(TOP)\src\callback.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000905 $(LTCOMPILE) -c $(TOP)\src\callback.c
shanehb2f20bf2011-06-17 07:07:24 +0000906
907complete.lo: $(TOP)\src\complete.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000908 $(LTCOMPILE) -c $(TOP)\src\complete.c
shanehb2f20bf2011-06-17 07:07:24 +0000909
910ctime.lo: $(TOP)\src\ctime.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000911 $(LTCOMPILE) -c $(TOP)\src\ctime.c
shanehb2f20bf2011-06-17 07:07:24 +0000912
913date.lo: $(TOP)\src\date.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000914 $(LTCOMPILE) -c $(TOP)\src\date.c
shanehb2f20bf2011-06-17 07:07:24 +0000915
916delete.lo: $(TOP)\src\delete.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000917 $(LTCOMPILE) -c $(TOP)\src\delete.c
shanehb2f20bf2011-06-17 07:07:24 +0000918
919expr.lo: $(TOP)\src\expr.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000920 $(LTCOMPILE) -c $(TOP)\src\expr.c
shanehb2f20bf2011-06-17 07:07:24 +0000921
922fault.lo: $(TOP)\src\fault.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000923 $(LTCOMPILE) -c $(TOP)\src\fault.c
shanehb2f20bf2011-06-17 07:07:24 +0000924
925fkey.lo: $(TOP)\src\fkey.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000926 $(LTCOMPILE) -c $(TOP)\src\fkey.c
shanehb2f20bf2011-06-17 07:07:24 +0000927
928func.lo: $(TOP)\src\func.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000929 $(LTCOMPILE) -c $(TOP)\src\func.c
shanehb2f20bf2011-06-17 07:07:24 +0000930
931global.lo: $(TOP)\src\global.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000932 $(LTCOMPILE) -c $(TOP)\src\global.c
shanehb2f20bf2011-06-17 07:07:24 +0000933
934hash.lo: $(TOP)\src\hash.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000935 $(LTCOMPILE) -c $(TOP)\src\hash.c
shanehb2f20bf2011-06-17 07:07:24 +0000936
937insert.lo: $(TOP)\src\insert.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000938 $(LTCOMPILE) -c $(TOP)\src\insert.c
shanehb2f20bf2011-06-17 07:07:24 +0000939
940journal.lo: $(TOP)\src\journal.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000941 $(LTCOMPILE) -c $(TOP)\src\journal.c
shanehb2f20bf2011-06-17 07:07:24 +0000942
943legacy.lo: $(TOP)\src\legacy.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000944 $(LTCOMPILE) -c $(TOP)\src\legacy.c
shanehb2f20bf2011-06-17 07:07:24 +0000945
946loadext.lo: $(TOP)\src\loadext.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000947 $(LTCOMPILE) -c $(TOP)\src\loadext.c
shanehb2f20bf2011-06-17 07:07:24 +0000948
949main.lo: $(TOP)\src\main.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000950 $(LTCOMPILE) -c $(TOP)\src\main.c
shanehb2f20bf2011-06-17 07:07:24 +0000951
952malloc.lo: $(TOP)\src\malloc.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000953 $(LTCOMPILE) -c $(TOP)\src\malloc.c
shanehb2f20bf2011-06-17 07:07:24 +0000954
955mem0.lo: $(TOP)\src\mem0.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000956 $(LTCOMPILE) -c $(TOP)\src\mem0.c
shanehb2f20bf2011-06-17 07:07:24 +0000957
958mem1.lo: $(TOP)\src\mem1.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000959 $(LTCOMPILE) -c $(TOP)\src\mem1.c
shanehb2f20bf2011-06-17 07:07:24 +0000960
961mem2.lo: $(TOP)\src\mem2.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000962 $(LTCOMPILE) -c $(TOP)\src\mem2.c
shanehb2f20bf2011-06-17 07:07:24 +0000963
964mem3.lo: $(TOP)\src\mem3.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000965 $(LTCOMPILE) -c $(TOP)\src\mem3.c
shanehb2f20bf2011-06-17 07:07:24 +0000966
967mem5.lo: $(TOP)\src\mem5.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000968 $(LTCOMPILE) -c $(TOP)\src\mem5.c
shanehb2f20bf2011-06-17 07:07:24 +0000969
970memjournal.lo: $(TOP)\src\memjournal.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000971 $(LTCOMPILE) -c $(TOP)\src\memjournal.c
shanehb2f20bf2011-06-17 07:07:24 +0000972
973mutex.lo: $(TOP)\src\mutex.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000974 $(LTCOMPILE) -c $(TOP)\src\mutex.c
shanehb2f20bf2011-06-17 07:07:24 +0000975
976mutex_noop.lo: $(TOP)\src\mutex_noop.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000977 $(LTCOMPILE) -c $(TOP)\src\mutex_noop.c
shanehb2f20bf2011-06-17 07:07:24 +0000978
shanehb2f20bf2011-06-17 07:07:24 +0000979mutex_unix.lo: $(TOP)\src\mutex_unix.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000980 $(LTCOMPILE) -c $(TOP)\src\mutex_unix.c
shanehb2f20bf2011-06-17 07:07:24 +0000981
982mutex_w32.lo: $(TOP)\src\mutex_w32.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000983 $(LTCOMPILE) -c $(TOP)\src\mutex_w32.c
shanehb2f20bf2011-06-17 07:07:24 +0000984
985notify.lo: $(TOP)\src\notify.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000986 $(LTCOMPILE) -c $(TOP)\src\notify.c
shanehb2f20bf2011-06-17 07:07:24 +0000987
988pager.lo: $(TOP)\src\pager.c $(HDR) $(TOP)\src\pager.h
shaneh6e7850c2011-06-17 15:57:07 +0000989 $(LTCOMPILE) -c $(TOP)\src\pager.c
shanehb2f20bf2011-06-17 07:07:24 +0000990
991pcache.lo: $(TOP)\src\pcache.c $(HDR) $(TOP)\src\pcache.h
shaneh6e7850c2011-06-17 15:57:07 +0000992 $(LTCOMPILE) -c $(TOP)\src\pcache.c
shanehb2f20bf2011-06-17 07:07:24 +0000993
994pcache1.lo: $(TOP)\src\pcache1.c $(HDR) $(TOP)\src\pcache.h
shaneh6e7850c2011-06-17 15:57:07 +0000995 $(LTCOMPILE) -c $(TOP)\src\pcache1.c
shanehb2f20bf2011-06-17 07:07:24 +0000996
997os.lo: $(TOP)\src\os.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +0000998 $(LTCOMPILE) -c $(TOP)\src\os.c
shanehb2f20bf2011-06-17 07:07:24 +0000999
1000os_unix.lo: $(TOP)\src\os_unix.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001001 $(LTCOMPILE) -c $(TOP)\src\os_unix.c
shanehb2f20bf2011-06-17 07:07:24 +00001002
1003os_win.lo: $(TOP)\src\os_win.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001004 $(LTCOMPILE) -c $(TOP)\src\os_win.c
shanehb2f20bf2011-06-17 07:07:24 +00001005
shanehb2f20bf2011-06-17 07:07:24 +00001006pragma.lo: $(TOP)\src\pragma.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001007 $(LTCOMPILE) -c $(TOP)\src\pragma.c
shanehb2f20bf2011-06-17 07:07:24 +00001008
1009prepare.lo: $(TOP)\src\prepare.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001010 $(LTCOMPILE) -c $(TOP)\src\prepare.c
shanehb2f20bf2011-06-17 07:07:24 +00001011
1012printf.lo: $(TOP)\src\printf.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001013 $(LTCOMPILE) -c $(TOP)\src\printf.c
shanehb2f20bf2011-06-17 07:07:24 +00001014
1015random.lo: $(TOP)\src\random.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001016 $(LTCOMPILE) -c $(TOP)\src\random.c
shanehb2f20bf2011-06-17 07:07:24 +00001017
1018resolve.lo: $(TOP)\src\resolve.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001019 $(LTCOMPILE) -c $(TOP)\src\resolve.c
shanehb2f20bf2011-06-17 07:07:24 +00001020
1021rowset.lo: $(TOP)\src\rowset.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001022 $(LTCOMPILE) -c $(TOP)\src\rowset.c
shanehb2f20bf2011-06-17 07:07:24 +00001023
1024select.lo: $(TOP)\src\select.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001025 $(LTCOMPILE) -c $(TOP)\src\select.c
shanehb2f20bf2011-06-17 07:07:24 +00001026
1027status.lo: $(TOP)\src\status.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001028 $(LTCOMPILE) -c $(TOP)\src\status.c
shanehb2f20bf2011-06-17 07:07:24 +00001029
1030table.lo: $(TOP)\src\table.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001031 $(LTCOMPILE) -c $(TOP)\src\table.c
shanehb2f20bf2011-06-17 07:07:24 +00001032
1033tokenize.lo: $(TOP)\src\tokenize.c keywordhash.h $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001034 $(LTCOMPILE) -c $(TOP)\src\tokenize.c
shanehb2f20bf2011-06-17 07:07:24 +00001035
1036trigger.lo: $(TOP)\src\trigger.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001037 $(LTCOMPILE) -c $(TOP)\src\trigger.c
shanehb2f20bf2011-06-17 07:07:24 +00001038
1039update.lo: $(TOP)\src\update.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001040 $(LTCOMPILE) -c $(TOP)\src\update.c
shanehb2f20bf2011-06-17 07:07:24 +00001041
1042utf.lo: $(TOP)\src\utf.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001043 $(LTCOMPILE) -c $(TOP)\src\utf.c
shanehb2f20bf2011-06-17 07:07:24 +00001044
1045util.lo: $(TOP)\src\util.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001046 $(LTCOMPILE) -c $(TOP)\src\util.c
shanehb2f20bf2011-06-17 07:07:24 +00001047
1048vacuum.lo: $(TOP)\src\vacuum.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001049 $(LTCOMPILE) -c $(TOP)\src\vacuum.c
shanehb2f20bf2011-06-17 07:07:24 +00001050
1051vdbe.lo: $(TOP)\src\vdbe.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001052 $(LTCOMPILE) -c $(TOP)\src\vdbe.c
shanehb2f20bf2011-06-17 07:07:24 +00001053
1054vdbeapi.lo: $(TOP)\src\vdbeapi.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001055 $(LTCOMPILE) -c $(TOP)\src\vdbeapi.c
shanehb2f20bf2011-06-17 07:07:24 +00001056
1057vdbeaux.lo: $(TOP)\src\vdbeaux.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001058 $(LTCOMPILE) -c $(TOP)\src\vdbeaux.c
shanehb2f20bf2011-06-17 07:07:24 +00001059
1060vdbeblob.lo: $(TOP)\src\vdbeblob.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001061 $(LTCOMPILE) -c $(TOP)\src\vdbeblob.c
shanehb2f20bf2011-06-17 07:07:24 +00001062
1063vdbemem.lo: $(TOP)\src\vdbemem.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001064 $(LTCOMPILE) -c $(TOP)\src\vdbemem.c
shanehb2f20bf2011-06-17 07:07:24 +00001065
mistachkin81c428a2011-08-17 02:19:54 +00001066vdbesort.lo: $(TOP)\src\vdbesort.c $(HDR)
1067 $(LTCOMPILE) -c $(TOP)\src\vdbesort.c
1068
shanehb2f20bf2011-06-17 07:07:24 +00001069vdbetrace.lo: $(TOP)\src\vdbetrace.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001070 $(LTCOMPILE) -c $(TOP)\src\vdbetrace.c
shanehb2f20bf2011-06-17 07:07:24 +00001071
1072vtab.lo: $(TOP)\src\vtab.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001073 $(LTCOMPILE) -c $(TOP)\src\vtab.c
shanehb2f20bf2011-06-17 07:07:24 +00001074
1075wal.lo: $(TOP)\src\wal.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001076 $(LTCOMPILE) -c $(TOP)\src\wal.c
shanehb2f20bf2011-06-17 07:07:24 +00001077
1078walker.lo: $(TOP)\src\walker.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001079 $(LTCOMPILE) -c $(TOP)\src\walker.c
shanehb2f20bf2011-06-17 07:07:24 +00001080
1081where.lo: $(TOP)\src\where.c $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001082 $(LTCOMPILE) -c $(TOP)\src\where.c
shanehb2f20bf2011-06-17 07:07:24 +00001083
1084tclsqlite.lo: $(TOP)\src\tclsqlite.c $(HDR)
1085 $(LTCOMPILE) -DUSE_TCL_STUBS=1 -DBUILD_sqlite -I$(TCLINCDIR) -c $(TOP)\src\tclsqlite.c
1086
1087tclsqlite-shell.lo: $(TOP)\src\tclsqlite.c $(HDR)
1088 $(LTCOMPILE) -DTCLSH=1 -DBUILD_sqlite -I$(TCLINCDIR) -c $(TOP)\src\tclsqlite.c
1089
mistachkin08c1c312012-10-06 03:48:25 +00001090tclsqlite3.exe: tclsqlite-shell.lo libsqlite3.lib $(LIBRESOBJS)
1091 $(LD) $(LDFLAGS) $(LTLINKOPTS) $(LTLIBPATHS) /OUT:$@ libsqlite3.lib tclsqlite-shell.lo $(LIBRESOBJS) $(LTLIBS) $(TLIBS)
shanehb2f20bf2011-06-17 07:07:24 +00001092
1093# Rules to build opcodes.c and opcodes.h
1094#
1095opcodes.c: opcodes.h $(TOP)\mkopcodec.awk
drh307ff302011-08-30 01:29:04 +00001096 $(NAWK) -f $(TOP)\mkopcodec.awk opcodes.h > opcodes.c
shanehb2f20bf2011-06-17 07:07:24 +00001097
1098opcodes.h: parse.h $(TOP)\src\vdbe.c $(TOP)\mkopcodeh.awk
mistachkin5b0b6fd2011-06-25 01:14:36 +00001099 type parse.h $(TOP)\src\vdbe.c | $(NAWK) -f $(TOP)\mkopcodeh.awk > opcodes.h
shanehb2f20bf2011-06-17 07:07:24 +00001100
1101# Rules to build parse.c and parse.h - the outputs of lemon.
1102#
1103parse.h: parse.c
1104
1105parse.c: $(TOP)\src\parse.y lemon.exe $(TOP)\addopcodes.awk
shaneh6e7850c2011-06-17 15:57:07 +00001106 del /Q parse.y parse.h parse.h.temp
shanehb2f20bf2011-06-17 07:07:24 +00001107 copy $(TOP)\src\parse.y .
shanehb2f20bf2011-06-17 07:07:24 +00001108 .\lemon.exe $(OPT_FEATURE_FLAGS) $(OPTS) parse.y
1109 move parse.h parse.h.temp
mistachkin5b0b6fd2011-06-25 01:14:36 +00001110 $(NAWK) -f $(TOP)\addopcodes.awk parse.h.temp > parse.h
shanehb2f20bf2011-06-17 07:07:24 +00001111
1112sqlite3.h: $(TOP)\src\sqlite.h.in $(TOP)\manifest.uuid $(TOP)\VERSION
mistachkin5b0b6fd2011-06-25 01:14:36 +00001113 $(TCLSH_CMD) $(TOP)\tool\mksqlite3h.tcl $(TOP) > sqlite3.h
shanehb2f20bf2011-06-17 07:07:24 +00001114
1115mkkeywordhash.exe: $(TOP)\tool\mkkeywordhash.c
mistachkinbd58d5f2012-06-30 22:22:34 +00001116 $(BCC) -Fe$@ $(OPT_FEATURE_FLAGS) $(OPTS) $(TOP)\tool\mkkeywordhash.c /link $(NLTLIBPATHS)
shanehb2f20bf2011-06-17 07:07:24 +00001117
1118keywordhash.h: $(TOP)\tool\mkkeywordhash.c mkkeywordhash.exe
mistachkin5b0b6fd2011-06-25 01:14:36 +00001119 .\mkkeywordhash.exe > keywordhash.h
shanehb2f20bf2011-06-17 07:07:24 +00001120
1121
1122
1123# Rules to build the extension objects.
1124#
1125icu.lo: $(TOP)\ext\icu\icu.c $(HDR) $(EXTHDR)
1126 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\icu\icu.c
1127
1128fts2.lo: $(TOP)\ext\fts2\fts2.c $(HDR) $(EXTHDR)
1129 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2.c
1130
1131fts2_hash.lo: $(TOP)\ext\fts2\fts2_hash.c $(HDR) $(EXTHDR)
1132 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2_hash.c
1133
1134fts2_icu.lo: $(TOP)\ext\fts2\fts2_icu.c $(HDR) $(EXTHDR)
1135 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2_icu.c
1136
1137fts2_porter.lo: $(TOP)\ext\fts2\fts2_porter.c $(HDR) $(EXTHDR)
1138 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2_porter.c
1139
1140fts2_tokenizer.lo: $(TOP)\ext\fts2\fts2_tokenizer.c $(HDR) $(EXTHDR)
1141 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2_tokenizer.c
1142
1143fts2_tokenizer1.lo: $(TOP)\ext\fts2\fts2_tokenizer1.c $(HDR) $(EXTHDR)
1144 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2_tokenizer1.c
1145
1146fts3.lo: $(TOP)\ext\fts3\fts3.c $(HDR) $(EXTHDR)
1147 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3.c
1148
1149fts3_aux.lo: $(TOP)\ext\fts3\fts3_aux.c $(HDR) $(EXTHDR)
1150 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_aux.c
1151
1152fts3_expr.lo: $(TOP)\ext\fts3\fts3_expr.c $(HDR) $(EXTHDR)
1153 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_expr.c
1154
1155fts3_hash.lo: $(TOP)\ext\fts3\fts3_hash.c $(HDR) $(EXTHDR)
1156 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_hash.c
1157
1158fts3_icu.lo: $(TOP)\ext\fts3\fts3_icu.c $(HDR) $(EXTHDR)
1159 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_icu.c
1160
1161fts3_snippet.lo: $(TOP)\ext\fts3\fts3_snippet.c $(HDR) $(EXTHDR)
1162 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_snippet.c
1163
1164fts3_porter.lo: $(TOP)\ext\fts3\fts3_porter.c $(HDR) $(EXTHDR)
1165 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_porter.c
1166
1167fts3_tokenizer.lo: $(TOP)\ext\fts3\fts3_tokenizer.c $(HDR) $(EXTHDR)
1168 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_tokenizer.c
1169
1170fts3_tokenizer1.lo: $(TOP)\ext\fts3\fts3_tokenizer1.c $(HDR) $(EXTHDR)
1171 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_tokenizer1.c
1172
drh391d4ba2012-05-28 20:22:16 +00001173fts3_unicode.lo: $(TOP)\ext\fts3\fts3_unicode.c $(HDR) $(EXTHDR)
1174 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_unicode.c
1175
1176fts3_unicode2.lo: $(TOP)\ext\fts3\fts3_unicode2.c $(HDR) $(EXTHDR)
1177 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_unicode2.c
1178
shanehb2f20bf2011-06-17 07:07:24 +00001179fts3_write.lo: $(TOP)\ext\fts3\fts3_write.c $(HDR) $(EXTHDR)
1180 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_write.c
1181
1182rtree.lo: $(TOP)\ext\rtree\rtree.c $(HDR) $(EXTHDR)
1183 $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\rtree\rtree.c
1184
1185
1186# Rules to build the 'testfixture' application.
1187#
1188# If using the amalgamation, use sqlite3.c directly to build the test
1189# fixture. Otherwise link against libsqlite3.lib. (This distinction is
1190# necessary because the test fixture requires non-API symbols which are
1191# hidden when the library is built via the amalgamation).
1192#
1193TESTFIXTURE_FLAGS = -DTCLSH=1 -DSQLITE_TEST=1 -DSQLITE_CRASH_TEST=1
shaneh6e7850c2011-06-17 15:57:07 +00001194TESTFIXTURE_FLAGS = $(TESTFIXTURE_FLAGS) -DSQLITE_SERVER=1 -DSQLITE_PRIVATE="" -DSQLITE_CORE
shanehb2f20bf2011-06-17 07:07:24 +00001195
1196TESTFIXTURE_SRC0 = $(TESTSRC2) libsqlite3.lib
1197TESTFIXTURE_SRC1 = sqlite3.c
1198!IF $(USE_AMALGAMATION)==0
1199TESTFIXTURE_SRC = $(TESTSRC) $(TOP)\src\tclsqlite.c $(TESTFIXTURE_SRC0)
1200!ELSE
1201TESTFIXTURE_SRC = $(TESTSRC) $(TOP)\src\tclsqlite.c $(TESTFIXTURE_SRC1)
1202!ENDIF
1203
mistachkin08c1c312012-10-06 03:48:25 +00001204testfixture.exe: $(TESTFIXTURE_SRC) $(LIBRESOBJS) $(HDR)
shaneh6e7850c2011-06-17 15:57:07 +00001205 $(LTLINK) -DSQLITE_NO_SYNC=1 $(TESTFIXTURE_FLAGS) \
shanehb2f20bf2011-06-17 07:07:24 +00001206 -DBUILD_sqlite -I$(TCLINCDIR) \
shaneh2a0b9ef2011-06-20 20:52:32 +00001207 $(TESTFIXTURE_SRC) \
mistachkin08c1c312012-10-06 03:48:25 +00001208 /link $(LTLINKOPTS) $(LTLIBPATHS) $(LIBRESOBJS) $(LTLIBS) $(TLIBS)
shanehb2f20bf2011-06-17 07:07:24 +00001209
1210fulltest: testfixture.exe sqlite3.exe
1211 .\testfixture.exe $(TOP)\test\all.test
1212
1213soaktest: testfixture.exe sqlite3.exe
1214 .\testfixture.exe $(TOP)\test\all.test -soak=1
1215
mistachkinc60941f2012-09-13 01:51:02 +00001216fulltestonly: testfixture.exe sqlite3.exe
1217 .\testfixture.exe $(TOP)\test\full.test
1218
shanehb2f20bf2011-06-17 07:07:24 +00001219test: testfixture.exe sqlite3.exe
1220 .\testfixture.exe $(TOP)\test\veryquick.test
1221
mistachkin9a55e312011-09-22 00:06:44 +00001222sqlite3_analyzer.c: sqlite3.c $(TOP)\src\test_stat.c $(TOP)\src\tclsqlite.c $(TOP)\tool\spaceanal.tcl
1223 copy sqlite3.c + $(TOP)\src\test_stat.c + $(TOP)\src\tclsqlite.c $@
1224 echo static const char *tclsh_main_loop(void){ >> $@
1225 echo static const char *zMainloop = >> $@
1226 $(NAWK) -f $(TOP)\tool\tostr.awk $(TOP)\tool\spaceanal.tcl >> $@
1227 echo ; return zMainloop; } >> $@
shanehb2f20bf2011-06-17 07:07:24 +00001228
mistachkin08c1c312012-10-06 03:48:25 +00001229sqlite3_analyzer.exe: sqlite3_analyzer.c $(LIBRESOBJS)
mistachkin9a55e312011-09-22 00:06:44 +00001230 $(LTLINK) -DBUILD_sqlite -DTCLSH=2 -I$(TCLINCDIR) sqlite3_analyzer.c \
mistachkin08c1c312012-10-06 03:48:25 +00001231 /link $(LTLINKOPTS) $(LTLIBPATHS) $(LIBRESOBJS) $(LTLIBS) $(TLIBS)
shanehb2f20bf2011-06-17 07:07:24 +00001232
shaneh6e7850c2011-06-17 15:57:07 +00001233clean:
mistachkin649591a2011-09-11 10:14:37 +00001234 del /Q *.lo *.ilk *.lib *.obj *.pdb sqlite3.exe libsqlite3.lib
mistachkinb482a442012-02-11 22:19:26 +00001235 del /Q *.da *.bb *.bbg gmon.out
shanehb2f20bf2011-06-17 07:07:24 +00001236 del /Q sqlite3.h opcodes.c opcodes.h
1237 del /Q lemon.exe lempar.c parse.*
1238 del /Q mkkeywordhash.exe keywordhash.h
mistachkinb482a442012-02-11 22:19:26 +00001239 -rmdir /Q/S .deps
1240 -rmdir /Q/S .libs
mistachkinf8a78462012-03-08 20:00:36 +00001241 -rmdir /Q/S quota2a
1242 -rmdir /Q/S quota2b
1243 -rmdir /Q/S quota2c
shanehb2f20bf2011-06-17 07:07:24 +00001244 -rmdir /Q/S tsrc
1245 del /Q .target_source
mistachkin0f104d52012-09-03 11:01:21 +00001246 del /Q tclsqlite3.exe tclsqlite3.exp
shaneh603e4262011-06-17 18:52:07 +00001247 del /Q testfixture.exe testfixture.exp test.db
shaneh6e7850c2011-06-17 15:57:07 +00001248 del /Q sqlite3.dll sqlite3.lib sqlite3.exp sqlite3.def
shanehb2f20bf2011-06-17 07:07:24 +00001249 del /Q sqlite3.c
mistachkin4d9d1f42012-09-03 10:32:32 +00001250 del /Q sqlite3rc.h
mistachkin9a55e312011-09-22 00:06:44 +00001251 del /Q sqlite3_analyzer.exe sqlite3_analyzer.exp sqlite3_analyzer.c
mistachkin29b75bd2012-10-20 09:35:57 +00001252 del /Q sqlite-*-output.vsix
shanehb2f20bf2011-06-17 07:07:24 +00001253
mistachkin4d9d1f42012-09-03 10:32:32 +00001254# Dynamic link library section.
shanehb2f20bf2011-06-17 07:07:24 +00001255#
1256dll: sqlite3.dll
1257
shaneh6e7850c2011-06-17 15:57:07 +00001258sqlite3.def: libsqlite3.lib
mistachkin5b0b6fd2011-06-25 01:14:36 +00001259 echo EXPORTS > sqlite3.def
shaneh6e7850c2011-06-17 15:57:07 +00001260 dumpbin /all libsqlite3.lib \
mistachkin6a3eb4a2011-08-17 07:46:48 +00001261 | $(NAWK) "/ 1 _?sqlite3_/ { sub(/^.* _?/,\"\");print }" \
mistachkin5b0b6fd2011-06-25 01:14:36 +00001262 | sort >> sqlite3.def
shanehb2f20bf2011-06-17 07:07:24 +00001263
mistachkin08c1c312012-10-06 03:48:25 +00001264sqlite3.dll: $(LIBOBJ) $(LIBRESOBJS) sqlite3.def
1265 $(LD) $(LDFLAGS) $(LTLINKOPTS) $(LTLIBPATHS) /DLL /DEF:sqlite3.def /OUT:$@ $(LIBOBJ) $(LIBRESOBJS) $(LTLIBS) $(TLIBS)