More README cleanup
[sqlcipher.git] / Makefile.msc
blob796aec4b06ebe8dab9ca266655a783d7b727d32e
2 # nmake Makefile for SQLite
4 ###############################################################################
5 ############################## START OF OPTIONS ###############################
6 ###############################################################################
8 # The toplevel directory of the source tree.  This is the directory
9 # that contains this "Makefile.msc".
11 TOP = .
13 # <<mark>>
14 # Set this non-0 to create and use the SQLite amalgamation file.
16 !IFNDEF USE_AMALGAMATION
17 USE_AMALGAMATION = 1
18 !ENDIF
19 # <</mark>>
21 # Set this non-0 to enable full warnings (-W4, etc) when compiling.
23 !IFNDEF USE_FULLWARN
24 USE_FULLWARN = 0
25 !ENDIF
27 # Set this non-0 to use "stdcall" calling convention for the core library
28 # and shell executable.
30 !IFNDEF USE_STDCALL
31 USE_STDCALL = 0
32 !ENDIF
34 # Set this non-0 to have the shell executable link against the core dynamic
35 # link library.
37 !IFNDEF DYNAMIC_SHELL
38 DYNAMIC_SHELL = 0
39 !ENDIF
41 # Set this non-0 to enable extra code that attempts to detect misuse of the
42 # SQLite API.
44 !IFNDEF API_ARMOR
45 API_ARMOR = 0
46 !ENDIF
48 # If necessary, create a list of harmless compiler warnings to disable when
49 # compiling the various tools.  For the SQLite source code itself, warnings,
50 # if any, will be disabled from within it.
52 !IFNDEF NO_WARN
53 !IF $(USE_FULLWARN)!=0
54 NO_WARN = -wd4054 -wd4055 -wd4100 -wd4127 -wd4130 -wd4152 -wd4189 -wd4206
55 NO_WARN = $(NO_WARN) -wd4210 -wd4232 -wd4305 -wd4306 -wd4702 -wd4706
56 !ENDIF
57 !ENDIF
59 # Set this non-0 to use the library paths and other options necessary for
60 # Windows Phone 8.1.
62 !IFNDEF USE_WP81_OPTS
63 USE_WP81_OPTS = 0
64 !ENDIF
66 # Set this non-0 to split the SQLite amalgamation file into chunks to
67 # be used for debugging with Visual Studio.
69 !IFNDEF SPLIT_AMALGAMATION
70 SPLIT_AMALGAMATION = 0
71 !ENDIF
73 # <<mark>>
74 # Set this non-0 to use the International Components for Unicode (ICU).
76 !IFNDEF USE_ICU
77 USE_ICU = 0
78 !ENDIF
79 # <</mark>>
81 # Set this non-0 to dynamically link to the MSVC runtime library.
83 !IFNDEF USE_CRT_DLL
84 USE_CRT_DLL = 0
85 !ENDIF
87 # Set this non-0 to link to the RPCRT4 library.
89 !IFNDEF USE_RPCRT4_LIB
90 USE_RPCRT4_LIB = 0
91 !ENDIF
93 # Set this non-0 to generate assembly code listings for the source code
94 # files.
96 !IFNDEF USE_LISTINGS
97 USE_LISTINGS = 0
98 !ENDIF
100 # Set this non-0 to attempt setting the native compiler automatically
101 # for cross-compiling the command line tools needed during the compilation
102 # process.
104 !IFNDEF XCOMPILE
105 XCOMPILE = 0
106 !ENDIF
108 # Set this non-0 to use the native libraries paths for cross-compiling
109 # the command line tools needed during the compilation process.
111 !IFNDEF USE_NATIVE_LIBPATHS
112 USE_NATIVE_LIBPATHS = 0
113 !ENDIF
115 # Set this 0 to skip the compiling and embedding of version resources.
117 !IFNDEF USE_RC
118 USE_RC = 1
119 !ENDIF
121 # Set this non-0 to compile binaries suitable for the WinRT environment.
122 # This setting does not apply to any binaries that require Tcl to operate
123 # properly (i.e. the text fixture, etc).
125 !IFNDEF FOR_WINRT
126 FOR_WINRT = 0
127 !ENDIF
129 # Set this non-0 to compile binaries suitable for the UWP environment.
130 # This setting does not apply to any binaries that require Tcl to operate
131 # properly (i.e. the text fixture, etc).
133 !IFNDEF FOR_UWP
134 FOR_UWP = 0
135 !ENDIF
137 # Set this non-0 to compile binaries suitable for the Windows 10 platform.
139 !IFNDEF FOR_WIN10
140 FOR_WIN10 = 0
141 !ENDIF
143 # <<mark>>
144 # Set this non-0 to skip attempting to look for and/or link with the Tcl
145 # runtime library.
147 !IFNDEF NO_TCL
148 NO_TCL = 0
149 !ENDIF
150 # <</mark>>
152 # Set this to non-0 to create and use PDBs.
154 !IFNDEF SYMBOLS
155 SYMBOLS = 1
156 !ENDIF
158 # Set this to non-0 to use the SQLite debugging heap subsystem.
160 !IFNDEF MEMDEBUG
161 MEMDEBUG = 0
162 !ENDIF
164 # Set this to non-0 to use the Win32 native heap subsystem.
166 !IFNDEF WIN32HEAP
167 WIN32HEAP = 0
168 !ENDIF
170 # Set this to non-0 to enable OSTRACE() macros, which can be useful when
171 # debugging.
173 !IFNDEF OSTRACE
174 OSTRACE = 0
175 !ENDIF
177 # Set this to one of the following values to enable various debugging
178 # features.  Each level includes the debugging options from the previous
179 # levels.  Currently, the recognized values for DEBUG are:
181 # 0 == NDEBUG: Disables assert() and other runtime diagnostics.
182 # 1 == SQLITE_ENABLE_API_ARMOR: extra attempts to detect misuse of the API.
183 # 2 == Disables NDEBUG and all optimizations and then enables PDBs.
184 # 3 == SQLITE_DEBUG: Enables various diagnostics messages and code.
185 # 4 == SQLITE_WIN32_MALLOC_VALIDATE: Validate the Win32 native heap per call.
186 # 5 == SQLITE_DEBUG_OS_TRACE: Enables output from the OSTRACE() macros.
187 # 6 == SQLITE_ENABLE_IOTRACE: Enables output from the IOTRACE() macros.
189 !IFNDEF DEBUG
190 DEBUG = 0
191 !ENDIF
193 # Enable use of available compiler optimizations?  Normally, this should be
194 # non-zero.  Setting this to zero, thus disabling all compiler optimizations,
195 # can be useful for testing.
197 !IFNDEF OPTIMIZATIONS
198 OPTIMIZATIONS = 2
199 !ENDIF
201 # Set the source code file to be used by executables and libraries when
202 # they need the amalgamation.
204 !IFNDEF SQLITE3C
205 !IF $(SPLIT_AMALGAMATION)!=0
206 SQLITE3C = sqlite3-all.c
207 !ELSE
208 SQLITE3C = sqlite3.c
209 !ENDIF
210 !ENDIF
212 # Set the include code file to be used by executables and libraries when
213 # they need SQLite.
215 !IFNDEF SQLITE3H
216 SQLITE3H = sqlite3.h
217 !ENDIF
219 # This is the name to use for the SQLite dynamic link library (DLL).
221 !IFNDEF SQLITE3DLL
222 SQLITE3DLL = sqlite3.dll
223 !ENDIF
225 # This is the name to use for the SQLite import library (LIB).
227 !IFNDEF SQLITE3LIB
228 SQLITE3LIB = sqlite3.lib
229 !ENDIF
231 # This is the name to use for the SQLite shell executable (EXE).
233 !IFNDEF SQLITE3EXE
234 SQLITE3EXE = sqlite3.exe
235 !ENDIF
237 # This is the argument used to set the program database (PDB) file for the
238 # SQLite shell executable (EXE).
240 !IFNDEF SQLITE3EXEPDB
241 SQLITE3EXEPDB = /pdb:sqlite3sh.pdb
242 !ENDIF
244 # These are the "standard" SQLite compilation options used when compiling for
245 # the Windows platform.
247 !IFNDEF OPT_FEATURE_FLAGS
248 OPT_FEATURE_FLAGS = $(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS3=1
249 OPT_FEATURE_FLAGS = $(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_RTREE=1
250 OPT_FEATURE_FLAGS = $(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_COLUMN_METADATA=1
251 !ENDIF
253 # These are the "extended" SQLite compilation options used when compiling for
254 # the Windows 10 platform.
256 !IFNDEF EXT_FEATURE_FLAGS
257 !IF $(FOR_WIN10)!=0
258 EXT_FEATURE_FLAGS = $(EXT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS4=1
259 EXT_FEATURE_FLAGS = $(EXT_FEATURE_FLAGS) -DSQLITE_SYSTEM_MALLOC=1
260 EXT_FEATURE_FLAGS = $(EXT_FEATURE_FLAGS) -DSQLITE_OMIT_LOCALTIME=1
261 !ELSE
262 EXT_FEATURE_FLAGS =
263 !ENDIF
264 !ENDIF
266 ###############################################################################
267 ############################### END OF OPTIONS ################################
268 ###############################################################################
270 # When compiling for the Windows 10 platform, the PLATFORM macro must be set
271 # to an appropriate value (e.g. x86, x64, arm, arm64, etc).
273 !IF $(FOR_WIN10)!=0
274 !IFNDEF PLATFORM
275 !ERROR Using the FOR_WIN10 option requires a value for PLATFORM.
276 !ENDIF
277 !ENDIF
279 # This assumes that MSVC is always installed in 32-bit Program Files directory
280 # and sets the variable for use in locating other 32-bit installs accordingly.
282 PROGRAMFILES_X86 = $(VCINSTALLDIR)\..\..
283 PROGRAMFILES_X86 = $(PROGRAMFILES_X86:\\=\)
285 # Check for the predefined command macro CC.  This should point to the compiler
286 # binary for the target platform.  If it is not defined, simply define it to
287 # the legacy default value 'cl.exe'.
289 !IFNDEF CC
290 CC = cl.exe
291 !ENDIF
293 # Check for the command macro LD.  This should point to the linker binary for
294 # the target platform.  If it is not defined, simply define it to the legacy
295 # default value 'link.exe'.
297 !IFNDEF LD
298 LD = link.exe
299 !ENDIF
301 # Check for the predefined command macro RC.  This should point to the resource
302 # compiler binary for the target platform.  If it is not defined, simply define
303 # it to the legacy default value 'rc.exe'.
305 !IFNDEF RC
306 RC = rc.exe
307 !ENDIF
309 # Check for the MSVC runtime library path macro.  Otherwise, this value will
310 # default to the 'lib' directory underneath the MSVC installation directory.
312 !IFNDEF CRTLIBPATH
313 CRTLIBPATH = $(VCINSTALLDIR)\lib
314 !ENDIF
316 CRTLIBPATH = $(CRTLIBPATH:\\=\)
318 # Check for the command macro NCC.  This should point to the compiler binary
319 # for the platform the compilation process is taking place on.  If it is not
320 # defined, simply define it to have the same value as the CC macro.  When
321 # cross-compiling, it is suggested that this macro be modified via the command
322 # line (since nmake itself does not provide a built-in method to guess it).
323 # For example, to use the x86 compiler when cross-compiling for x64, a command
324 # line similar to the following could be used (all on one line):
326 #     nmake /f Makefile.msc sqlite3.dll
327 #           XCOMPILE=1 USE_NATIVE_LIBPATHS=1
329 # Alternatively, the full path and file name to the compiler binary for the
330 # platform the compilation process is taking place may be specified (all on
331 # one line):
333 #     nmake /f Makefile.msc sqlite3.dll
334 #           "NCC=""%VCINSTALLDIR%\bin\cl.exe"""
335 #           USE_NATIVE_LIBPATHS=1
337 !IFDEF NCC
338 NCC = $(NCC:\\=\)
339 !ELSEIF $(XCOMPILE)!=0
340 NCC = "$(VCINSTALLDIR)\bin\$(CC)"
341 NCC = $(NCC:\\=\)
342 !ELSE
343 NCC = $(CC)
344 !ENDIF
346 # Check for the MSVC native runtime library path macro.  Otherwise,
347 # this value will default to the 'lib' directory underneath the MSVC
348 # installation directory.
350 !IFNDEF NCRTLIBPATH
351 NCRTLIBPATH = $(VCINSTALLDIR)\lib
352 !ENDIF
354 NCRTLIBPATH = $(NCRTLIBPATH:\\=\)
356 # Check for the Platform SDK library path macro.  Otherwise, this
357 # value will default to the 'lib' directory underneath the Windows
358 # SDK installation directory (the environment variable used appears
359 # to be available when using Visual C++ 2008 or later via the
360 # command line).
362 !IFNDEF NSDKLIBPATH
363 NSDKLIBPATH = $(WINDOWSSDKDIR)\lib
364 !ENDIF
366 NSDKLIBPATH = $(NSDKLIBPATH:\\=\)
368 # Check for the UCRT library path macro.  Otherwise, this value will
369 # default to the version-specific, platform-specific 'lib' directory
370 # underneath the Windows SDK installation directory.
372 !IFNDEF UCRTLIBPATH
373 UCRTLIBPATH = $(WINDOWSSDKDIR)\lib\$(WINDOWSSDKLIBVERSION)\ucrt\$(PLATFORM)
374 !ENDIF
376 UCRTLIBPATH = $(UCRTLIBPATH:\\=\)
378 # C compiler and options for use in building executables that
379 # will run on the platform that is doing the build.
381 !IF $(USE_FULLWARN)!=0
382 BCC = $(NCC) -nologo -W4 $(CCOPTS) $(BCCOPTS)
383 !ELSE
384 BCC = $(NCC) -nologo -W3 $(CCOPTS) $(BCCOPTS)
385 !ENDIF
387 # Check if assembly code listings should be generated for the source
388 # code files to be compiled.
390 !IF $(USE_LISTINGS)!=0
391 BCC = $(BCC) -FAcs
392 !ENDIF
394 # Check if the native library paths should be used when compiling
395 # the command line tools used during the compilation process.  If
396 # so, set the necessary macro now.
398 !IF $(USE_NATIVE_LIBPATHS)!=0
399 NLTLIBPATHS = "/LIBPATH:$(NCRTLIBPATH)" "/LIBPATH:$(NSDKLIBPATH)"
401 !IFDEF NUCRTLIBPATH
402 NUCRTLIBPATH = $(NUCRTLIBPATH:\\=\)
403 NLTLIBPATHS = $(NLTLIBPATHS) "/LIBPATH:$(NUCRTLIBPATH)"
404 !ENDIF
405 !ENDIF
407 # C compiler and options for use in building executables that
408 # will run on the target platform.  (BCC and TCC are usually the
409 # same unless your are cross-compiling.)
411 !IF $(USE_FULLWARN)!=0
412 TCC = $(CC) -nologo -W4 -DINCLUDE_MSVC_H=1 $(CCOPTS) $(TCCOPTS)
413 !ELSE
414 TCC = $(CC) -nologo -W3 $(CCOPTS) $(TCCOPTS)
415 !ENDIF
417 TCC = $(TCC) -DSQLITE_OS_WIN=1 -I. -I$(TOP) -I$(TOP)\src -fp:precise
418 RCC = $(RC) -DSQLITE_OS_WIN=1 -I. -I$(TOP) -I$(TOP)\src $(RCOPTS) $(RCCOPTS)
420 # Adjust the names of the primary targets for use with Windows 10.
422 !IF $(FOR_WIN10)!=0
423 SQLITE3DLL = winsqlite3.dll
424 SQLITE3LIB = winsqlite3.lib
425 SQLITE3EXE = winsqlite3shell.exe
426 SQLITE3EXEPDB =
427 !ENDIF
429 # Check if we want to use the "stdcall" calling convention when compiling.
430 # This is not supported by the compilers for non-x86 platforms.  It should
431 # also be noted here that building any target with these "stdcall" options
432 # will most likely fail if the Tcl library is also required.  This is due
433 # to how the Tcl library functions are declared and exported (i.e. without
434 # an explicit calling convention, which results in "cdecl").
436 !IF $(USE_STDCALL)!=0 || $(FOR_WIN10)!=0
437 !IF "$(PLATFORM)"=="x86"
438 CORE_CCONV_OPTS = -Gz -DSQLITE_CDECL=__cdecl -DSQLITE_STDCALL=__stdcall
439 SHELL_CCONV_OPTS = -Gz -DSQLITE_CDECL=__cdecl -DSQLITE_STDCALL=__stdcall
440 !ELSE
441 !IFNDEF PLATFORM
442 CORE_CCONV_OPTS = -Gz -DSQLITE_CDECL=__cdecl -DSQLITE_STDCALL=__stdcall
443 SHELL_CCONV_OPTS = -Gz -DSQLITE_CDECL=__cdecl -DSQLITE_STDCALL=__stdcall
444 !ELSE
445 CORE_CCONV_OPTS =
446 SHELL_CCONV_OPTS =
447 !ENDIF
448 !ENDIF
449 !ELSE
450 CORE_CCONV_OPTS =
451 SHELL_CCONV_OPTS =
452 !ENDIF
454 # These are additional compiler options used for the core library.
456 !IFNDEF CORE_COMPILE_OPTS
457 !IF $(DYNAMIC_SHELL)!=0 || $(FOR_WIN10)!=0
458 CORE_COMPILE_OPTS = $(CORE_CCONV_OPTS) -DSQLITE_API=__declspec(dllexport)
459 !ELSE
460 CORE_COMPILE_OPTS = $(CORE_CCONV_OPTS)
461 !ENDIF
462 !ENDIF
464 # These are the additional targets that the core library should depend on
465 # when linking.
467 !IFNDEF CORE_LINK_DEP
468 !IF $(DYNAMIC_SHELL)!=0 || $(FOR_WIN10)!=0
469 CORE_LINK_DEP =
470 !ELSE
471 CORE_LINK_DEP = sqlite3.def
472 !ENDIF
473 !ENDIF
475 # These are additional linker options used for the core library.
477 !IFNDEF CORE_LINK_OPTS
478 !IF $(DYNAMIC_SHELL)!=0 || $(FOR_WIN10)!=0
479 CORE_LINK_OPTS =
480 !ELSE
481 CORE_LINK_OPTS = /DEF:sqlite3.def
482 !ENDIF
483 !ENDIF
485 # These are additional compiler options used for the shell executable.
487 !IFNDEF SHELL_COMPILE_OPTS
488 !IF $(DYNAMIC_SHELL)!=0 || $(FOR_WIN10)!=0
489 SHELL_COMPILE_OPTS = $(SHELL_CCONV_OPTS) -DSQLITE_API=__declspec(dllimport)
490 !ELSE
491 SHELL_COMPILE_OPTS = $(SHELL_CCONV_OPTS)
492 !ENDIF
493 !ENDIF
495 # This is the source code that the shell executable should be compiled
496 # with.
498 !IFNDEF SHELL_CORE_SRC
499 !IF $(DYNAMIC_SHELL)!=0 || $(FOR_WIN10)!=0
500 SHELL_CORE_SRC =
501 !ELSE
502 SHELL_CORE_SRC = $(SQLITE3C)
503 !ENDIF
504 !ENDIF
506 # This is the core library that the shell executable should depend on.
508 !IFNDEF SHELL_CORE_DEP
509 !IF $(DYNAMIC_SHELL)!=0 || $(FOR_WIN10)!=0
510 SHELL_CORE_DEP = $(SQLITE3DLL)
511 !ELSE
512 SHELL_CORE_DEP =
513 !ENDIF
514 !ENDIF
516 # This is the core library that the shell executable should link with.
518 !IFNDEF SHELL_CORE_LIB
519 !IF $(DYNAMIC_SHELL)!=0 || $(FOR_WIN10)!=0
520 SHELL_CORE_LIB = $(SQLITE3LIB)
521 !ELSE
522 SHELL_CORE_LIB =
523 !ENDIF
524 !ENDIF
526 # These are additional linker options used for the shell executable.
528 !IFNDEF SHELL_LINK_OPTS
529 SHELL_LINK_OPTS = $(SHELL_CORE_LIB)
530 !ENDIF
532 # Check if assembly code listings should be generated for the source
533 # code files to be compiled.
535 !IF $(USE_LISTINGS)!=0
536 TCC = $(TCC) -FAcs
537 !ENDIF
539 # When compiling the library for use in the WinRT environment,
540 # the following compile-time options must be used as well to
541 # disable use of Win32 APIs that are not available and to enable
542 # use of Win32 APIs that are specific to Windows 8 and/or WinRT.
544 !IF $(FOR_WINRT)!=0
545 TCC = $(TCC) -DSQLITE_OS_WINRT=1
546 RCC = $(RCC) -DSQLITE_OS_WINRT=1
547 TCC = $(TCC) -DWINAPI_FAMILY=WINAPI_FAMILY_APP
548 RCC = $(RCC) -DWINAPI_FAMILY=WINAPI_FAMILY_APP
549 !ENDIF
551 # C compiler options for the Windows 10 platform (needs MSVC 2015).
553 !IF $(FOR_WIN10)!=0
554 TCC = $(TCC) /d2guard4 -D_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE
555 BCC = $(BCC) /d2guard4 -D_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE
556 !ENDIF
558 # Also, we need to dynamically link to the correct MSVC runtime
559 # when compiling for WinRT (e.g. debug or release) OR if the
560 # USE_CRT_DLL option is set to force dynamically linking to the
561 # MSVC runtime library.
563 !IF $(FOR_WINRT)!=0 || $(USE_CRT_DLL)!=0
564 !IF $(DEBUG)>1
565 TCC = $(TCC) -MDd
566 BCC = $(BCC) -MDd
567 !ELSE
568 TCC = $(TCC) -MD
569 BCC = $(BCC) -MD
570 !ENDIF
571 !ELSE
572 !IF $(DEBUG)>1
573 TCC = $(TCC) -MTd
574 BCC = $(BCC) -MTd
575 !ELSE
576 TCC = $(TCC) -MT
577 BCC = $(BCC) -MT
578 !ENDIF
579 !ENDIF
581 # <<mark>>
582 # The mksqlite3c.tcl and mksqlite3h.tcl scripts will pull in
583 # any extension header files by default.  For non-amalgamation
584 # builds, we need to make sure the compiler can find these.
586 !IF $(USE_AMALGAMATION)==0
587 TCC = $(TCC) -I$(TOP)\ext\fts3
588 RCC = $(RCC) -I$(TOP)\ext\fts3
589 TCC = $(TCC) -I$(TOP)\ext\rtree
590 RCC = $(RCC) -I$(TOP)\ext\rtree
591 !ENDIF
593 # The mksqlite3c.tcl script accepts some options on the command
594 # line.  When compiling with debugging enabled, some of these
595 # options are necessary in order to allow debugging symbols to
596 # work correctly with Visual Studio when using the amalgamation.
598 !IFNDEF MKSQLITE3C_ARGS
599 !IF $(DEBUG)>1
600 MKSQLITE3C_ARGS = --linemacros
601 !ELSE
602 MKSQLITE3C_ARGS =
603 !ENDIF
604 !ENDIF
605 # <</mark>>
607 # Define -DNDEBUG to compile without debugging (i.e., for production usage)
608 # Omitting the define will cause extra debugging code to be inserted and
609 # includes extra comments when "EXPLAIN stmt" is used.
611 !IF $(DEBUG)==0
612 TCC = $(TCC) -DNDEBUG
613 BCC = $(BCC) -DNDEBUG
614 RCC = $(RCC) -DNDEBUG
615 !ENDIF
617 !IF $(DEBUG)>0 || $(API_ARMOR)!=0 || $(FOR_WIN10)!=0
618 TCC = $(TCC) -DSQLITE_ENABLE_API_ARMOR=1
619 RCC = $(RCC) -DSQLITE_ENABLE_API_ARMOR=1
620 !ENDIF
622 !IF $(DEBUG)>2
623 TCC = $(TCC) -DSQLITE_DEBUG=1
624 RCC = $(RCC) -DSQLITE_DEBUG=1
625 !ENDIF
627 !IF $(DEBUG)>4 || $(OSTRACE)!=0
628 TCC = $(TCC) -DSQLITE_FORCE_OS_TRACE=1 -DSQLITE_DEBUG_OS_TRACE=1
629 RCC = $(RCC) -DSQLITE_FORCE_OS_TRACE=1 -DSQLITE_DEBUG_OS_TRACE=1
630 !ENDIF
632 !IF $(DEBUG)>5
633 TCC = $(TCC) -DSQLITE_ENABLE_IOTRACE=1
634 RCC = $(RCC) -DSQLITE_ENABLE_IOTRACE=1
635 !ENDIF
637 # Prevent warnings about "insecure" MSVC runtime library functions
638 # being used.
640 TCC = $(TCC) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS
641 BCC = $(BCC) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS
642 RCC = $(RCC) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS
644 # Prevent warnings about "deprecated" POSIX functions being used.
646 TCC = $(TCC) -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS
647 BCC = $(BCC) -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS
648 RCC = $(RCC) -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS
650 # Use the SQLite debugging heap subsystem?
652 !IF $(MEMDEBUG)!=0
653 TCC = $(TCC) -DSQLITE_MEMDEBUG=1
654 RCC = $(RCC) -DSQLITE_MEMDEBUG=1
656 # Use native Win32 heap subsystem instead of malloc/free?
658 !ELSEIF $(WIN32HEAP)!=0
659 TCC = $(TCC) -DSQLITE_WIN32_MALLOC=1
660 RCC = $(RCC) -DSQLITE_WIN32_MALLOC=1
662 # Validate the heap on every call into the native Win32 heap subsystem?
664 !IF $(DEBUG)>3
665 TCC = $(TCC) -DSQLITE_WIN32_MALLOC_VALIDATE=1
666 RCC = $(RCC) -DSQLITE_WIN32_MALLOC_VALIDATE=1
667 !ENDIF
668 !ENDIF
670 # <<mark>>
671 # The locations of the Tcl header and library files.  Also, the library that
672 # non-stubs enabled programs using Tcl must link against.  These variables
673 # (TCLINCDIR, TCLLIBDIR, and LIBTCL) may be overridden via the environment
674 # prior to running nmake in order to match the actual installed location and
675 # version on this machine.
677 !IFNDEF TCLINCDIR
678 TCLINCDIR = c:\tcl\include
679 !ENDIF
681 !IFNDEF TCLLIBDIR
682 TCLLIBDIR = c:\tcl\lib
683 !ENDIF
685 !IFNDEF LIBTCL
686 LIBTCL = tcl85.lib
687 !ENDIF
689 !IFNDEF LIBTCLSTUB
690 LIBTCLSTUB = tclstub85.lib
691 !ENDIF
693 !IFNDEF LIBTCLPATH
694 LIBTCLPATH = c:\tcl\bin
695 !ENDIF
697 # The locations of the ICU header and library files.  These variables
698 # (ICUINCDIR, ICULIBDIR, and LIBICU) may be overridden via the environment
699 # prior to running nmake in order to match the actual installed location on
700 # this machine.
702 !IFNDEF ICUINCDIR
703 ICUINCDIR = c:\icu\include
704 !ENDIF
706 !IFNDEF ICULIBDIR
707 ICULIBDIR = c:\icu\lib
708 !ENDIF
710 !IFNDEF LIBICU
711 LIBICU = icuuc.lib icuin.lib
712 !ENDIF
714 # This is the command to use for tclsh - normally just "tclsh", but we may
715 # know the specific version we want to use.  This variable (TCLSH_CMD) may be
716 # overridden via the environment prior to running nmake in order to select a
717 # specific Tcl shell to use.
719 !IFNDEF TCLSH_CMD
720 TCLSH_CMD = tclsh85
721 !ENDIF
722 # <</mark>>
724 # Compiler options needed for programs that use the readline() library.
726 !IFNDEF READLINE_FLAGS
727 READLINE_FLAGS = -DHAVE_READLINE=0
728 !ENDIF
730 # The library that programs using readline() must link against.
732 !IFNDEF LIBREADLINE
733 LIBREADLINE =
734 !ENDIF
736 # Should the database engine be compiled threadsafe
738 TCC = $(TCC) -DSQLITE_THREADSAFE=1
739 RCC = $(RCC) -DSQLITE_THREADSAFE=1
741 # Do threads override each others locks by default (1), or do we test (-1)
743 TCC = $(TCC) -DSQLITE_THREAD_OVERRIDE_LOCK=-1
744 RCC = $(RCC) -DSQLITE_THREAD_OVERRIDE_LOCK=-1
746 # Any target libraries which libsqlite must be linked against
748 !IFNDEF TLIBS
749 TLIBS =
750 !ENDIF
752 # Flags controlling use of the in memory btree implementation
754 # SQLITE_TEMP_STORE is 0 to force temporary tables to be in a file, 1 to
755 # default to file, 2 to default to memory, and 3 to force temporary
756 # tables to always be in memory.
758 TCC = $(TCC) -DSQLITE_TEMP_STORE=1
759 RCC = $(RCC) -DSQLITE_TEMP_STORE=1
761 # Enable/disable loadable extensions, and other optional features
762 # based on configuration. (-DSQLITE_OMIT*, -DSQLITE_ENABLE*).
763 # The same set of OMIT and ENABLE flags should be passed to the
764 # LEMON parser generator and the mkkeywordhash tool as well.
766 # These are the required SQLite compilation options used when compiling for
767 # the Windows platform.
769 REQ_FEATURE_FLAGS = $(REQ_FEATURE_FLAGS) -DSQLITE_MAX_TRIGGER_DEPTH=100
771 # If we are linking to the RPCRT4 library, enable features that need it.
773 !IF $(USE_RPCRT4_LIB)!=0
774 REQ_FEATURE_FLAGS = $(REQ_FEATURE_FLAGS) -DSQLITE_WIN32_USE_UUID=1
775 !ENDIF
777 # Add the required and optional SQLite compilation options into the command
778 # lines used to invoke the MSVC code and resource compilers.
780 TCC = $(TCC) $(REQ_FEATURE_FLAGS) $(OPT_FEATURE_FLAGS) $(EXT_FEATURE_FLAGS)
781 RCC = $(RCC) $(REQ_FEATURE_FLAGS) $(OPT_FEATURE_FLAGS) $(EXT_FEATURE_FLAGS)
783 # Add in any optional parameters specified on the commane line, e.g.
784 # nmake /f Makefile.msc all "OPTS=-DSQLITE_ENABLE_FOO=1 -DSQLITE_OMIT_FOO=1"
786 TCC = $(TCC) $(OPTS)
787 RCC = $(RCC) $(OPTS)
789 # If compiling for debugging, add some defines.
791 !IF $(DEBUG)>1
792 TCC = $(TCC) -D_DEBUG
793 BCC = $(BCC) -D_DEBUG
794 RCC = $(RCC) -D_DEBUG
795 !ENDIF
797 # If optimizations are enabled or disabled (either implicitly or
798 # explicitly), add the necessary flags.
800 !IF $(DEBUG)>1 || $(OPTIMIZATIONS)==0
801 TCC = $(TCC) -Od
802 BCC = $(BCC) -Od
803 !ELSEIF $(OPTIMIZATIONS)>=3
804 TCC = $(TCC) -Ox
805 BCC = $(BCC) -Ox
806 !ELSEIF $(OPTIMIZATIONS)==2
807 TCC = $(TCC) -O2
808 BCC = $(BCC) -O2
809 !ELSEIF $(OPTIMIZATIONS)==1
810 TCC = $(TCC) -O1
811 BCC = $(BCC) -O1
812 !ENDIF
814 # If symbols are enabled (or compiling for debugging), enable PDBs.
816 !IF $(DEBUG)>1 || $(SYMBOLS)!=0
817 TCC = $(TCC) -Zi
818 BCC = $(BCC) -Zi
819 !ENDIF
821 # <<mark>>
822 # If ICU support is enabled, add the compiler options for it.
824 !IF $(USE_ICU)!=0
825 TCC = $(TCC) -DSQLITE_ENABLE_ICU=1
826 RCC = $(RCC) -DSQLITE_ENABLE_ICU=1
827 TCC = $(TCC) -I$(TOP)\ext\icu
828 RCC = $(RCC) -I$(TOP)\ext\icu
829 TCC = $(TCC) -I$(ICUINCDIR)
830 RCC = $(RCC) -I$(ICUINCDIR)
831 !ENDIF
832 # <</mark>>
834 # Command line prefixes for compiling code, compiling resources,
835 # linking, etc.
837 LTCOMPILE = $(TCC) -Fo$@
838 LTRCOMPILE = $(RCC) -r
839 LTLIB = lib.exe
840 LTLINK = $(TCC) -Fe$@
842 # If requested, link to the RPCRT4 library.
844 !IF $(USE_RPCRT4_LIB)!=0
845 LTLINK = $(LTLINK) rpcrt4.lib
846 !ENDIF
848 # If a platform was set, force the linker to target that.
849 # Note that the vcvars*.bat family of batch files typically
850 # set this for you.  Otherwise, the linker will attempt
851 # to deduce the binary type based on the object files.
852 !IFDEF PLATFORM
853 LTLINKOPTS = /NOLOGO /MACHINE:$(PLATFORM)
854 LTLIBOPTS = /NOLOGO /MACHINE:$(PLATFORM)
855 !ELSE
856 LTLINKOPTS = /NOLOGO
857 LTLIBOPTS = /NOLOGO
858 !ENDIF
860 # When compiling for use in the WinRT environment, the following
861 # linker option must be used to mark the executable as runnable
862 # only in the context of an application container.
864 !IF $(FOR_WINRT)!=0
865 LTLINKOPTS = $(LTLINKOPTS) /APPCONTAINER
866 !IF "$(VISUALSTUDIOVERSION)"=="12.0" || "$(VISUALSTUDIOVERSION)"=="14.0"
867 !IFNDEF STORELIBPATH
868 !IF "$(PLATFORM)"=="x86"
869 STORELIBPATH = $(CRTLIBPATH)\store
870 !ELSEIF "$(PLATFORM)"=="x64"
871 STORELIBPATH = $(CRTLIBPATH)\store\amd64
872 !ELSEIF "$(PLATFORM)"=="ARM"
873 STORELIBPATH = $(CRTLIBPATH)\store\arm
874 !ELSE
875 STORELIBPATH = $(CRTLIBPATH)\store
876 !ENDIF
877 !ENDIF
878 STORELIBPATH = $(STORELIBPATH:\\=\)
879 LTLINKOPTS = $(LTLINKOPTS) "/LIBPATH:$(STORELIBPATH)"
880 !ENDIF
881 !ENDIF
883 # When compiling for Windows Phone 8.1, an extra library path is
884 # required.
886 !IF $(USE_WP81_OPTS)!=0
887 !IFNDEF WP81LIBPATH
888 !IF "$(PLATFORM)"=="x86"
889 WP81LIBPATH = $(PROGRAMFILES_X86)\Windows Phone Kits\8.1\lib\x86
890 !ELSEIF "$(PLATFORM)"=="ARM"
891 WP81LIBPATH = $(PROGRAMFILES_X86)\Windows Phone Kits\8.1\lib\ARM
892 !ELSE
893 WP81LIBPATH = $(PROGRAMFILES_X86)\Windows Phone Kits\8.1\lib\x86
894 !ENDIF
895 !ENDIF
896 !ENDIF
898 # When compiling for Windows Phone 8.1, some extra linker options
899 # are also required.
901 !IF $(USE_WP81_OPTS)!=0
902 !IFDEF WP81LIBPATH
903 LTLINKOPTS = $(LTLINKOPTS) "/LIBPATH:$(WP81LIBPATH)"
904 !ENDIF
905 LTLINKOPTS = $(LTLINKOPTS) /DYNAMICBASE
906 LTLINKOPTS = $(LTLINKOPTS) WindowsPhoneCore.lib RuntimeObject.lib PhoneAppModelHost.lib
907 LTLINKOPTS = $(LTLINKOPTS) /NODEFAULTLIB:kernel32.lib /NODEFAULTLIB:ole32.lib
908 !ENDIF
910 # When compiling for UWP or the Windows 10 platform, some extra linker
911 # options are also required.
913 !IF $(FOR_UWP)!=0 || $(FOR_WIN10)!=0
914 LTLINKOPTS = $(LTLINKOPTS) /DYNAMICBASE /NODEFAULTLIB:kernel32.lib
915 LTLINKOPTS = $(LTLINKOPTS) mincore.lib
916 !IFDEF PSDKLIBPATH
917 LTLINKOPTS = $(LTLINKOPTS) "/LIBPATH:$(PSDKLIBPATH)"
918 !ENDIF
919 !ENDIF
921 !IF $(FOR_WIN10)!=0
922 LTLINKOPTS = $(LTLINKOPTS) /guard:cf "/LIBPATH:$(UCRTLIBPATH)"
923 !IF $(DEBUG)>1
924 LTLINKOPTS = $(LTLINKOPTS) /NODEFAULTLIB:libucrtd.lib /DEFAULTLIB:ucrtd.lib
925 !ELSE
926 LTLINKOPTS = $(LTLINKOPTS) /NODEFAULTLIB:libucrt.lib /DEFAULTLIB:ucrt.lib
927 !ENDIF
928 !ENDIF
930 # If either debugging or symbols are enabled, enable PDBs.
932 !IF $(DEBUG)>1 || $(SYMBOLS)!=0
933 LDFLAGS = /DEBUG $(LDOPTS)
934 !ELSE
935 LDFLAGS = $(LDOPTS)
936 !ENDIF
938 # <<mark>>
939 # Start with the Tcl related linker options.
941 !IF $(NO_TCL)==0
942 LTLIBPATHS = /LIBPATH:$(TCLLIBDIR)
943 LTLIBS = $(LIBTCL)
944 !ENDIF
946 # If ICU support is enabled, add the linker options for it.
948 !IF $(USE_ICU)!=0
949 LTLIBPATHS = $(LTLIBPATHS) /LIBPATH:$(ICULIBDIR)
950 LTLIBS = $(LTLIBS) $(LIBICU)
951 !ENDIF
952 # <</mark>>
954 # You should not have to change anything below this line
955 ###############################################################################
957 # <<mark>>
958 # Object files for the SQLite library (non-amalgamation).
960 LIBOBJS0 = vdbe.lo parse.lo alter.lo analyze.lo attach.lo auth.lo \
961          backup.lo bitvec.lo btmutex.lo btree.lo build.lo \
962          callback.lo complete.lo ctime.lo date.lo dbstat.lo delete.lo \
963          expr.lo fault.lo fkey.lo \
964          fts3.lo fts3_aux.lo fts3_expr.lo fts3_hash.lo fts3_icu.lo \
965          fts3_porter.lo fts3_snippet.lo fts3_tokenizer.lo fts3_tokenizer1.lo \
966          fts3_tokenize_vtab.lo fts3_unicode.lo fts3_unicode2.lo fts3_write.lo \
967          fts5.lo \
968          func.lo global.lo hash.lo \
969          icu.lo insert.lo journal.lo legacy.lo loadext.lo \
970          main.lo malloc.lo mem0.lo mem1.lo mem2.lo mem3.lo mem5.lo \
971          memjournal.lo \
972          mutex.lo mutex_noop.lo mutex_unix.lo mutex_w32.lo \
973          notify.lo opcodes.lo os.lo os_unix.lo os_win.lo \
974          pager.lo pcache.lo pcache1.lo pragma.lo prepare.lo printf.lo \
975          random.lo resolve.lo rowset.lo rtree.lo select.lo sqlite3rbu.lo status.lo \
976          table.lo threads.lo tokenize.lo treeview.lo trigger.lo \
977          update.lo util.lo vacuum.lo \
978          vdbeapi.lo vdbeaux.lo vdbeblob.lo vdbemem.lo vdbesort.lo \
979          vdbetrace.lo wal.lo walker.lo where.lo wherecode.lo whereexpr.lo \
980          utf.lo vtab.lo
981 # <</mark>>
983 # Object files for the amalgamation.
985 LIBOBJS1 = sqlite3.lo
987 # Determine the real value of LIBOBJ based on the 'configure' script
989 # <<mark>>
990 !IF $(USE_AMALGAMATION)==0
991 LIBOBJ = $(LIBOBJS0)
992 !ELSE
993 # <</mark>>
994 LIBOBJ = $(LIBOBJS1)
995 # <<mark>>
996 !ENDIF
997 # <</mark>>
999 # Determine if embedded resource compilation and usage are enabled.
1001 !IF $(USE_RC)!=0
1002 LIBRESOBJS = sqlite3res.lo
1003 !ELSE
1004 LIBRESOBJS =
1005 !ENDIF
1007 # <<mark>>
1008 # Core source code files, part 1.
1010 SRC00 = \
1011         $(TOP)\src\crypto.c \
1012         $(TOP)\src\crypto_cc.c \
1013         $(TOP)\src\crypto_impl.c \
1014         $(TOP)\src\crypto_libtomcrypt.c \
1015         $(TOP)\src\crypto_openssl.c \
1016         $(TOP)\src\crypto.h \
1017         $(TOP)\src\sqlcipher.h \
1018   $(TOP)\src\alter.c \
1019   $(TOP)\src\analyze.c \
1020   $(TOP)\src\attach.c \
1021   $(TOP)\src\auth.c \
1022   $(TOP)\src\backup.c \
1023   $(TOP)\src\bitvec.c \
1024   $(TOP)\src\btmutex.c \
1025   $(TOP)\src\btree.c \
1026   $(TOP)\src\build.c \
1027   $(TOP)\src\callback.c \
1028   $(TOP)\src\complete.c \
1029   $(TOP)\src\ctime.c \
1030   $(TOP)\src\date.c \
1031   $(TOP)\src\dbstat.c \
1032   $(TOP)\src\delete.c \
1033   $(TOP)\src\expr.c \
1034   $(TOP)\src\fault.c \
1035   $(TOP)\src\fkey.c \
1036   $(TOP)\src\func.c \
1037   $(TOP)\src\global.c \
1038   $(TOP)\src\hash.c \
1039   $(TOP)\src\insert.c \
1040   $(TOP)\src\journal.c \
1041   $(TOP)\src\legacy.c \
1042   $(TOP)\src\loadext.c \
1043   $(TOP)\src\main.c \
1044   $(TOP)\src\malloc.c \
1045   $(TOP)\src\mem0.c \
1046   $(TOP)\src\mem1.c \
1047   $(TOP)\src\mem2.c \
1048   $(TOP)\src\mem3.c \
1049   $(TOP)\src\mem5.c \
1050   $(TOP)\src\memjournal.c \
1051   $(TOP)\src\mutex.c \
1052   $(TOP)\src\mutex_noop.c \
1053   $(TOP)\src\mutex_unix.c \
1054   $(TOP)\src\mutex_w32.c \
1055   $(TOP)\src\notify.c \
1056   $(TOP)\src\os.c \
1057   $(TOP)\src\os_unix.c \
1058   $(TOP)\src\os_win.c
1060 # Core source code files, part 2.
1062 SRC01 = \
1063   $(TOP)\src\pager.c \
1064   $(TOP)\src\pcache.c \
1065   $(TOP)\src\pcache1.c \
1066   $(TOP)\src\pragma.c \
1067   $(TOP)\src\prepare.c \
1068   $(TOP)\src\printf.c \
1069   $(TOP)\src\random.c \
1070   $(TOP)\src\resolve.c \
1071   $(TOP)\src\rowset.c \
1072   $(TOP)\src\select.c \
1073   $(TOP)\src\status.c \
1074   $(TOP)\src\table.c \
1075   $(TOP)\src\threads.c \
1076   $(TOP)\src\tclsqlite.c \
1077   $(TOP)\src\tokenize.c \
1078   $(TOP)\src\treeview.c \
1079   $(TOP)\src\trigger.c \
1080   $(TOP)\src\utf.c \
1081   $(TOP)\src\update.c \
1082   $(TOP)\src\util.c \
1083   $(TOP)\src\vacuum.c \
1084   $(TOP)\src\vdbe.c \
1085   $(TOP)\src\vdbeapi.c \
1086   $(TOP)\src\vdbeaux.c \
1087   $(TOP)\src\vdbeblob.c \
1088   $(TOP)\src\vdbemem.c \
1089   $(TOP)\src\vdbesort.c \
1090   $(TOP)\src\vdbetrace.c \
1091   $(TOP)\src\vtab.c \
1092   $(TOP)\src\wal.c \
1093   $(TOP)\src\walker.c \
1094   $(TOP)\src\where.c \
1095   $(TOP)\src\wherecode.c \
1096   $(TOP)\src\whereexpr.c
1098 # Shell source code files.
1100 SRC02 = \
1101   $(TOP)\src\shell.c
1103 # Core miscellaneous files.
1105 SRC03 = \
1106   $(TOP)\src\parse.y
1108 # Core header files, part 1.
1110 SRC04 = \
1111   $(TOP)\src\btree.h \
1112   $(TOP)\src\btreeInt.h \
1113   $(TOP)\src\hash.h \
1114   $(TOP)\src\hwtime.h \
1115   $(TOP)\src\msvc.h \
1116   $(TOP)\src\mutex.h \
1117   $(TOP)\src\os.h \
1118   $(TOP)\src\os_common.h \
1119   $(TOP)\src\os_setup.h \
1120   $(TOP)\src\os_win.h
1122 # Core header files, part 2.
1124 SRC05 = \
1125   $(TOP)\src\pager.h \
1126   $(TOP)\src\pcache.h \
1127   $(TOP)\src\pragma.h \
1128   $(TOP)\src\sqlite.h.in \
1129   $(TOP)\src\sqlite3ext.h \
1130   $(TOP)\src\sqliteInt.h \
1131   $(TOP)\src\sqliteLimit.h \
1132   $(TOP)\src\vdbe.h \
1133   $(TOP)\src\vdbeInt.h \
1134   $(TOP)\src\vxworks.h \
1135   $(TOP)\src\wal.h \
1136   $(TOP)\src\whereInt.h
1138 # Extension source code files, part 1.
1140 SRC06 = \
1141   $(TOP)\ext\fts1\fts1.c \
1142   $(TOP)\ext\fts1\fts1_hash.c \
1143   $(TOP)\ext\fts1\fts1_porter.c \
1144   $(TOP)\ext\fts1\fts1_tokenizer1.c \
1145   $(TOP)\ext\fts2\fts2.c \
1146   $(TOP)\ext\fts2\fts2_hash.c \
1147   $(TOP)\ext\fts2\fts2_icu.c \
1148   $(TOP)\ext\fts2\fts2_porter.c \
1149   $(TOP)\ext\fts2\fts2_tokenizer.c \
1150   $(TOP)\ext\fts2\fts2_tokenizer1.c
1152 # Extension source code files, part 2.
1154 SRC07 = \
1155   $(TOP)\ext\fts3\fts3.c \
1156   $(TOP)\ext\fts3\fts3_aux.c \
1157   $(TOP)\ext\fts3\fts3_expr.c \
1158   $(TOP)\ext\fts3\fts3_hash.c \
1159   $(TOP)\ext\fts3\fts3_icu.c \
1160   $(TOP)\ext\fts3\fts3_porter.c \
1161   $(TOP)\ext\fts3\fts3_snippet.c \
1162   $(TOP)\ext\fts3\fts3_tokenizer.c \
1163   $(TOP)\ext\fts3\fts3_tokenizer1.c \
1164   $(TOP)\ext\fts3\fts3_tokenize_vtab.c \
1165   $(TOP)\ext\fts3\fts3_unicode.c \
1166   $(TOP)\ext\fts3\fts3_unicode2.c \
1167   $(TOP)\ext\fts3\fts3_write.c \
1168   $(TOP)\ext\icu\icu.c \
1169   $(TOP)\ext\rtree\rtree.c \
1170   $(TOP)\ext\rbu\sqlite3rbu.c \
1171   $(TOP)\ext\misc\json1.c
1173 # Extension header files, part 1.
1175 SRC08 = \
1176   $(TOP)\ext\fts1\fts1.h \
1177   $(TOP)\ext\fts1\fts1_hash.h \
1178   $(TOP)\ext\fts1\fts1_tokenizer.h \
1179   $(TOP)\ext\fts2\fts2.h \
1180   $(TOP)\ext\fts2\fts2_hash.h \
1181   $(TOP)\ext\fts2\fts2_tokenizer.h
1183 # Extension header files, part 2.
1185 SRC09 = \
1186   $(TOP)\ext\fts3\fts3.h \
1187   $(TOP)\ext\fts3\fts3Int.h \
1188   $(TOP)\ext\fts3\fts3_hash.h \
1189   $(TOP)\ext\fts3\fts3_tokenizer.h \
1190   $(TOP)\ext\icu\sqliteicu.h \
1191   $(TOP)\ext\rtree\rtree.h \
1192   $(TOP)\ext\rbu\sqlite3rbu.h
1194 # Generated source code files
1196 SRC10 = \
1197   opcodes.c \
1198   parse.c
1200 # Generated header files
1202 SRC11 = \
1203   keywordhash.h \
1204   opcodes.h \
1205   parse.h \
1206   $(SQLITE3H)
1208 # All source code files.
1210 SRC = $(SRC00) $(SRC01) $(SRC02) $(SRC03) $(SRC04) $(SRC05) $(SRC06) $(SRC07) $(SRC08) $(SRC09) $(SRC10) $(SRC11)
1212 # Source code to the test files.
1214 TESTSRC = \
1215   $(TOP)\src\test1.c \
1216   $(TOP)\src\test2.c \
1217   $(TOP)\src\test3.c \
1218   $(TOP)\src\test4.c \
1219   $(TOP)\src\test5.c \
1220   $(TOP)\src\test6.c \
1221   $(TOP)\src\test7.c \
1222   $(TOP)\src\test8.c \
1223   $(TOP)\src\test9.c \
1224   $(TOP)\src\test_autoext.c \
1225   $(TOP)\src\test_async.c \
1226   $(TOP)\src\test_backup.c \
1227   $(TOP)\src\test_blob.c \
1228   $(TOP)\src\test_btree.c \
1229   $(TOP)\src\test_config.c \
1230   $(TOP)\src\test_demovfs.c \
1231   $(TOP)\src\test_devsym.c \
1232   $(TOP)\src\test_fs.c \
1233   $(TOP)\src\test_func.c \
1234   $(TOP)\src\test_hexio.c \
1235   $(TOP)\src\test_init.c \
1236   $(TOP)\src\test_intarray.c \
1237   $(TOP)\src\test_journal.c \
1238   $(TOP)\src\test_malloc.c \
1239   $(TOP)\src\test_multiplex.c \
1240   $(TOP)\src\test_mutex.c \
1241   $(TOP)\src\test_onefile.c \
1242   $(TOP)\src\test_osinst.c \
1243   $(TOP)\src\test_pcache.c \
1244   $(TOP)\src\test_quota.c \
1245   $(TOP)\src\test_rtree.c \
1246   $(TOP)\src\test_schema.c \
1247   $(TOP)\src\test_server.c \
1248   $(TOP)\src\test_superlock.c \
1249   $(TOP)\src\test_syscall.c \
1250   $(TOP)\src\test_tclvar.c \
1251   $(TOP)\src\test_thread.c \
1252   $(TOP)\src\test_vfs.c \
1253   $(TOP)\src\test_windirent.c \
1254   $(TOP)\src\test_wsd.c \
1255   $(TOP)\ext\fts3\fts3_term.c \
1256   $(TOP)\ext\fts3\fts3_test.c \
1257   $(TOP)\ext\rbu\test_rbu.c
1259 # Statically linked extensions.
1261 TESTEXT = \
1262   $(TOP)\ext\misc\amatch.c \
1263   $(TOP)\ext\misc\closure.c \
1264   $(TOP)\ext\misc\eval.c \
1265   $(TOP)\ext\misc\fileio.c \
1266   $(TOP)\ext\misc\fuzzer.c \
1267   $(TOP)\ext\fts5\fts5_tcl.c \
1268   $(TOP)\ext\fts5\fts5_test_mi.c \
1269   $(TOP)\ext\fts5\fts5_test_tok.c \
1270   $(TOP)\ext\misc\ieee754.c \
1271   $(TOP)\ext\misc\nextchar.c \
1272   $(TOP)\ext\misc\percentile.c \
1273   $(TOP)\ext\misc\regexp.c \
1274   $(TOP)\ext\misc\series.c \
1275   $(TOP)\ext\misc\spellfix.c \
1276   $(TOP)\ext\misc\totype.c \
1277   $(TOP)\ext\misc\wholenumber.c
1279 # Source code to the library files needed by the test fixture
1281 TESTSRC2 = \
1282   $(SRC00) \
1283   $(SRC01) \
1284   $(SRC06) \
1285   $(SRC07) \
1286   $(SRC10) \
1287   $(TOP)\ext\async\sqlite3async.c
1289 # Header files used by all library source files.
1291 HDR = \
1292    $(TOP)\src\btree.h \
1293    $(TOP)\src\btreeInt.h \
1294    $(TOP)\src\hash.h \
1295    $(TOP)\src\hwtime.h \
1296    keywordhash.h \
1297    $(TOP)\src\msvc.h \
1298    $(TOP)\src\mutex.h \
1299    opcodes.h \
1300    $(TOP)\src\os.h \
1301    $(TOP)\src\os_common.h \
1302    $(TOP)\src\os_setup.h \
1303    $(TOP)\src\os_win.h \
1304    $(TOP)\src\pager.h \
1305    $(TOP)\src\pcache.h \
1306    parse.h \
1307    $(TOP)\src\pragma.h \
1308    $(SQLITE3H) \
1309    $(TOP)\src\sqlite3ext.h \
1310    $(TOP)\src\sqliteInt.h \
1311    $(TOP)\src\sqliteLimit.h \
1312    $(TOP)\src\vdbe.h \
1313    $(TOP)\src\vdbeInt.h \
1314    $(TOP)\src\vxworks.h \
1315    $(TOP)\src\whereInt.h
1317 # Header files used by extensions
1319 EXTHDR = $(EXTHDR) \
1320   $(TOP)\ext\fts1\fts1.h \
1321   $(TOP)\ext\fts1\fts1_hash.h \
1322   $(TOP)\ext\fts1\fts1_tokenizer.h
1323 EXTHDR = $(EXTHDR) \
1324   $(TOP)\ext\fts2\fts2.h \
1325   $(TOP)\ext\fts2\fts2_hash.h \
1326   $(TOP)\ext\fts2\fts2_tokenizer.h
1327 EXTHDR = $(EXTHDR) \
1328   $(TOP)\ext\fts3\fts3.h \
1329   $(TOP)\ext\fts3\fts3Int.h \
1330   $(TOP)\ext\fts3\fts3_hash.h \
1331   $(TOP)\ext\fts3\fts3_tokenizer.h
1332 EXTHDR = $(EXTHDR) \
1333   $(TOP)\ext\rtree\rtree.h
1334 EXTHDR = $(EXTHDR) \
1335   $(TOP)\ext\icu\sqliteicu.h
1336 EXTHDR = $(EXTHDR) \
1337   $(TOP)\ext\rtree\sqlite3rtree.h
1339 # executables needed for testing
1341 TESTPROGS = \
1342   testfixture.exe \
1343   $(SQLITE3EXE) \
1344   sqlite3_analyzer.exe \
1345   sqldiff.exe
1347 # Databases containing fuzzer test cases
1349 FUZZDATA = \
1350   $(TOP)\test\fuzzdata1.db \
1351   $(TOP)\test\fuzzdata2.db \
1352   $(TOP)\test\fuzzdata3.db \
1353   $(TOP)\test\fuzzdata4.db
1354 # <</mark>>
1356 # Additional compiler options for the shell.  These are only effective
1357 # when the shell is not being dynamically linked.
1359 !IF $(DYNAMIC_SHELL)==0 && $(FOR_WIN10)==0
1360 SHELL_COMPILE_OPTS = $(SHELL_COMPILE_OPTS) -DSQLITE_SHELL_JSON1 -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_EXPLAIN_COMMENTS
1361 !ENDIF
1363 # <<mark>>
1364 # Extra compiler options for various test tools.
1366 MPTESTER_COMPILE_OPTS = -DSQLITE_SHELL_JSON1 -DSQLITE_ENABLE_FTS5
1367 FUZZERSHELL_COMPILE_OPTS = -DSQLITE_ENABLE_JSON1
1368 FUZZCHECK_COMPILE_OPTS = -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_MEMSYS5
1370 # Standard options to testfixture.
1372 TESTOPTS = --verbose=file --output=test-out.txt
1374 # Extra targets for the "all" target that require Tcl.
1376 !IF $(NO_TCL)==0
1377 ALL_TCL_TARGETS = libtclsqlite3.lib
1378 !ELSE
1379 ALL_TCL_TARGETS =
1380 !ENDIF
1381 # <</mark>>
1383 # This is the default Makefile target.  The objects listed here
1384 # are what get build when you type just "make" with no arguments.
1386 all:    dll libsqlite3.lib shell $(ALL_TCL_TARGETS)
1388 # Dynamic link library section.
1390 dll: $(SQLITE3DLL)
1392 # Shell executable.
1394 shell: $(SQLITE3EXE)
1396 libsqlite3.lib: $(LIBOBJ)
1397         $(LTLIB) $(LTLIBOPTS) /OUT:$@ $(LIBOBJ) $(TLIBS)
1399 # <<mark>>
1400 libtclsqlite3.lib:      tclsqlite.lo libsqlite3.lib
1401         $(LTLIB) $(LTLIBOPTS) $(LTLIBPATHS) /OUT:$@ tclsqlite.lo libsqlite3.lib $(LIBTCLSTUB) $(TLIBS)
1402 # <</mark>>
1404 $(SQLITE3DLL): $(LIBOBJ) $(LIBRESOBJS) $(CORE_LINK_DEP)
1405         $(LD) $(LDFLAGS) $(LTLINKOPTS) $(LTLIBPATHS) /DLL $(CORE_LINK_OPTS) /OUT:$@ $(LIBOBJ) $(LIBRESOBJS) $(LTLIBS) $(TLIBS)
1407 # <<mark>>
1408 sqlite3.def: libsqlite3.lib
1409         echo EXPORTS > sqlite3.def
1410         dumpbin /all libsqlite3.lib \
1411                 | $(TCLSH_CMD) $(TOP)\tool\replace.tcl include "^\s+1 _?(sqlite3_.*)$$" \1 \
1412                 | sort >> sqlite3.def
1413 # <</mark>>
1415 $(SQLITE3EXE):  $(TOP)\src\shell.c $(SHELL_CORE_DEP) $(LIBRESOBJS) $(SHELL_CORE_SRC) $(SQLITE3H)
1416         $(LTLINK) $(SHELL_COMPILE_OPTS) $(READLINE_FLAGS) $(TOP)\src\shell.c $(SHELL_CORE_SRC) \
1417                 /link $(SQLITE3EXEPDB) $(LDFLAGS) $(LTLINKOPTS) $(SHELL_LINK_OPTS) $(LTLIBPATHS) $(LIBRESOBJS) $(LIBREADLINE) $(LTLIBS) $(TLIBS)
1419 # <<mark>>
1420 sqldiff.exe:    $(TOP)\tool\sqldiff.c $(SQLITE3C) $(SQLITE3H)
1421         $(LTLINK) $(NO_WARN) $(TOP)\tool\sqldiff.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
1423 srcck1.exe:     $(TOP)\tool\srcck1.c
1424         $(BCC) $(NO_WARN) -Fe$@ $(TOP)\tool\srcck1.c
1426 sourcetest:     srcck1.exe sqlite3.c
1427         srcck1.exe sqlite3.c
1429 fuzzershell.exe:        $(TOP)\tool\fuzzershell.c $(SQLITE3C) $(SQLITE3H)
1430         $(LTLINK) $(NO_WARN) $(FUZZERSHELL_COMPILE_OPTS) $(TOP)\tool\fuzzershell.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
1432 fuzzcheck.exe:  $(TOP)\test\fuzzcheck.c $(SQLITE3C) $(SQLITE3H)
1433         $(LTLINK) $(NO_WARN) $(FUZZCHECK_COMPILE_OPTS) $(TOP)\test\fuzzcheck.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
1435 mptester.exe:   $(TOP)\mptest\mptest.c $(SQLITE3C) $(SQLITE3H)
1436         $(LTLINK) $(NO_WARN) $(MPTESTER_COMPILE_OPTS) $(TOP)\mptest\mptest.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
1438 MPTEST1 = mptester mptest.db $(TOP)\mptest\crash01.test --repeat 20
1439 MPTEST2 = mptester mptest.db $(TOP)\mptest\multiwrite01.test --repeat 20
1441 mptest: mptester.exe
1442         del /Q mptest.db 2>NUL
1443         $(MPTEST1) --journalmode DELETE
1444         $(MPTEST2) --journalmode WAL
1445         $(MPTEST1) --journalmode WAL
1446         $(MPTEST2) --journalmode PERSIST
1447         $(MPTEST1) --journalmode PERSIST
1448         $(MPTEST2) --journalmode TRUNCATE
1449         $(MPTEST1) --journalmode TRUNCATE
1450         $(MPTEST2) --journalmode DELETE
1452 # This target creates a directory named "tsrc" and fills it with
1453 # copies of all of the C source code and header files needed to
1454 # build on the target system.  Some of the C source code and header
1455 # files are automatically generated.  This target takes care of
1456 # all that automatic generation.
1458 .target_source: $(SRC) $(TOP)\tool\vdbe-compress.tcl fts5.c
1459         -rmdir /Q/S tsrc 2>NUL
1460         -mkdir tsrc
1461         for %i in ($(SRC00)) do copy /Y %i tsrc
1462         for %i in ($(SRC01)) do copy /Y %i tsrc
1463         for %i in ($(SRC02)) do copy /Y %i tsrc
1464         for %i in ($(SRC03)) do copy /Y %i tsrc
1465         for %i in ($(SRC04)) do copy /Y %i tsrc
1466         for %i in ($(SRC05)) do copy /Y %i tsrc
1467         for %i in ($(SRC06)) do copy /Y %i tsrc
1468         for %i in ($(SRC07)) do copy /Y %i tsrc
1469         for %i in ($(SRC08)) do copy /Y %i tsrc
1470         for %i in ($(SRC09)) do copy /Y %i tsrc
1471         for %i in ($(SRC10)) do copy /Y %i tsrc
1472         for %i in ($(SRC11)) do copy /Y %i tsrc
1473         copy /Y fts5.c tsrc
1474         copy /Y fts5.h tsrc
1475         del /Q tsrc\sqlite.h.in tsrc\parse.y 2>NUL
1476         $(TCLSH_CMD) $(TOP)\tool\vdbe-compress.tcl $(OPTS) < tsrc\vdbe.c > vdbe.new
1477         move vdbe.new tsrc\vdbe.c
1478         echo > .target_source
1480 sqlite3.c:      .target_source sqlite3ext.h $(TOP)\tool\mksqlite3c.tcl
1481         $(TCLSH_CMD) $(TOP)\tool\mksqlite3c.tcl $(MKSQLITE3C_ARGS)
1482         copy tsrc\shell.c .
1484 sqlite3-all.c:  sqlite3.c $(TOP)\tool\split-sqlite3c.tcl
1485         $(TCLSH_CMD) $(TOP)\tool\split-sqlite3c.tcl
1486 # <</mark>>
1488 # Rule to build the amalgamation
1490 sqlite3.lo:     $(SQLITE3C)
1491         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(SQLITE3C)
1493 # <<mark>>
1494 # Rules to build the LEMON compiler generator
1496 lempar.c:       $(TOP)\tool\lempar.c
1497         copy $(TOP)\tool\lempar.c .
1499 lemon.exe:      $(TOP)\tool\lemon.c lempar.c
1500         $(BCC) $(NO_WARN) -Daccess=_access \
1501                 -Fe$@ $(TOP)\tool\lemon.c /link $(LDFLAGS) $(NLTLINKOPTS) $(NLTLIBPATHS)
1503 # Rules to build individual *.lo files from generated *.c files. This
1504 # applies to:
1506 #     parse.lo
1507 #     opcodes.lo
1509 parse.lo:       parse.c $(HDR)
1510         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c parse.c
1512 opcodes.lo:     opcodes.c
1513         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c opcodes.c
1514 # <</mark>>
1516 # Rule to build the Win32 resources object file.
1518 !IF $(USE_RC)!=0
1519 # <<block1>>
1520 $(LIBRESOBJS):  $(TOP)\src\sqlite3.rc $(SQLITE3H)
1521         echo #ifndef SQLITE_RESOURCE_VERSION > sqlite3rc.h
1522         for /F %%V in ('type "$(TOP)\VERSION"') do ( \
1523                 echo #define SQLITE_RESOURCE_VERSION %%V \
1524                         | $(TCLSH_CMD) $(TOP)\tool\replace.tcl exact . ^, >> sqlite3rc.h \
1525         )
1526         echo #endif >> sqlite3rc.h
1527         $(LTRCOMPILE) -fo $(LIBRESOBJS) $(TOP)\src\sqlite3.rc
1528 # <</block1>>
1529 !ENDIF
1531 # <<mark>>
1532 # Rules to build individual *.lo files from files in the src directory.
1534 alter.lo:       $(TOP)\src\alter.c $(HDR)
1535         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\alter.c
1537 analyze.lo:     $(TOP)\src\analyze.c $(HDR)
1538         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\analyze.c
1540 attach.lo:      $(TOP)\src\attach.c $(HDR)
1541         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\attach.c
1543 auth.lo:        $(TOP)\src\auth.c $(HDR)
1544         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\auth.c
1546 backup.lo:      $(TOP)\src\backup.c $(HDR)
1547         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\backup.c
1549 bitvec.lo:      $(TOP)\src\bitvec.c $(HDR)
1550         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\bitvec.c
1552 btmutex.lo:     $(TOP)\src\btmutex.c $(HDR)
1553         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\btmutex.c
1555 btree.lo:       $(TOP)\src\btree.c $(HDR) $(TOP)\src\pager.h
1556         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\btree.c
1558 build.lo:       $(TOP)\src\build.c $(HDR)
1559         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\build.c
1561 callback.lo:    $(TOP)\src\callback.c $(HDR)
1562         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\callback.c
1564 complete.lo:    $(TOP)\src\complete.c $(HDR)
1565         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\complete.c
1567 ctime.lo:       $(TOP)\src\ctime.c $(HDR)
1568         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\ctime.c
1570 date.lo:        $(TOP)\src\date.c $(HDR)
1571         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\date.c
1573 dbstat.lo:      $(TOP)\src\date.c $(HDR)
1574         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\dbstat.c
1576 delete.lo:      $(TOP)\src\delete.c $(HDR)
1577         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\delete.c
1579 expr.lo:        $(TOP)\src\expr.c $(HDR)
1580         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\expr.c
1582 fault.lo:       $(TOP)\src\fault.c $(HDR)
1583         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\fault.c
1585 fkey.lo:        $(TOP)\src\fkey.c $(HDR)
1586         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\fkey.c
1588 func.lo:        $(TOP)\src\func.c $(HDR)
1589         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\func.c
1591 global.lo:      $(TOP)\src\global.c $(HDR)
1592         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\global.c
1594 hash.lo:        $(TOP)\src\hash.c $(HDR)
1595         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\hash.c
1597 insert.lo:      $(TOP)\src\insert.c $(HDR)
1598         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\insert.c
1600 journal.lo:     $(TOP)\src\journal.c $(HDR)
1601         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\journal.c
1603 legacy.lo:      $(TOP)\src\legacy.c $(HDR)
1604         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\legacy.c
1606 loadext.lo:     $(TOP)\src\loadext.c $(HDR)
1607         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\loadext.c
1609 main.lo:        $(TOP)\src\main.c $(HDR)
1610         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\main.c
1612 malloc.lo:      $(TOP)\src\malloc.c $(HDR)
1613         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\malloc.c
1615 mem0.lo:        $(TOP)\src\mem0.c $(HDR)
1616         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\mem0.c
1618 mem1.lo:        $(TOP)\src\mem1.c $(HDR)
1619         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\mem1.c
1621 mem2.lo:        $(TOP)\src\mem2.c $(HDR)
1622         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\mem2.c
1624 mem3.lo:        $(TOP)\src\mem3.c $(HDR)
1625         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\mem3.c
1627 mem5.lo:        $(TOP)\src\mem5.c $(HDR)
1628         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\mem5.c
1630 memjournal.lo:  $(TOP)\src\memjournal.c $(HDR)
1631         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\memjournal.c
1633 mutex.lo:       $(TOP)\src\mutex.c $(HDR)
1634         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\mutex.c
1636 mutex_noop.lo:  $(TOP)\src\mutex_noop.c $(HDR)
1637         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\mutex_noop.c
1639 mutex_unix.lo:  $(TOP)\src\mutex_unix.c $(HDR)
1640         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\mutex_unix.c
1642 mutex_w32.lo:   $(TOP)\src\mutex_w32.c $(HDR)
1643         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\mutex_w32.c
1645 notify.lo:      $(TOP)\src\notify.c $(HDR)
1646         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\notify.c
1648 pager.lo:       $(TOP)\src\pager.c $(HDR) $(TOP)\src\pager.h
1649         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\pager.c
1651 pcache.lo:      $(TOP)\src\pcache.c $(HDR) $(TOP)\src\pcache.h
1652         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\pcache.c
1654 pcache1.lo:     $(TOP)\src\pcache1.c $(HDR) $(TOP)\src\pcache.h
1655         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\pcache1.c
1657 os.lo:  $(TOP)\src\os.c $(HDR)
1658         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\os.c
1660 os_unix.lo:     $(TOP)\src\os_unix.c $(HDR)
1661         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\os_unix.c
1663 os_win.lo:      $(TOP)\src\os_win.c $(HDR)
1664         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\os_win.c
1666 pragma.lo:      $(TOP)\src\pragma.c $(HDR)
1667         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\pragma.c
1669 prepare.lo:     $(TOP)\src\prepare.c $(HDR)
1670         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\prepare.c
1672 printf.lo:      $(TOP)\src\printf.c $(HDR)
1673         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\printf.c
1675 random.lo:      $(TOP)\src\random.c $(HDR)
1676         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\random.c
1678 resolve.lo:     $(TOP)\src\resolve.c $(HDR)
1679         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\resolve.c
1681 rowset.lo:      $(TOP)\src\rowset.c $(HDR)
1682         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\rowset.c
1684 select.lo:      $(TOP)\src\select.c $(HDR)
1685         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\select.c
1687 status.lo:      $(TOP)\src\status.c $(HDR)
1688         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\status.c
1690 table.lo:       $(TOP)\src\table.c $(HDR)
1691         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\table.c
1693 threads.lo:     $(TOP)\src\threads.c $(HDR)
1694         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\threads.c
1696 tokenize.lo:    $(TOP)\src\tokenize.c keywordhash.h $(HDR)
1697         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\tokenize.c
1699 treeview.lo:    $(TOP)\src\treeview.c $(HDR)
1700         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\treeview.c
1702 trigger.lo:     $(TOP)\src\trigger.c $(HDR)
1703         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\trigger.c
1705 update.lo:      $(TOP)\src\update.c $(HDR)
1706         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\update.c
1708 utf.lo: $(TOP)\src\utf.c $(HDR)
1709         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\utf.c
1711 util.lo:        $(TOP)\src\util.c $(HDR)
1712         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\util.c
1714 vacuum.lo:      $(TOP)\src\vacuum.c $(HDR)
1715         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\vacuum.c
1717 vdbe.lo:        $(TOP)\src\vdbe.c $(HDR)
1718         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\vdbe.c
1720 vdbeapi.lo:     $(TOP)\src\vdbeapi.c $(HDR)
1721         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\vdbeapi.c
1723 vdbeaux.lo:     $(TOP)\src\vdbeaux.c $(HDR)
1724         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\vdbeaux.c
1726 vdbeblob.lo:    $(TOP)\src\vdbeblob.c $(HDR)
1727         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\vdbeblob.c
1729 vdbemem.lo:     $(TOP)\src\vdbemem.c $(HDR)
1730         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\vdbemem.c
1732 vdbesort.lo:    $(TOP)\src\vdbesort.c $(HDR)
1733         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\vdbesort.c
1735 vdbetrace.lo:   $(TOP)\src\vdbetrace.c $(HDR)
1736         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\vdbetrace.c
1738 vtab.lo:        $(TOP)\src\vtab.c $(HDR)
1739         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\vtab.c
1741 wal.lo: $(TOP)\src\wal.c $(HDR)
1742         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\wal.c
1744 walker.lo:      $(TOP)\src\walker.c $(HDR)
1745         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\walker.c
1747 where.lo:       $(TOP)\src\where.c $(HDR)
1748         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\where.c
1750 wherecode.lo:   $(TOP)\src\wherecode.c $(HDR)
1751         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\wherecode.c
1753 whereexpr.lo:   $(TOP)\src\whereexpr.c $(HDR)
1754         $(LTCOMPILE) $(CORE_COMPILE_OPTS) -c $(TOP)\src\whereexpr.c
1756 tclsqlite.lo:   $(TOP)\src\tclsqlite.c $(HDR)
1757         $(LTCOMPILE) $(NO_WARN) -DUSE_TCL_STUBS=1 -DBUILD_sqlite -I$(TCLINCDIR) -c $(TOP)\src\tclsqlite.c
1759 tclsqlite-shell.lo:     $(TOP)\src\tclsqlite.c $(HDR)
1760         $(LTCOMPILE) $(NO_WARN) -DTCLSH=1 -DBUILD_sqlite -I$(TCLINCDIR) -c $(TOP)\src\tclsqlite.c
1762 tclsqlite3.exe: tclsqlite-shell.lo $(SQLITE3C) $(SQLITE3H) $(LIBRESOBJS)
1763         $(LTLINK) $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS) $(LTLIBPATHS) /OUT:$@ tclsqlite-shell.lo $(LIBRESOBJS) $(LTLIBS) $(TLIBS)
1765 # Rules to build opcodes.c and opcodes.h
1767 opcodes.c:      opcodes.h $(TOP)\tool\mkopcodec.tcl
1768         $(TCLSH_CMD) $(TOP)\tool\mkopcodec.tcl opcodes.h > opcodes.c
1770 opcodes.h:      parse.h $(TOP)\src\vdbe.c $(TOP)\tool\mkopcodeh.tcl
1771         type parse.h $(TOP)\src\vdbe.c | $(TCLSH_CMD) $(TOP)\tool\mkopcodeh.tcl > opcodes.h
1773 # Rules to build parse.c and parse.h - the outputs of lemon.
1775 parse.h:        parse.c
1777 parse.c:        $(TOP)\src\parse.y lemon.exe $(TOP)\tool\addopcodes.tcl
1778         del /Q parse.y parse.h parse.h.temp 2>NUL
1779         copy $(TOP)\src\parse.y .
1780         .\lemon.exe $(REQ_FEATURE_FLAGS) $(OPT_FEATURE_FLAGS) $(EXT_FEATURE_FLAGS) $(OPTS) parse.y
1781         move parse.h parse.h.temp
1782         $(TCLSH_CMD) $(TOP)\tool\addopcodes.tcl parse.h.temp > parse.h
1784 $(SQLITE3H):    $(TOP)\src\sqlite.h.in $(TOP)\manifest.uuid $(TOP)\VERSION
1785         $(TCLSH_CMD) $(TOP)\tool\mksqlite3h.tcl $(TOP:\=/) > $(SQLITE3H)
1787 sqlite3ext.h: .target_source
1788         copy tsrc\sqlite3ext.h .
1790 mkkeywordhash.exe:      $(TOP)\tool\mkkeywordhash.c
1791         $(BCC) $(NO_WARN) -Fe$@ $(REQ_FEATURE_FLAGS) $(OPT_FEATURE_FLAGS) $(EXT_FEATURE_FLAGS) $(OPTS) \
1792                 $(TOP)\tool\mkkeywordhash.c /link $(LDFLAGS) $(NLTLINKOPTS) $(NLTLIBPATHS)
1794 keywordhash.h:  $(TOP)\tool\mkkeywordhash.c mkkeywordhash.exe
1795         .\mkkeywordhash.exe > keywordhash.h
1799 # Rules to build the extension objects.
1801 icu.lo: $(TOP)\ext\icu\icu.c $(HDR) $(EXTHDR)
1802         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\icu\icu.c
1804 fts2.lo:        $(TOP)\ext\fts2\fts2.c $(HDR) $(EXTHDR)
1805         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2.c
1807 fts2_hash.lo:   $(TOP)\ext\fts2\fts2_hash.c $(HDR) $(EXTHDR)
1808         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2_hash.c
1810 fts2_icu.lo:    $(TOP)\ext\fts2\fts2_icu.c $(HDR) $(EXTHDR)
1811         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2_icu.c
1813 fts2_porter.lo: $(TOP)\ext\fts2\fts2_porter.c $(HDR) $(EXTHDR)
1814         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2_porter.c
1816 fts2_tokenizer.lo:      $(TOP)\ext\fts2\fts2_tokenizer.c $(HDR) $(EXTHDR)
1817         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2_tokenizer.c
1819 fts2_tokenizer1.lo:     $(TOP)\ext\fts2\fts2_tokenizer1.c $(HDR) $(EXTHDR)
1820         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts2\fts2_tokenizer1.c
1822 fts3.lo:        $(TOP)\ext\fts3\fts3.c $(HDR) $(EXTHDR)
1823         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3.c
1825 fts3_aux.lo:    $(TOP)\ext\fts3\fts3_aux.c $(HDR) $(EXTHDR)
1826         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_aux.c
1828 fts3_expr.lo:   $(TOP)\ext\fts3\fts3_expr.c $(HDR) $(EXTHDR)
1829         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_expr.c
1831 fts3_hash.lo:   $(TOP)\ext\fts3\fts3_hash.c $(HDR) $(EXTHDR)
1832         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_hash.c
1834 fts3_icu.lo:    $(TOP)\ext\fts3\fts3_icu.c $(HDR) $(EXTHDR)
1835         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_icu.c
1837 fts3_snippet.lo:        $(TOP)\ext\fts3\fts3_snippet.c $(HDR) $(EXTHDR)
1838         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_snippet.c
1840 fts3_porter.lo: $(TOP)\ext\fts3\fts3_porter.c $(HDR) $(EXTHDR)
1841         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_porter.c
1843 fts3_tokenizer.lo:      $(TOP)\ext\fts3\fts3_tokenizer.c $(HDR) $(EXTHDR)
1844         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_tokenizer.c
1846 fts3_tokenizer1.lo:     $(TOP)\ext\fts3\fts3_tokenizer1.c $(HDR) $(EXTHDR)
1847         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_tokenizer1.c
1849 fts3_tokenize_vtab.lo:  $(TOP)\ext\fts3\fts3_tokenize_vtab.c $(HDR) $(EXTHDR)
1850         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_tokenize_vtab.c
1852 fts3_unicode.lo:        $(TOP)\ext\fts3\fts3_unicode.c $(HDR) $(EXTHDR)
1853         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_unicode.c
1855 fts3_unicode2.lo:       $(TOP)\ext\fts3\fts3_unicode2.c $(HDR) $(EXTHDR)
1856         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_unicode2.c
1858 fts3_write.lo:  $(TOP)\ext\fts3\fts3_write.c $(HDR) $(EXTHDR)
1859         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\fts3\fts3_write.c
1861 rtree.lo:       $(TOP)\ext\rtree\rtree.c $(HDR) $(EXTHDR)
1862         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c $(TOP)\ext\rtree\rtree.c
1864 # FTS5 things
1866 FTS5_SRC = \
1867    $(TOP)\ext\fts5\fts5.h \
1868    $(TOP)\ext\fts5\fts5Int.h \
1869    $(TOP)\ext\fts5\fts5_aux.c \
1870    $(TOP)\ext\fts5\fts5_buffer.c \
1871    $(TOP)\ext\fts5\fts5_main.c \
1872    $(TOP)\ext\fts5\fts5_config.c \
1873    $(TOP)\ext\fts5\fts5_expr.c \
1874    $(TOP)\ext\fts5\fts5_hash.c \
1875    $(TOP)\ext\fts5\fts5_index.c \
1876    fts5parse.c fts5parse.h \
1877    $(TOP)\ext\fts5\fts5_storage.c \
1878    $(TOP)\ext\fts5\fts5_tokenize.c \
1879    $(TOP)\ext\fts5\fts5_unicode2.c \
1880    $(TOP)\ext\fts5\fts5_varint.c \
1881    $(TOP)\ext\fts5\fts5_vocab.c
1883 fts5parse.c:    $(TOP)\ext\fts5\fts5parse.y lemon.exe
1884         copy $(TOP)\ext\fts5\fts5parse.y .
1885         del /Q fts5parse.h 2>NUL
1886         .\lemon.exe $(REQ_FEATURE_FLAGS) $(OPT_FEATURE_FLAGS) $(EXT_FEATURE_FLAGS) $(OPTS) fts5parse.y
1888 fts5parse.h: fts5parse.c
1890 fts5.c: $(FTS5_SRC)
1891         $(TCLSH_CMD) $(TOP)\ext\fts5\tool\mkfts5c.tcl
1892         copy $(TOP)\ext\fts5\fts5.h .
1894 fts5.lo:        fts5.c $(HDR) $(EXTHDR)
1895         $(LTCOMPILE) $(CORE_COMPILE_OPTS) $(NO_WARN) -DSQLITE_CORE -c fts5.c
1897 fts5_ext.lo:    fts5.c $(HDR) $(EXTHDR)
1898         $(LTCOMPILE) $(NO_WARN) -c fts5.c
1900 fts5.dll:       fts5_ext.lo
1901         $(LD) $(LDFLAGS) $(LTLINKOPTS) $(LTLIBPATHS) /DLL /OUT:$@ fts5_ext.lo
1903 sqlite3rbu.lo:  $(TOP)\ext\rbu\sqlite3rbu.c $(HDR) $(EXTHDR)
1904         $(LTCOMPILE) -DSQLITE_CORE -c $(TOP)\ext\rbu\sqlite3rbu.c
1906 # Rules to build the 'testfixture' application.
1908 # If using the amalgamation, use sqlite3.c directly to build the test
1909 # fixture.  Otherwise link against libsqlite3.lib.  (This distinction is
1910 # necessary because the test fixture requires non-API symbols which are
1911 # hidden when the library is built via the amalgamation).
1913 TESTFIXTURE_FLAGS = -DTCLSH=1 -DSQLITE_TEST=1 -DSQLITE_CRASH_TEST=1
1914 TESTFIXTURE_FLAGS = $(TESTFIXTURE_FLAGS) -DSQLITE_SERVER=1 -DSQLITE_PRIVATE=""
1915 TESTFIXTURE_FLAGS = $(TESTFIXTURE_FLAGS) -DSQLITE_CORE $(NO_WARN)
1917 TESTFIXTURE_SRC0 = $(TESTEXT) $(TESTSRC2)
1918 TESTFIXTURE_SRC1 = $(TESTEXT) $(SQLITE3C)
1919 !IF $(USE_AMALGAMATION)==0
1920 TESTFIXTURE_SRC = $(TESTSRC) $(TOP)\src\tclsqlite.c $(TESTFIXTURE_SRC0)
1921 !ELSE
1922 TESTFIXTURE_SRC = $(TESTSRC) $(TOP)\src\tclsqlite.c $(TESTFIXTURE_SRC1)
1923 !ENDIF
1925 testfixture.exe:        $(TESTFIXTURE_SRC) $(SQLITE3H) $(LIBRESOBJS) $(HDR)
1926         $(LTLINK) -DSQLITE_NO_SYNC=1 $(TESTFIXTURE_FLAGS) \
1927                 -DBUILD_sqlite -I$(TCLINCDIR) \
1928                 $(TESTFIXTURE_SRC) \
1929                 /link $(LDFLAGS) $(LTLINKOPTS) $(LTLIBPATHS) $(LIBRESOBJS) $(LTLIBS) $(TLIBS)
1931 extensiontest: testfixture.exe testloadext.dll
1932         @set PATH=$(LIBTCLPATH);$(PATH)
1933         .\testfixture.exe $(TOP)\test\loadext.test $(TESTOPTS)
1935 fulltest:       $(TESTPROGS) fuzztest
1936         @set PATH=$(LIBTCLPATH);$(PATH)
1937         .\testfixture.exe $(TOP)\test\all.test $(TESTOPTS)
1939 soaktest:       $(TESTPROGS)
1940         @set PATH=$(LIBTCLPATH);$(PATH)
1941         .\testfixture.exe $(TOP)\test\all.test -soak=1 $(TESTOPTS)
1943 fulltestonly:   $(TESTPROGS) fuzztest
1944         @set PATH=$(LIBTCLPATH);$(PATH)
1945         .\testfixture.exe $(TOP)\test\full.test
1947 queryplantest:  testfixture.exe shell
1948         @set PATH=$(LIBTCLPATH);$(PATH)
1949         .\testfixture.exe $(TOP)\test\permutations.test queryplanner $(TESTOPTS)
1951 fuzztest:       fuzzcheck.exe
1952         .\fuzzcheck.exe $(FUZZDATA)
1954 fastfuzztest:   fuzzcheck.exe
1955         .\fuzzcheck.exe --limit-mem 100M $(FUZZDATA)
1957 # Minimal testing that runs in less than 3 minutes (on a fast machine)
1959 quicktest:      testfixture.exe sourcetest
1960         @set PATH=$(LIBTCLPATH);$(PATH)
1961         .\testfixture.exe $(TOP)\test\extraquick.test $(TESTOPTS)
1963 # This is the common case.  Run many tests that do not take too long,
1964 # including fuzzcheck, sqlite3_analyzer, and sqldiff tests.
1966 test:   $(TESTPROGS) sourcetest fastfuzztest
1967         @set PATH=$(LIBTCLPATH);$(PATH)
1968         .\testfixture.exe $(TOP)\test\veryquick.test $(TESTOPTS)
1970 smoketest:      $(TESTPROGS)
1971         @set PATH=$(LIBTCLPATH);$(PATH)
1972         .\testfixture.exe $(TOP)\test\main.test $(TESTOPTS)
1974 sqlite3_analyzer.c: $(SQLITE3C) $(SQLITE3H) $(TOP)\src\tclsqlite.c $(TOP)\tool\spaceanal.tcl
1975         echo #define TCLSH 2 > $@
1976         echo #define SQLITE_ENABLE_DBSTAT_VTAB 1 >> $@
1977         copy $@ + $(SQLITE3C) + $(TOP)\src\tclsqlite.c $@
1978         echo static const char *tclsh_main_loop(void){ >> $@
1979         echo static const char *zMainloop = >> $@
1980         $(TCLSH_CMD) $(TOP)\tool\tostr.tcl $(TOP)\tool\spaceanal.tcl >> $@
1981         echo ; return zMainloop; } >> $@
1983 sqlite3_analyzer.exe:   sqlite3_analyzer.c $(LIBRESOBJS)
1984         $(LTLINK) $(NO_WARN) -DBUILD_sqlite -I$(TCLINCDIR) sqlite3_analyzer.c \
1985                 /link $(LDFLAGS) $(LTLINKOPTS) $(LTLIBPATHS) $(LIBRESOBJS) $(LTLIBS) $(TLIBS)
1987 testloadext.lo: $(TOP)\src\test_loadext.c
1988         $(LTCOMPILE) $(NO_WARN) -c $(TOP)\src\test_loadext.c
1990 testloadext.dll: testloadext.lo
1991         $(LD) $(LDFLAGS) $(LTLINKOPTS) $(LTLIBPATHS) /DLL /OUT:$@ testloadext.lo
1993 showdb.exe:     $(TOP)\tool\showdb.c $(SQLITE3C) $(SQLITE3H)
1994         $(LTLINK) $(NO_WARN) -DSQLITE_THREADSAFE=0 -DSQLITE_OMIT_LOAD_EXTENSION -Fe$@ \
1995                 $(TOP)\tool\showdb.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
1997 showstat4.exe:  $(TOP)\tool\showstat4.c $(SQLITE3C) $(SQLITE3H)
1998         $(LTLINK) $(NO_WARN) -DSQLITE_THREADSAFE=0 -DSQLITE_OMIT_LOAD_EXTENSION -Fe$@ \
1999                 $(TOP)\tool\showstat4.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
2001 showjournal.exe:        $(TOP)\tool\showjournal.c $(SQLITE3C) $(SQLITE3H)
2002         $(LTLINK) $(NO_WARN) -DSQLITE_THREADSAFE=0 -DSQLITE_OMIT_LOAD_EXTENSION -Fe$@ \
2003                 $(TOP)\tool\showjournal.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
2005 showwal.exe:    $(TOP)\tool\showwal.c $(SQLITE3C) $(SQLITE3H)
2006         $(LTLINK) $(NO_WARN) -DSQLITE_THREADSAFE=0 -DSQLITE_OMIT_LOAD_EXTENSION -Fe$@ \
2007                 $(TOP)\tool\showwal.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
2009 fts3view.exe:   $(TOP)\ext\fts3\tool\fts3view.c $(SQLITE3C) $(SQLITE3H)
2010         $(LTLINK) $(NO_WARN) -DSQLITE_THREADSAFE=0 -DSQLITE_OMIT_LOAD_EXTENSION -Fe$@ \
2011                 $(TOP)\ext\fts3\tool\fts3view.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
2013 rollback-test.exe:      $(TOP)\tool\rollback-test.c $(SQLITE3C) $(SQLITE3H)
2014         $(LTLINK) $(NO_WARN) -DSQLITE_THREADSAFE=0 -DSQLITE_OMIT_LOAD_EXTENSION -Fe$@ \
2015                 $(TOP)\tool\rollback-test.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
2017 LogEst.exe:     $(TOP)\tool\logest.c $(SQLITE3H)
2018         $(LTLINK) $(NO_WARN) -Fe$@ $(TOP)\tool\LogEst.c /link $(LDFLAGS) $(LTLINKOPTS)
2020 wordcount.exe:  $(TOP)\test\wordcount.c $(SQLITE3C) $(SQLITE3H)
2021         $(LTLINK) $(NO_WARN) -DSQLITE_THREADSAFE=0 -DSQLITE_OMIT_LOAD_EXTENSION -Fe$@ \
2022                 $(TOP)\test\wordcount.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
2024 speedtest1.exe: $(TOP)\test\speedtest1.c $(SQLITE3C) $(SQLITE3H)
2025         $(LTLINK) $(NO_WARN) -DSQLITE_OMIT_LOAD_EXTENSION -Fe$@ \
2026                 $(TOP)\test\speedtest1.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
2028 rbu.exe: $(TOP)\ext\rbu\rbu.c $(TOP)\ext\rbu\sqlite3rbu.c $(SQLITE3C) $(SQLITE3H)
2029         $(LTLINK) $(NO_WARN) -DSQLITE_ENABLE_RBU -Fe$@ \
2030                 $(TOP)\ext\rbu\rbu.c $(SQLITE3C) /link $(LDFLAGS) $(LTLINKOPTS)
2031 # <</mark>>
2033 clean:
2034         del /Q *.exp *.lo *.ilk *.lib *.obj *.ncb *.pdb *.sdf *.suo 2>NUL
2035         del /Q *.bsc *.cod *.da *.bb *.bbg *.vc gmon.out 2>NUL
2036 # <<mark>>
2037         del /Q $(SQLITE3C) $(SQLITE3H) opcodes.c opcodes.h 2>NUL
2038         del /Q lemon.* lempar.c parse.* 2>NUL
2039         del /Q mkkeywordhash.* keywordhash.h 2>NUL
2040         del /Q notasharedlib.* 2>NUL
2041         -rmdir /Q/S .deps 2>NUL
2042         -rmdir /Q/S .libs 2>NUL
2043         -rmdir /Q/S quota2a 2>NUL
2044         -rmdir /Q/S quota2b 2>NUL
2045         -rmdir /Q/S quota2c 2>NUL
2046         -rmdir /Q/S tsrc 2>NUL
2047         del /Q .target_source 2>NUL
2048         del /Q tclsqlite3.exe 2>NUL
2049         del /Q testloadext.dll 2>NUL
2050         del /Q testfixture.exe test.db 2>NUL
2051         del /Q LogEst.exe fts3view.exe rollback-test.exe showdb.exe 2>NUL
2052         del /Q showjournal.exe showstat4.exe showwal.exe speedtest1.exe 2>NUL
2053         del /Q mptester.exe wordcount.exe rbu.exe srcck1.exe 2>NUL
2054         del /Q $(SQLITE3EXE) $(SQLITE3DLL) sqlite3.def 2>NUL
2055         del /Q sqlite3.c sqlite3-*.c 2>NUL
2056         del /Q sqlite3rc.h 2>NUL
2057         del /Q shell.c sqlite3ext.h 2>NUL
2058         del /Q sqlite3_analyzer.exe sqlite3_analyzer.c 2>NUL
2059         del /Q sqlite-*-output.vsix 2>NUL
2060         del /Q fuzzershell.exe fuzzcheck.exe sqldiff.exe 2>NUL
2061         del /Q fts5.* fts5parse.* 2>NUL
2062 # <</mark>>