5 # This makefile is suppose to be configured automatically using the
6 # autoconf. But if that does not work for you, you can configure
7 # the makefile manually. Just set the parameters below to values that
8 # work well for your system.
10 # If the configure script does not work out-of-the-box, you might
11 # be able to get it to work by giving it some hints. See the comment
12 # at the beginning of configure.in for additional information.
15 # The toplevel directory of the source tree. This is the directory
16 # that contains this "Makefile.in" and the "configure.in" script.
20 # C Compiler and options for use in building executables that
21 # will run on the platform that is doing the build.
23 BCC
= @BUILD_CC@ @BUILD_CFLAGS@
25 # TCC is the C Compile and options for use in building executables that
26 # will run on the target platform. (BCC and TCC are usually the
27 # same unless your are cross-compiling.) Separate CC and CFLAGS macros
28 # are provide so that these aspects of the build process can be changed
29 # on the "make" command-line. Ex: "make CC=clang CFLAGS=-fsanitize=undefined"
32 CFLAGS
= @CPPFLAGS@ @CFLAGS@
33 TCC
= ${CC} ${CFLAGS} -I.
-I
${TOP}/src
-I
${TOP}/ext
/rtree
-I
${TOP}/ext
/icu
34 TCC
+= -I
${TOP}/ext
/fts3
-I
${TOP}/ext
/async
-I
${TOP}/ext
/session
35 TCC
+= -I
${TOP}/ext
/userauth
37 # Define this for the autoconf-based build, so that the code knows it can
38 # include the generated sqlite_cfg.h
40 TCC
+= -D_HAVE_SQLITE_CONFIG_H
-DBUILD_sqlite
42 # Define -DNDEBUG to compile without debugging (i.e., for production usage)
43 # Omitting the define will cause extra debugging code to be inserted and
44 # includes extra comments when "EXPLAIN stmt" is used.
48 # Compiler options needed for programs that use the TCL library.
50 TCC
+= @TCL_INCLUDE_SPEC@
52 # The library that programs using TCL must link against.
54 LIBTCL
= @TCL_LIB_SPEC@
56 # Compiler options needed for programs that use the readline() library.
58 READLINE_FLAGS
= -DHAVE_READLINE
=@TARGET_HAVE_READLINE@ @TARGET_READLINE_INC@
59 READLINE_FLAGS
+= -DHAVE_EDITLINE
=@TARGET_HAVE_EDITLINE@
61 # The library that programs using readline() must link against.
63 LIBREADLINE
= @TARGET_READLINE_LIBS@
65 # Should the database engine be compiled threadsafe
67 TCC
+= -DSQLITE_THREADSAFE
=@SQLITE_THREADSAFE@
69 # Any target libraries which libsqlite must be linked against
71 TLIBS
= @LIBS@
$(LIBS
)
73 # Flags controlling use of the in memory btree implementation
75 # SQLITE_TEMP_STORE is 0 to force temporary tables to be in a file, 1 to
76 # default to file, 2 to default to memory, and 3 to force temporary
77 # tables to always be in memory.
79 TEMP_STORE
= -DSQLITE_TEMP_STORE
=@TEMP_STORE@
81 # Enable/disable loadable extensions, and other optional features
82 # based on configuration. (-DSQLITE_OMIT*, -DSQLITE_ENABLE*).
83 # The same set of OMIT and ENABLE flags should be passed to the
84 # LEMON parser generator and the mkkeywordhash tool as well.
85 OPT_FEATURE_FLAGS
= @OPT_FEATURE_FLAGS@
87 TCC
+= $(OPT_FEATURE_FLAGS
)
89 # Add in any optional parameters specified on the make commane line
90 # ie. make "OPTS=-DSQLITE_ENABLE_FOO=1 -DSQLITE_OMIT_FOO=1".
93 # Add in compile-time options for some libraries used by extensions
96 # Version numbers and release number for the SQLite being compiled.
99 VERSION_NUMBER
= @VERSION_NUMBER@
102 # Filename extensions
104 BEXE
= @BUILD_EXEEXT@
105 TEXE
= @TARGET_EXEEXT@
107 # The following variable is "1" if the configure script was able to locate
108 # the tclConfig.sh file. It is an empty string otherwise. When this
109 # variable is "1", the TCL extension library (libtclsqlite3.so) is built
112 HAVE_TCL
= @HAVE_TCL@
114 # This is the command to use for tclsh - normally just "tclsh", but we may
115 # know the specific version we want to use
117 TCLSH_CMD
= @TCLSH_CMD@
119 # Where do we want to install the tcl plugin
121 TCLLIBDIR
= @TCLLIBDIR@
123 # The suffix used on shared libraries. Ex: ".dll", ".so", ".dylib"
125 SHLIB_SUFFIX
= @TCL_SHLIB_SUFFIX@
127 # If gcov support was enabled by the configure script, add the appropriate
128 # flags here. It's not always as easy as just having the user add the right
129 # CFLAGS / LDFLAGS, because libtool wants to use CFLAGS when linking, which
130 # causes build errors with -fprofile-arcs -ftest-coverage with some GCCs.
131 # Supposedly GCC does the right thing if you use --coverage, but in
132 # practice it still fails. See:
134 # http://www.mail-archive.com/debian-gcc@lists.debian.org/msg26197.html
138 GCOV_CFLAGS1
= -DSQLITE_COVERAGE_TEST
=1 -fprofile-arcs
-ftest-coverage
139 GCOV_LDFLAGS1
= -lgcov
140 USE_GCOV
= @USE_GCOV@
141 LTCOMPILE_EXTRAS
+= $(GCOV_CFLAGS
$(USE_GCOV
))
142 LTLINK_EXTRAS
+= $(GCOV_LDFLAGS
$(USE_GCOV
))
145 # The directory into which to store package information for
147 # Some standard variables and programs
150 exec_prefix = @
exec_prefix@
152 pkgconfigdir
= $(libdir)/pkgconfig
154 includedir = @
includedir@
157 ALLOWRELEASE
= @ALLOWRELEASE@
159 # libtool compile/link/install
160 LTCOMPILE
= $(LIBTOOL
) --mode
=compile
--tag
=CC
$(TCC
) $(LTCOMPILE_EXTRAS
)
161 LTLINK
= $(LIBTOOL
) --mode
=link
$(TCC
) $(LTCOMPILE_EXTRAS
) @LDFLAGS@
$(LTLINK_EXTRAS
)
162 LTINSTALL
= $(LIBTOOL
) --mode
=install $(INSTALL
)
164 # You should not have to change anything below this line
165 ###############################################################################
167 USE_AMALGAMATION
= @USE_AMALGAMATION@
168 AMALGAMATION_LINE_MACROS
= @AMALGAMATION_LINE_MACROS@
170 # Object files for the SQLite library (non-amalgamation).
172 LIBOBJS0
= alter.lo analyze.lo attach.lo auth.lo \
173 backup.lo bitvec.lo btmutex.lo btree.lo build.lo \
174 callback.lo complete.lo ctime.lo \
175 date.lo dbpage.lo dbstat.lo delete.lo \
176 expr.lo fault.lo fkey.lo \
177 fts3.lo fts3_aux.lo fts3_expr.lo fts3_hash.lo fts3_icu.lo \
178 fts3_porter.lo fts3_snippet.lo fts3_tokenizer.lo fts3_tokenizer1.lo \
179 fts3_tokenize_vtab.lo \
180 fts3_unicode.lo fts3_unicode2.lo fts3_write.lo \
182 func.lo global.lo hash.lo \
183 icu.lo insert.lo json.lo legacy.lo loadext.lo \
184 main.lo malloc.lo mem0.lo mem1.lo mem2.lo mem3.lo mem5.lo \
185 memdb.lo memjournal.lo \
186 mutex.lo mutex_noop.lo mutex_unix.lo mutex_w32.lo \
187 notify.lo opcodes.lo os.lo os_kv.lo os_unix.lo os_win.lo \
188 pager.lo parse.lo pcache.lo pcache1.lo pragma.lo prepare.lo printf.lo \
189 random.lo resolve.lo rowset.lo rtree.lo \
190 sqlite3session.lo select.lo sqlite3rbu.lo status.lo stmt.lo \
191 table.lo threads.lo tokenize.lo treeview.lo trigger.lo \
192 update.lo userauth.lo upsert.lo util.lo vacuum.lo \
193 vdbe.lo vdbeapi.lo vdbeaux.lo vdbeblob.lo vdbemem.lo vdbesort.lo \
194 vdbetrace.lo vdbevtab.lo \
195 wal.lo walker.lo where.lo wherecode.lo whereexpr.lo \
196 window.lo utf.lo vtab.lo
198 # Object files for the amalgamation.
200 LIBOBJS1
= sqlite3.lo
202 # Determine the real value of LIBOBJ based on the 'configure' script
204 LIBOBJ
= $(LIBOBJS
$(USE_AMALGAMATION
))
207 # All of the source code files.
211 $(TOP
)/src
/analyze.c \
212 $(TOP
)/src
/attach.c \
214 $(TOP
)/src
/backup.c \
215 $(TOP
)/src
/bitvec.c \
216 $(TOP
)/src
/btmutex.c \
219 $(TOP
)/src
/btreeInt.h \
221 $(TOP
)/src
/callback.c \
222 $(TOP
)/src
/complete.c \
225 $(TOP
)/src
/dbpage.c \
226 $(TOP
)/src
/dbstat.c \
227 $(TOP
)/src
/delete.c \
232 $(TOP
)/src
/global.c \
235 $(TOP
)/src
/hwtime.h \
236 $(TOP
)/src
/insert.c \
238 $(TOP
)/src
/legacy.c \
239 $(TOP
)/src
/loadext.c \
241 $(TOP
)/src
/malloc.c \
248 $(TOP
)/src
/memjournal.c \
252 $(TOP
)/src
/mutex_noop.c \
253 $(TOP
)/src
/mutex_unix.c \
254 $(TOP
)/src
/mutex_w32.c \
255 $(TOP
)/src
/notify.c \
258 $(TOP
)/src
/os_common.h \
259 $(TOP
)/src
/os_setup.h \
261 $(TOP
)/src
/os_unix.c \
262 $(TOP
)/src
/os_win.c \
263 $(TOP
)/src
/os_win.h \
267 $(TOP
)/src
/pcache.c \
268 $(TOP
)/src
/pcache.h \
269 $(TOP
)/src
/pcache1.c \
270 $(TOP
)/src
/pragma.c \
271 $(TOP
)/src
/pragma.h \
272 $(TOP
)/src
/prepare.c \
273 $(TOP
)/src
/printf.c \
274 $(TOP
)/src
/random.c \
275 $(TOP
)/src
/resolve.c \
276 $(TOP
)/src
/rowset.c \
277 $(TOP
)/src
/select.c \
278 $(TOP
)/src
/status.c \
279 $(TOP
)/src
/shell.c.in \
280 $(TOP
)/src
/sqlite.h.in \
281 $(TOP
)/src
/sqlite3ext.h \
282 $(TOP
)/src
/sqliteInt.h \
283 $(TOP
)/src
/sqliteLimit.h \
285 $(TOP
)/src
/tclsqlite.c \
286 $(TOP
)/src
/threads.c \
287 $(TOP
)/src
/tokenize.c \
288 $(TOP
)/src
/treeview.c \
289 $(TOP
)/src
/trigger.c \
291 $(TOP
)/src
/update.c \
292 $(TOP
)/src
/upsert.c \
294 $(TOP
)/src
/vacuum.c \
297 $(TOP
)/src
/vdbeapi.c \
298 $(TOP
)/src
/vdbeaux.c \
299 $(TOP
)/src
/vdbeblob.c \
300 $(TOP
)/src
/vdbemem.c \
301 $(TOP
)/src
/vdbesort.c \
302 $(TOP
)/src
/vdbetrace.c \
303 $(TOP
)/src
/vdbevtab.c \
304 $(TOP
)/src
/vdbeInt.h \
306 $(TOP
)/src
/vxworks.h \
309 $(TOP
)/src
/walker.c \
311 $(TOP
)/src
/wherecode.c \
312 $(TOP
)/src
/whereexpr.c \
313 $(TOP
)/src
/whereInt.h \
316 # Source code for extensions
319 $(TOP
)/ext
/fts3
/fts3.c \
320 $(TOP
)/ext
/fts3
/fts3.h \
321 $(TOP
)/ext
/fts3
/fts3Int.h \
322 $(TOP
)/ext
/fts3
/fts3_aux.c \
323 $(TOP
)/ext
/fts3
/fts3_expr.c \
324 $(TOP
)/ext
/fts3
/fts3_hash.c \
325 $(TOP
)/ext
/fts3
/fts3_hash.h \
326 $(TOP
)/ext
/fts3
/fts3_icu.c \
327 $(TOP
)/ext
/fts3
/fts3_porter.c \
328 $(TOP
)/ext
/fts3
/fts3_snippet.c \
329 $(TOP
)/ext
/fts3
/fts3_tokenizer.h \
330 $(TOP
)/ext
/fts3
/fts3_tokenizer.c \
331 $(TOP
)/ext
/fts3
/fts3_tokenizer1.c \
332 $(TOP
)/ext
/fts3
/fts3_tokenize_vtab.c \
333 $(TOP
)/ext
/fts3
/fts3_unicode.c \
334 $(TOP
)/ext
/fts3
/fts3_unicode2.c \
335 $(TOP
)/ext
/fts3
/fts3_write.c
337 $(TOP
)/ext
/icu
/sqliteicu.h \
340 $(TOP
)/ext
/rtree
/rtree.h \
341 $(TOP
)/ext
/rtree
/rtree.c \
342 $(TOP
)/ext
/rtree
/geopoly.c
344 $(TOP
)/ext
/session
/sqlite3session.c \
345 $(TOP
)/ext
/session
/sqlite3session.h
347 $(TOP
)/ext
/userauth
/userauth.c \
348 $(TOP
)/ext
/userauth
/sqlite3userauth.h
350 $(TOP
)/ext
/rbu
/sqlite3rbu.h \
351 $(TOP
)/ext
/rbu
/sqlite3rbu.c
353 $(TOP
)/ext
/misc
/stmt.c
355 # Generated source code files
367 # Source code to the test files.
378 $(TOP
)/src
/test_autoext.c \
379 $(TOP
)/src
/test_async.c \
380 $(TOP
)/src
/test_backup.c \
381 $(TOP
)/src
/test_bestindex.c \
382 $(TOP
)/src
/test_blob.c \
383 $(TOP
)/src
/test_btree.c \
384 $(TOP
)/src
/test_config.c \
385 $(TOP
)/src
/test_delete.c \
386 $(TOP
)/src
/test_demovfs.c \
387 $(TOP
)/src
/test_devsym.c \
388 $(TOP
)/src
/test_fs.c \
389 $(TOP
)/src
/test_func.c \
390 $(TOP
)/src
/test_hexio.c \
391 $(TOP
)/src
/test_init.c \
392 $(TOP
)/src
/test_intarray.c \
393 $(TOP
)/src
/test_journal.c \
394 $(TOP
)/src
/test_malloc.c \
395 $(TOP
)/src
/test_md5.c \
396 $(TOP
)/src
/test_multiplex.c \
397 $(TOP
)/src
/test_mutex.c \
398 $(TOP
)/src
/test_onefile.c \
399 $(TOP
)/src
/test_osinst.c \
400 $(TOP
)/src
/test_pcache.c \
401 $(TOP
)/src
/test_quota.c \
402 $(TOP
)/src
/test_rtree.c \
403 $(TOP
)/src
/test_schema.c \
404 $(TOP
)/src
/test_superlock.c \
405 $(TOP
)/src
/test_syscall.c \
406 $(TOP
)/src
/test_tclsh.c \
407 $(TOP
)/src
/test_tclvar.c \
408 $(TOP
)/src
/test_thread.c \
409 $(TOP
)/src
/test_vdbecov.c \
410 $(TOP
)/src
/test_vfs.c \
411 $(TOP
)/src
/test_windirent.c \
412 $(TOP
)/src
/test_window.c \
413 $(TOP
)/src
/test_wsd.c \
414 $(TOP
)/ext
/fts3
/fts3_term.c \
415 $(TOP
)/ext
/fts3
/fts3_test.c \
416 $(TOP
)/ext
/session
/test_session.c \
417 $(TOP
)/ext
/recover
/sqlite3recover.c \
418 $(TOP
)/ext
/recover
/dbdata.c \
419 $(TOP
)/ext
/recover
/test_recover.c \
420 $(TOP
)/ext
/rbu
/test_rbu.c
422 # Statically linked extensions
425 $(TOP
)/ext
/expert
/sqlite3expert.c \
426 $(TOP
)/ext
/expert
/test_expert.c \
427 $(TOP
)/ext
/misc
/amatch.c \
428 $(TOP
)/ext
/misc
/appendvfs.c \
429 $(TOP
)/ext
/misc
/basexx.c \
430 $(TOP
)/ext
/misc
/carray.c \
431 $(TOP
)/ext
/misc
/cksumvfs.c \
432 $(TOP
)/ext
/misc
/closure.c \
433 $(TOP
)/ext
/misc
/csv.c \
434 $(TOP
)/ext
/misc
/decimal.c \
435 $(TOP
)/ext
/misc
/eval.c \
436 $(TOP
)/ext
/misc
/explain.c \
437 $(TOP
)/ext
/misc
/fileio.c \
438 $(TOP
)/ext
/misc
/fuzzer.c \
439 $(TOP
)/ext
/fts5
/fts5_tcl.c \
440 $(TOP
)/ext
/fts5
/fts5_test_mi.c \
441 $(TOP
)/ext
/fts5
/fts5_test_tok.c \
442 $(TOP
)/ext
/misc
/ieee754.c \
443 $(TOP
)/ext
/misc
/mmapwarm.c \
444 $(TOP
)/ext
/misc
/nextchar.c \
445 $(TOP
)/ext
/misc
/normalize.c \
446 $(TOP
)/ext
/misc
/percentile.c \
447 $(TOP
)/ext
/misc
/prefixes.c \
448 $(TOP
)/ext
/misc
/qpvtab.c \
449 $(TOP
)/ext
/misc
/regexp.c \
450 $(TOP
)/ext
/misc
/remember.c \
451 $(TOP
)/ext
/misc
/series.c \
452 $(TOP
)/ext
/misc
/spellfix.c \
453 $(TOP
)/ext
/misc
/totype.c \
454 $(TOP
)/ext
/misc
/unionvtab.c \
455 $(TOP
)/ext
/misc
/wholenumber.c \
456 $(TOP
)/ext
/misc
/zipfile.c \
457 $(TOP
)/ext
/userauth
/userauth.c \
458 $(TOP
)/ext
/rtree
/test_rtreedoc.c
460 # Source code to the library files needed by the test fixture
463 $(TOP
)/src
/attach.c \
464 $(TOP
)/src
/backup.c \
465 $(TOP
)/src
/bitvec.c \
470 $(TOP
)/src
/dbpage.c \
471 $(TOP
)/src
/dbstat.c \
474 $(TOP
)/src
/global.c \
475 $(TOP
)/src
/insert.c \
481 $(TOP
)/src
/os_unix.c \
482 $(TOP
)/src
/os_win.c \
484 $(TOP
)/src
/pragma.c \
485 $(TOP
)/src
/prepare.c \
486 $(TOP
)/src
/printf.c \
487 $(TOP
)/src
/random.c \
488 $(TOP
)/src
/pcache.c \
489 $(TOP
)/src
/pcache1.c \
490 $(TOP
)/src
/select.c \
491 $(TOP
)/src
/tokenize.c \
492 $(TOP
)/src
/treeview.c \
495 $(TOP
)/src
/vdbeapi.c \
496 $(TOP
)/src
/vdbeaux.c \
498 $(TOP
)/src
/vdbemem.c \
499 $(TOP
)/src
/vdbetrace.c \
500 $(TOP
)/src
/vdbevtab.c \
502 $(TOP
)/src
/wherecode.c \
503 $(TOP
)/src
/whereexpr.c \
504 $(TOP
)/src
/window.c \
506 $(TOP
)/ext
/fts3
/fts3.c \
507 $(TOP
)/ext
/fts3
/fts3_aux.c \
508 $(TOP
)/ext
/fts3
/fts3_expr.c \
509 $(TOP
)/ext
/fts3
/fts3_term.c \
510 $(TOP
)/ext
/fts3
/fts3_tokenizer.c \
511 $(TOP
)/ext
/fts3
/fts3_write.c \
512 $(TOP
)/ext
/async
/sqlite3async.c \
513 $(TOP
)/ext
/session
/sqlite3session.c \
514 $(TOP
)/ext
/misc
/stmt.c \
517 # Header files used by all library source files.
521 $(TOP
)/src
/btreeInt.h \
523 $(TOP
)/src
/hwtime.h \
529 $(TOP
)/src
/os_common.h \
530 $(TOP
)/src
/os_setup.h \
531 $(TOP
)/src
/os_win.h \
533 $(TOP
)/src
/pcache.h \
535 $(TOP
)/src
/pragma.h \
537 $(TOP
)/src
/sqlite3ext.h \
538 $(TOP
)/src
/sqliteInt.h \
539 $(TOP
)/src
/sqliteLimit.h \
541 $(TOP
)/src
/vdbeInt.h \
542 $(TOP
)/src
/vxworks.h \
543 $(TOP
)/src
/whereInt.h \
546 # Header files used by extensions
549 $(TOP
)/ext
/fts3
/fts3.h \
550 $(TOP
)/ext
/fts3
/fts3Int.h \
551 $(TOP
)/ext
/fts3
/fts3_hash.h \
552 $(TOP
)/ext
/fts3
/fts3_tokenizer.h
554 $(TOP
)/ext
/rtree
/rtree.h \
555 $(TOP
)/ext
/rtree
/geopoly.c
557 $(TOP
)/ext
/icu
/sqliteicu.h
559 $(TOP
)/ext
/rtree
/sqlite3rtree.h
561 $(TOP
)/ext
/userauth
/sqlite3userauth.h
563 # executables needed for testing
568 sqlite3_analyzer
$(TEXE
) \
573 # Databases containing fuzzer test cases
576 $(TOP
)/test/fuzzdata1.db \
577 $(TOP
)/test/fuzzdata2.db \
578 $(TOP
)/test/fuzzdata3.db \
579 $(TOP
)/test/fuzzdata4.db \
580 $(TOP
)/test/fuzzdata5.db \
581 $(TOP
)/test/fuzzdata6.db \
582 $(TOP
)/test/fuzzdata7.db \
583 $(TOP
)/test/fuzzdata8.db
585 # Standard options to testfixture
587 TESTOPTS
= --verbose
=file
--output
=test-out.txt
589 # Extra compiler options for various shell tools
591 SHELL_OPT
+= -DSQLITE_DQS
=0
592 SHELL_OPT
+= -DSQLITE_ENABLE_FTS4
593 #SHELL_OPT += -DSQLITE_ENABLE_FTS5
594 SHELL_OPT
+= -DSQLITE_ENABLE_RTREE
595 SHELL_OPT
+= -DSQLITE_ENABLE_EXPLAIN_COMMENTS
596 SHELL_OPT
+= -DSQLITE_ENABLE_UNKNOWN_SQL_FUNCTION
597 SHELL_OPT
+= -DSQLITE_ENABLE_STMTVTAB
598 SHELL_OPT
+= -DSQLITE_ENABLE_DBPAGE_VTAB
599 SHELL_OPT
+= -DSQLITE_ENABLE_DBSTAT_VTAB
600 SHELL_OPT
+= -DSQLITE_ENABLE_BYTECODE_VTAB
601 SHELL_OPT
+= -DSQLITE_ENABLE_OFFSET_SQL_FUNC
603 FUZZCHECK_OPT
+= -I
$(TOP
)/test
604 FUZZCHECK_OPT
+= -I
$(TOP
)/ext
/recover
605 FUZZCHECK_OPT
+= -DSQLITE_OMIT_LOAD_EXTENSION
606 FUZZCHECK_OPT
+= -DSQLITE_ENABLE_MEMSYS5
-DSQLITE_OSS_FUZZ
607 FUZZCHECK_OPT
+= -DSQLITE_MAX_MEMORY
=50000000
608 FUZZCHECK_OPT
+= -DSQLITE_PRINTF_PRECISION_LIMIT
=1000
609 FUZZCHECK_OPT
+= -DSQLITE_ENABLE_FTS4
610 FUZZCHECK_OPT
+= -DSQLITE_ENABLE_FTS3_PARENTHESIS
611 FUZZCHECK_OPT
+= -DSQLITE_ENABLE_FTS5
612 FUZZCHECK_OPT
+= -DSQLITE_ENABLE_RTREE
613 FUZZCHECK_OPT
+= -DSQLITE_ENABLE_GEOPOLY
614 FUZZCHECK_OPT
+= -DSQLITE_ENABLE_DBSTAT_VTAB
615 FUZZCHECK_OPT
+= -DSQLITE_ENABLE_BYTECODE_VTAB
616 FUZZCHECK_SRC
+= $(TOP
)/test/fuzzcheck.c
617 FUZZCHECK_SRC
+= $(TOP
)/test/ossfuzz.c
618 FUZZCHECK_SRC
+= $(TOP
)/test/fuzzinvariants.c
619 FUZZCHECK_SRC
+= $(TOP
)/ext
/recover
/dbdata.c
620 FUZZCHECK_SRC
+= $(TOP
)/ext
/recover
/sqlite3recover.c
621 FUZZCHECK_SRC
+= $(TOP
)/test/vt02.c
623 ST_OPT
= -DSQLITE_OS_KV_OPTIONAL
626 # In wasi-sdk builds, disable the CLI shell build in the "all" target.
627 SQLITE3_SHELL_TARGET_
= sqlite3
$(TEXE
)
628 SQLITE3_SHELL_TARGET_1
=
629 SQLITE3_SHELL_TARGET
= $(SQLITE3_SHELL_TARGET_@HAVE_WASI_SDK@
)
631 # This is the default Makefile target. The objects listed here
632 # are what get build when you type just "make" with no arguments.
634 all: sqlite3.h libsqlite3.la
$(SQLITE3_SHELL_TARGET
) \
635 $(HAVE_TCL
:1=libtclsqlite3.la
)
637 Makefile
: $(TOP
)/Makefile.in
640 sqlite3.
pc: $(TOP
)/sqlite3.
pc.in
643 libsqlite3.la
: $(LIBOBJ
)
644 $(LTLINK
) -no-undefined
-o
$@
$(LIBOBJ
) $(TLIBS
) \
645 ${ALLOWRELEASE} -rpath
"$(libdir)" -version-info
"8:6:8"
647 libtclsqlite3.la
: tclsqlite.lo libsqlite3.la
648 $(LTLINK
) -no-undefined
-o
$@ tclsqlite.lo \
649 libsqlite3.la @TCL_STUB_LIB_SPEC@
$(TLIBS
) \
650 -rpath
"$(TCLLIBDIR)" \
651 -version-info
"8:6:8" \
654 sqlite3
$(TEXE
): shell.c sqlite3.c
655 $(LTLINK
) $(READLINE_FLAGS
) $(SHELL_OPT
) -o
$@ \
657 $(LIBREADLINE
) $(TLIBS
) -rpath
"$(libdir)"
659 sqldiff
$(TEXE
): $(TOP
)/tool
/sqldiff.c sqlite3.lo sqlite3.h
660 $(LTLINK
) -o
$@
$(TOP
)/tool
/sqldiff.c sqlite3.lo
$(TLIBS
)
662 dbhash
$(TEXE
): $(TOP
)/tool
/dbhash.c sqlite3.lo sqlite3.h
663 $(LTLINK
) -o
$@
$(TOP
)/tool
/dbhash.c sqlite3.lo
$(TLIBS
)
665 scrub
$(TEXE
): $(TOP
)/ext
/misc
/scrub.c sqlite3.lo
666 $(LTLINK
) -o
$@
-I.
-DSCRUB_STANDALONE \
667 $(TOP
)/ext
/misc
/scrub.c sqlite3.lo
$(TLIBS
)
669 srcck1
$(BEXE
): $(TOP
)/tool
/srcck1.c
670 $(BCC
) -o srcck1
$(BEXE
) $(TOP
)/tool
/srcck1.c
672 sourcetest
: srcck1
$(BEXE
) sqlite3.c
675 fuzzershell
$(TEXE
): $(TOP
)/tool
/fuzzershell.c sqlite3.c sqlite3.h
676 $(LTLINK
) -o
$@
$(FUZZERSHELL_OPT
) \
677 $(TOP
)/tool
/fuzzershell.c sqlite3.c
$(TLIBS
)
679 fuzzcheck
$(TEXE
): $(FUZZCHECK_SRC
) sqlite3.c sqlite3.h
$(FUZZCHECK_DEP
)
680 $(LTLINK
) -o
$@
$(FUZZCHECK_OPT
) $(FUZZCHECK_SRC
) sqlite3.c
$(TLIBS
)
682 ossshell
$(TEXE
): $(TOP
)/test/ossfuzz.c
$(TOP
)/test/ossshell.c sqlite3.c sqlite3.h
683 $(LTLINK
) -o
$@
$(FUZZCHECK_OPT
) $(TOP
)/test/ossshell.c \
684 $(TOP
)/test/ossfuzz.c sqlite3.c
$(TLIBS
)
686 sessionfuzz
$(TEXE
): $(TOP
)/test/sessionfuzz.c sqlite3.c sqlite3.h
687 $(LTLINK
) -o
$@
$(TOP
)/test/sessionfuzz.c
$(TLIBS
)
689 dbfuzz
$(TEXE
): $(TOP
)/test/dbfuzz.c sqlite3.c sqlite3.h
690 $(LTLINK
) -o
$@
$(DBFUZZ_OPT
) $(TOP
)/test/dbfuzz.c sqlite3.c
$(TLIBS
)
693 -DSQLITE_THREADSAFE
=0 \
694 -DSQLITE_OMIT_LOAD_EXTENSION \
696 -DSQLITE_ENABLE_DBSTAT_VTAB \
697 -DSQLITE_ENABLE_BYTECODE_VTAB \
698 -DSQLITE_ENABLE_RTREE \
699 -DSQLITE_ENABLE_FTS4 \
702 dbfuzz2
$(TEXE
): $(TOP
)/test/dbfuzz2.c sqlite3.c sqlite3.h
703 $(CC
) $(OPT_FEATURE_FLAGS
) $(OPTS
) -I.
-g
-O0 \
704 -DSTANDALONE
-o dbfuzz2 \
705 $(DBFUZZ2_OPTS
) $(TOP
)/test/dbfuzz2.c sqlite3.c
$(TLIBS
)
707 cp
$(TOP
)/test/dbfuzz2-seed
* dbfuzz2-dir
709 dbfuzz2-asan
: $(TOP
)/test/dbfuzz2.c sqlite3.c sqlite3.h
710 clang-6.0
$(OPT_FEATURE_FLAGS
) $(OPTS
) -I.
-g
-O0 \
711 -fsanitize
=fuzzer
,undefined
,address
-o dbfuzz2-asan \
712 $(DBFUZZ2_OPTS
) $(TOP
)/test/dbfuzz2.c sqlite3.c
$(TLIBS
)
714 cp
$(TOP
)/test/dbfuzz2-seed
* dbfuzz2-dir
716 dbfuzz2-msan
: $(TOP
)/test/dbfuzz2.c sqlite3.c sqlite3.h
717 clang-6.0
$(OPT_FEATURE_FLAGS
) $(OPTS
) -I.
-g
-O0 \
718 -fsanitize
=fuzzer
,undefined
,memory
-o dbfuzz2-msan \
719 $(DBFUZZ2_OPTS
) $(TOP
)/test/dbfuzz2.c sqlite3.c
$(TLIBS
)
721 cp
$(TOP
)/test/dbfuzz2-seed
* dbfuzz2-dir
723 mptester
$(TEXE
): sqlite3.lo
$(TOP
)/mptest
/mptest.c
724 $(LTLINK
) -o
$@
-I.
$(TOP
)/mptest
/mptest.c sqlite3.lo \
725 $(TLIBS
) -rpath
"$(libdir)"
727 MPTEST1
=.
/mptester
$(TEXE
) mptest.db
$(TOP
)/mptest
/crash01.
test --repeat
20
728 MPTEST2
=.
/mptester
$(TEXE
) mptest.db
$(TOP
)/mptest
/multiwrite01.
test --repeat
20
729 mptest
: mptester
$(TEXE
)
731 $(MPTEST1
) --journalmode DELETE
732 $(MPTEST2
) --journalmode WAL
733 $(MPTEST1
) --journalmode WAL
734 $(MPTEST2
) --journalmode PERSIST
735 $(MPTEST1
) --journalmode PERSIST
736 $(MPTEST2
) --journalmode TRUNCATE
737 $(MPTEST1
) --journalmode TRUNCATE
738 $(MPTEST2
) --journalmode DELETE
741 # This target creates a directory named "tsrc" and fills it with
742 # copies of all of the C source code and header files needed to
743 # build on the target system. Some of the C source code and header
744 # files are automatically generated. This target takes care of
745 # all that automatic generation.
747 .target_source
: $(SRC
) $(TOP
)/tool
/vdbe-compress.tcl fts5.c
751 rm tsrc
/sqlite.h.in tsrc
/parse.y
752 $(TCLSH_CMD
) $(TOP
)/tool
/vdbe-compress.tcl
$(OPTS
) <tsrc
/vdbe.c
>vdbe.new
753 mv vdbe.new tsrc
/vdbe.c
754 cp fts5.c fts5.h tsrc
757 sqlite3.c
: .target_source
$(TOP
)/tool
/mksqlite3c.tcl
758 $(TCLSH_CMD
) $(TOP
)/tool
/mksqlite3c.tcl
$(AMALGAMATION_LINE_MACROS
)
759 cp tsrc
/sqlite3ext.h .
760 cp
$(TOP
)/ext
/session
/sqlite3session.h .
762 sqlite3r.h
: sqlite3.h
763 $(TCLSH_CMD
) $(TOP
)/tool
/mksqlite3h.tcl
$(TOP
) --enable-recover
>sqlite3r.h
765 sqlite3r.c
: sqlite3.c sqlite3r.h
766 cp
$(TOP
)/ext
/recover
/sqlite3recover.c tsrc
/
767 cp
$(TOP
)/ext
/recover
/sqlite3recover.h tsrc
/
768 cp
$(TOP
)/ext
/recover
/dbdata.c tsrc
/
769 $(TCLSH_CMD
) $(TOP
)/tool
/mksqlite3c.tcl
--enable-recover
$(AMALGAMATION_LINE_MACROS
)
771 sqlite3ext.h
: .target_source
772 cp tsrc
/sqlite3ext.h .
774 tclsqlite3.c
: sqlite3.c
775 echo
'#ifndef USE_SYSTEM_SQLITE' >tclsqlite3.c
776 cat sqlite3.c
>>tclsqlite3.c
777 echo
'#endif /* USE_SYSTEM_SQLITE */' >>tclsqlite3.c
778 cat
$(TOP
)/src
/tclsqlite.c
>>tclsqlite3.c
780 sqlite3-all.c
: sqlite3.c
$(TOP
)/tool
/split-sqlite3c.tcl
781 $(TCLSH_CMD
) $(TOP
)/tool
/split-sqlite3c.tcl
783 # Rule to build the amalgamation
785 sqlite3.lo
: sqlite3.c
786 $(LTCOMPILE
) $(TEMP_STORE
) -c sqlite3.c
788 # Rules to build the LEMON compiler generator
790 lemon
$(BEXE
): $(TOP
)/tool
/lemon.c
$(TOP
)/tool
/lempar.c
791 $(BCC
) -o
$@
$(TOP
)/tool
/lemon.c
792 cp
$(TOP
)/tool
/lempar.c .
794 # Rules to build the program that generates the source-id
796 mksourceid
$(BEXE
): $(TOP
)/tool
/mksourceid.c
797 $(BCC
) -o
$@
$(TOP
)/tool
/mksourceid.c
799 # Rules to build individual *.o files from generated *.c files. This
805 parse.lo
: parse.c
$(HDR
)
806 $(LTCOMPILE
) $(TEMP_STORE
) -c parse.c
808 opcodes.lo
: opcodes.c
809 $(LTCOMPILE
) $(TEMP_STORE
) -c opcodes.c
811 # Rules to build individual *.o files from files in the src directory.
813 alter.lo
: $(TOP
)/src
/alter.c
$(HDR
)
814 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/alter.c
816 analyze.lo
: $(TOP
)/src
/analyze.c
$(HDR
)
817 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/analyze.c
819 attach.lo
: $(TOP
)/src
/attach.c
$(HDR
)
820 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/attach.c
822 auth.lo
: $(TOP
)/src
/auth.c
$(HDR
)
823 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/auth.c
825 backup.lo
: $(TOP
)/src
/backup.c
$(HDR
)
826 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/backup.c
828 bitvec.lo
: $(TOP
)/src
/bitvec.c
$(HDR
)
829 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/bitvec.c
831 btmutex.lo
: $(TOP
)/src
/btmutex.c
$(HDR
)
832 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/btmutex.c
834 btree.lo
: $(TOP
)/src
/btree.c
$(HDR
) $(TOP
)/src
/pager.h
835 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/btree.c
837 build.lo
: $(TOP
)/src
/build.c
$(HDR
)
838 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/build.c
840 callback.lo
: $(TOP
)/src
/callback.c
$(HDR
)
841 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/callback.c
843 complete.lo
: $(TOP
)/src
/complete.c
$(HDR
)
844 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/complete.c
846 ctime.lo
: $(TOP
)/src
/ctime.c
$(HDR
)
847 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/ctime.c
849 date.lo
: $(TOP
)/src
/date.c
$(HDR
)
850 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/date.c
852 dbpage.lo
: $(TOP
)/src
/dbpage.c
$(HDR
)
853 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/dbpage.c
855 dbstat.lo
: $(TOP
)/src
/dbstat.c
$(HDR
)
856 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/dbstat.c
858 delete.lo
: $(TOP
)/src
/delete.c
$(HDR
)
859 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/delete.c
861 expr.lo
: $(TOP
)/src
/expr.c
$(HDR
)
862 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/expr.c
864 fault.lo
: $(TOP
)/src
/fault.c
$(HDR
)
865 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/fault.c
867 fkey.lo
: $(TOP
)/src
/fkey.c
$(HDR
)
868 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/fkey.c
870 func.lo
: $(TOP
)/src
/func.c
$(HDR
)
871 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/func.c
873 global.lo
: $(TOP
)/src
/global.c
$(HDR
)
874 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/global.c
876 hash.lo
: $(TOP
)/src
/hash.c
$(HDR
)
877 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/hash.c
879 insert.lo
: $(TOP
)/src
/insert.c
$(HDR
)
880 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/insert.c
882 json.lo
: $(TOP
)/src
/json.c
$(HDR
)
883 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/json.c
885 legacy.lo
: $(TOP
)/src
/legacy.c
$(HDR
)
886 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/legacy.c
888 loadext.lo
: $(TOP
)/src
/loadext.c
$(HDR
)
889 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/loadext.c
891 main.lo
: $(TOP
)/src
/main.c
$(HDR
)
892 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/main.c
894 malloc.lo
: $(TOP
)/src
/malloc.c
$(HDR
)
895 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/malloc.c
897 mem0.lo
: $(TOP
)/src
/mem0.c
$(HDR
)
898 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem0.c
900 mem1.lo
: $(TOP
)/src
/mem1.c
$(HDR
)
901 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem1.c
903 mem2.lo
: $(TOP
)/src
/mem2.c
$(HDR
)
904 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem2.c
906 mem3.lo
: $(TOP
)/src
/mem3.c
$(HDR
)
907 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem3.c
909 mem5.lo
: $(TOP
)/src
/mem5.c
$(HDR
)
910 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem5.c
912 memdb.lo
: $(TOP
)/src
/memdb.c
$(HDR
)
913 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/memdb.c
915 memjournal.lo
: $(TOP
)/src
/memjournal.c
$(HDR
)
916 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/memjournal.c
918 mutex.lo
: $(TOP
)/src
/mutex.c
$(HDR
)
919 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex.c
921 mutex_noop.lo
: $(TOP
)/src
/mutex_noop.c
$(HDR
)
922 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_noop.c
924 mutex_unix.lo
: $(TOP
)/src
/mutex_unix.c
$(HDR
)
925 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_unix.c
927 mutex_w32.lo
: $(TOP
)/src
/mutex_w32.c
$(HDR
)
928 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_w32.c
930 notify.lo
: $(TOP
)/src
/notify.c
$(HDR
)
931 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/notify.c
933 pager.lo
: $(TOP
)/src
/pager.c
$(HDR
) $(TOP
)/src
/pager.h
934 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pager.c
936 pcache.lo
: $(TOP
)/src
/pcache.c
$(HDR
) $(TOP
)/src
/pcache.h
937 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pcache.c
939 pcache1.lo
: $(TOP
)/src
/pcache1.c
$(HDR
) $(TOP
)/src
/pcache.h
940 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pcache1.c
942 os.lo
: $(TOP
)/src
/os.c
$(HDR
)
943 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os.c
945 os_kv.lo
: $(TOP
)/src
/os_kv.c
$(HDR
)
946 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os_kv.c
948 os_unix.lo
: $(TOP
)/src
/os_unix.c
$(HDR
)
949 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os_unix.c
951 os_win.lo
: $(TOP
)/src
/os_win.c
$(HDR
)
952 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os_win.c
954 pragma.lo
: $(TOP
)/src
/pragma.c
$(HDR
)
955 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pragma.c
957 prepare.lo
: $(TOP
)/src
/prepare.c
$(HDR
)
958 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/prepare.c
960 printf.lo
: $(TOP
)/src
/printf.c
$(HDR
)
961 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/printf.c
963 random.lo
: $(TOP
)/src
/random.c
$(HDR
)
964 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/random.c
966 resolve.lo
: $(TOP
)/src
/resolve.c
$(HDR
)
967 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/resolve.c
969 rowset.lo
: $(TOP
)/src
/rowset.c
$(HDR
)
970 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/rowset.c
972 select.lo
: $(TOP
)/src
/select.c
$(HDR
)
973 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/select.c
975 status.lo
: $(TOP
)/src
/status.c
$(HDR
)
976 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/status.c
978 table.lo
: $(TOP
)/src
/table.c
$(HDR
)
979 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/table.c
981 threads.lo
: $(TOP
)/src
/threads.c
$(HDR
)
982 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/threads.c
984 tokenize.lo
: $(TOP
)/src
/tokenize.c keywordhash.h
$(HDR
)
985 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/tokenize.c
987 treeview.lo
: $(TOP
)/src
/treeview.c
$(HDR
)
988 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/treeview.c
990 trigger.lo
: $(TOP
)/src
/trigger.c
$(HDR
)
991 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/trigger.c
993 update.lo
: $(TOP
)/src
/update.c
$(HDR
)
994 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/update.c
996 upsert.lo
: $(TOP
)/src
/upsert.c
$(HDR
)
997 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/upsert.c
999 utf.lo
: $(TOP
)/src
/utf.c
$(HDR
)
1000 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/utf.c
1002 util.lo
: $(TOP
)/src
/util.c
$(HDR
)
1003 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/util.c
1005 vacuum.lo
: $(TOP
)/src
/vacuum.c
$(HDR
)
1006 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vacuum.c
1008 vdbe.lo
: $(TOP
)/src
/vdbe.c
$(HDR
)
1009 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbe.c
1011 vdbeapi.lo
: $(TOP
)/src
/vdbeapi.c
$(HDR
)
1012 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeapi.c
1014 vdbeaux.lo
: $(TOP
)/src
/vdbeaux.c
$(HDR
)
1015 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeaux.c
1017 vdbeblob.lo
: $(TOP
)/src
/vdbeblob.c
$(HDR
)
1018 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeblob.c
1020 vdbemem.lo
: $(TOP
)/src
/vdbemem.c
$(HDR
)
1021 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbemem.c
1023 vdbesort.lo
: $(TOP
)/src
/vdbesort.c
$(HDR
)
1024 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbesort.c
1026 vdbetrace.lo
: $(TOP
)/src
/vdbetrace.c
$(HDR
)
1027 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbetrace.c
1029 vdbevtab.lo
: $(TOP
)/src
/vdbevtab.c
$(HDR
)
1030 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbevtab.c
1032 vtab.lo
: $(TOP
)/src
/vtab.c
$(HDR
)
1033 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vtab.c
1035 wal.lo
: $(TOP
)/src
/wal.c
$(HDR
)
1036 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/wal.c
1038 walker.lo
: $(TOP
)/src
/walker.c
$(HDR
)
1039 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/walker.c
1041 where.lo
: $(TOP
)/src
/where.c
$(HDR
)
1042 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/where.c
1044 wherecode.lo
: $(TOP
)/src
/wherecode.c
$(HDR
)
1045 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/wherecode.c
1047 whereexpr.lo
: $(TOP
)/src
/whereexpr.c
$(HDR
)
1048 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/whereexpr.c
1050 window.lo
: $(TOP
)/src
/window.c
$(HDR
)
1051 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/window.c
1053 tclsqlite.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
1054 $(LTCOMPILE
) -DUSE_TCL_STUBS
=1 -c
$(TOP
)/src
/tclsqlite.c
1056 tclsqlite-shell.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
1057 $(LTCOMPILE
) -DTCLSH
-o
$@
-c
$(TOP
)/src
/tclsqlite.c
1059 tclsqlite-stubs.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
1060 $(LTCOMPILE
) -DUSE_TCL_STUBS
=1 -o
$@
-c
$(TOP
)/src
/tclsqlite.c
1062 tclsqlite3
$(TEXE
): tclsqlite-shell.lo libsqlite3.la
1063 $(LTLINK
) -o
$@ tclsqlite-shell.lo \
1064 libsqlite3.la
$(LIBTCL
)
1066 # Rules to build opcodes.c and opcodes.h
1068 opcodes.c
: opcodes.h
$(TOP
)/tool
/mkopcodec.tcl
1069 $(TCLSH_CMD
) $(TOP
)/tool
/mkopcodec.tcl opcodes.h
>opcodes.c
1071 opcodes.h
: parse.h
$(TOP
)/src
/vdbe.c
$(TOP
)/tool
/mkopcodeh.tcl
1072 cat parse.h
$(TOP
)/src
/vdbe.c |
$(TCLSH_CMD
) $(TOP
)/tool
/mkopcodeh.tcl
>opcodes.h
1074 # Rules to build parse.c and parse.h - the outputs of lemon.
1078 parse.c
: $(TOP
)/src
/parse.y lemon
$(BEXE
)
1079 cp
$(TOP
)/src
/parse.y .
1080 .
/lemon
$(BEXE
) $(OPT_FEATURE_FLAGS
) $(OPTS
) -S parse.y
1082 sqlite3.h
: $(TOP
)/src
/sqlite.h.in
$(TOP
)/manifest mksourceid
$(BEXE
) $(TOP
)/VERSION
1083 $(TCLSH_CMD
) $(TOP
)/tool
/mksqlite3h.tcl
$(TOP
) >sqlite3.h
1085 sqlite3rc.h
: $(TOP
)/src
/sqlite3.rc
$(TOP
)/VERSION
1086 echo
'#ifndef SQLITE_RESOURCE_VERSION' >$@
1087 echo
-n
'#define SQLITE_RESOURCE_VERSION ' >>$@
1088 cat
$(TOP
)/VERSION |
$(TCLSH_CMD
) $(TOP
)/tool
/replace.tcl exact .
, >>$@
1089 echo
'#endif' >>sqlite3rc.h
1091 keywordhash.h
: $(TOP
)/tool
/mkkeywordhash.c
1092 $(BCC
) -o mkkeywordhash
$(BEXE
) $(OPT_FEATURE_FLAGS
) $(OPTS
) $(TOP
)/tool
/mkkeywordhash.c
1093 .
/mkkeywordhash
$(BEXE
) >keywordhash.h
1095 # Source files that go into making shell.c
1097 $(TOP
)/src
/shell.c.in \
1098 $(TOP
)/ext
/misc
/appendvfs.c \
1099 $(TOP
)/ext
/misc
/completion.c \
1100 $(TOP
)/ext
/misc
/decimal.c \
1101 $(TOP
)/ext
/misc
/basexx.c \
1102 $(TOP
)/ext
/misc
/base64.c \
1103 $(TOP
)/ext
/misc
/base85.c \
1104 $(TOP
)/ext
/misc
/fileio.c \
1105 $(TOP
)/ext
/misc
/ieee754.c \
1106 $(TOP
)/ext
/misc
/regexp.c \
1107 $(TOP
)/ext
/misc
/series.c \
1108 $(TOP
)/ext
/misc
/shathree.c \
1109 $(TOP
)/ext
/misc
/sqlar.c \
1110 $(TOP
)/ext
/misc
/uint.c \
1111 $(TOP
)/ext
/expert
/sqlite3expert.c \
1112 $(TOP
)/ext
/expert
/sqlite3expert.h \
1113 $(TOP
)/ext
/misc
/zipfile.c \
1114 $(TOP
)/ext
/misc
/memtrace.c \
1115 $(TOP
)/ext
/recover
/dbdata.c \
1116 $(TOP
)/ext
/recover
/sqlite3recover.c \
1117 $(TOP
)/ext
/recover
/sqlite3recover.h \
1118 $(TOP
)/src
/test_windirent.c
1120 shell.c
: $(SHELL_SRC
) $(TOP
)/tool
/mkshellc.tcl
1121 $(TCLSH_CMD
) $(TOP
)/tool
/mkshellc.tcl
>shell.c
1126 # Rules to build the extension objects.
1128 icu.lo
: $(TOP
)/ext
/icu
/icu.c
$(HDR
) $(EXTHDR
)
1129 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/icu
/icu.c
1131 fts3.lo
: $(TOP
)/ext
/fts3
/fts3.c
$(HDR
) $(EXTHDR
)
1132 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3.c
1134 fts3_aux.lo
: $(TOP
)/ext
/fts3
/fts3_aux.c
$(HDR
) $(EXTHDR
)
1135 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_aux.c
1137 fts3_expr.lo
: $(TOP
)/ext
/fts3
/fts3_expr.c
$(HDR
) $(EXTHDR
)
1138 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_expr.c
1140 fts3_hash.lo
: $(TOP
)/ext
/fts3
/fts3_hash.c
$(HDR
) $(EXTHDR
)
1141 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_hash.c
1143 fts3_icu.lo
: $(TOP
)/ext
/fts3
/fts3_icu.c
$(HDR
) $(EXTHDR
)
1144 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_icu.c
1146 fts3_porter.lo
: $(TOP
)/ext
/fts3
/fts3_porter.c
$(HDR
) $(EXTHDR
)
1147 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_porter.c
1149 fts3_snippet.lo
: $(TOP
)/ext
/fts3
/fts3_snippet.c
$(HDR
) $(EXTHDR
)
1150 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_snippet.c
1152 fts3_tokenizer.lo
: $(TOP
)/ext
/fts3
/fts3_tokenizer.c
$(HDR
) $(EXTHDR
)
1153 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_tokenizer.c
1155 fts3_tokenizer1.lo
: $(TOP
)/ext
/fts3
/fts3_tokenizer1.c
$(HDR
) $(EXTHDR
)
1156 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_tokenizer1.c
1158 fts3_tokenize_vtab.lo
: $(TOP
)/ext
/fts3
/fts3_tokenize_vtab.c
$(HDR
) $(EXTHDR
)
1159 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_tokenize_vtab.c
1161 fts3_unicode.lo
: $(TOP
)/ext
/fts3
/fts3_unicode.c
$(HDR
) $(EXTHDR
)
1162 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_unicode.c
1164 fts3_unicode2.lo
: $(TOP
)/ext
/fts3
/fts3_unicode2.c
$(HDR
) $(EXTHDR
)
1165 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_unicode2.c
1167 fts3_write.lo
: $(TOP
)/ext
/fts3
/fts3_write.c
$(HDR
) $(EXTHDR
)
1168 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_write.c
1170 rtree.lo
: $(TOP
)/ext
/rtree
/rtree.c
$(HDR
) $(EXTHDR
)
1171 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/rtree
/rtree.c
1173 userauth.lo
: $(TOP
)/ext
/userauth
/userauth.c
$(HDR
) $(EXTHDR
)
1174 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/userauth
/userauth.c
1176 sqlite3session.lo
: $(TOP
)/ext
/session
/sqlite3session.c
$(HDR
) $(EXTHDR
)
1177 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/session
/sqlite3session.c
1179 stmt.lo
: $(TOP
)/ext
/misc
/stmt.c
1180 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/misc
/stmt.c
1185 $(TOP
)/ext
/fts5
/fts5.h \
1186 $(TOP
)/ext
/fts5
/fts5Int.h \
1187 $(TOP
)/ext
/fts5
/fts5_aux.c \
1188 $(TOP
)/ext
/fts5
/fts5_buffer.c \
1189 $(TOP
)/ext
/fts5
/fts5_main.c \
1190 $(TOP
)/ext
/fts5
/fts5_config.c \
1191 $(TOP
)/ext
/fts5
/fts5_expr.c \
1192 $(TOP
)/ext
/fts5
/fts5_hash.c \
1193 $(TOP
)/ext
/fts5
/fts5_index.c \
1194 fts5parse.c fts5parse.h \
1195 $(TOP
)/ext
/fts5
/fts5_storage.c \
1196 $(TOP
)/ext
/fts5
/fts5_tokenize.c \
1197 $(TOP
)/ext
/fts5
/fts5_unicode2.c \
1198 $(TOP
)/ext
/fts5
/fts5_varint.c \
1199 $(TOP
)/ext
/fts5
/fts5_vocab.c \
1201 fts5parse.c
: $(TOP
)/ext
/fts5
/fts5parse.y lemon
$(BEXE
)
1202 cp
$(TOP
)/ext
/fts5
/fts5parse.y .
1204 .
/lemon
$(BEXE
) $(OPTS
) -S fts5parse.y
1206 fts5parse.h
: fts5parse.c
1209 $(TCLSH_CMD
) $(TOP
)/ext
/fts5
/tool
/mkfts5c.tcl
1210 cp
$(TOP
)/ext
/fts5
/fts5.h .
1212 fts5.lo
: fts5.c
$(HDR
) $(EXTHDR
)
1213 $(LTCOMPILE
) -DSQLITE_CORE
-c fts5.c
1215 sqlite3rbu.lo
: $(TOP
)/ext
/rbu
/sqlite3rbu.c
$(HDR
) $(EXTHDR
)
1216 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/rbu
/sqlite3rbu.c
1219 # Rules to build the 'testfixture' application.
1221 # If using the amalgamation, use sqlite3.c directly to build the test
1222 # fixture. Otherwise link against libsqlite3.la. (This distinction is
1223 # necessary because the test fixture requires non-API symbols which are
1224 # hidden when the library is built via the amalgamation).
1226 TESTFIXTURE_FLAGS
= -DSQLITE_TEST
=1 -DSQLITE_CRASH_TEST
=1
1227 TESTFIXTURE_FLAGS
+= -DTCLSH_INIT_PROC
=sqlite3TestInit
1228 TESTFIXTURE_FLAGS
+= -DSQLITE_SERVER
=1 -DSQLITE_PRIVATE
="" -DSQLITE_CORE
1229 TESTFIXTURE_FLAGS
+= -DBUILD_sqlite
1230 TESTFIXTURE_FLAGS
+= -DSQLITE_SERIES_CONSTRAINT_VERIFY
=1
1231 TESTFIXTURE_FLAGS
+= -DSQLITE_DEFAULT_PAGE_SIZE
=1024
1232 TESTFIXTURE_FLAGS
+= -DSQLITE_ENABLE_STMTVTAB
1233 TESTFIXTURE_FLAGS
+= -DSQLITE_ENABLE_DBPAGE_VTAB
1234 TESTFIXTURE_FLAGS
+= -DSQLITE_ENABLE_BYTECODE_VTAB
1235 TESTFIXTURE_FLAGS
+= -DSQLITE_CKSUMVFS_STATIC
1237 TESTFIXTURE_SRC0
= $(TESTSRC2
) libsqlite3.la
1238 TESTFIXTURE_SRC1
= sqlite3.c
1239 TESTFIXTURE_SRC
= $(TESTSRC
) $(TOP
)/src
/tclsqlite.c
1240 TESTFIXTURE_SRC
+= $(TESTFIXTURE_SRC
$(USE_AMALGAMATION
))
1242 testfixture
$(TEXE
): $(TESTFIXTURE_SRC
)
1243 $(LTLINK
) -DSQLITE_NO_SYNC
=1 $(TEMP_STORE
) $(TESTFIXTURE_FLAGS
) \
1244 -o
$@
$(TESTFIXTURE_SRC
) $(LIBTCL
) $(TLIBS
)
1246 coretestprogs
: $(TESTPROGS
)
1248 testprogs
: coretestprogs srcck1
$(BEXE
) fuzzcheck
$(TEXE
) sessionfuzz
$(TEXE
)
1250 # A very detailed test running most or all test cases
1251 fulltest
: alltest fuzztest
1253 # Run most or all tcl test cases
1254 alltest
: $(TESTPROGS
)
1255 .
/testfixture
$(TEXE
) $(TOP
)/test/all.
test $(TESTOPTS
)
1257 # Really really long testing
1258 soaktest
: $(TESTPROGS
)
1259 .
/testfixture
$(TEXE
) $(TOP
)/test/all.
test -soak
=1 $(TESTOPTS
)
1261 # Do extra testing but not everything.
1262 fulltestonly
: $(TESTPROGS
) fuzztest
1263 .
/testfixture
$(TEXE
) $(TOP
)/test/full.
test
1266 fuzztest
: fuzzcheck
$(TEXE
) $(FUZZDATA
) sessionfuzz
$(TEXE
) $(TOP
)/test/sessionfuzz-data1.db
1267 .
/fuzzcheck
$(TEXE
) $(FUZZDATA
)
1268 .
/sessionfuzz
$(TEXE
) run
$(TOP
)/test/sessionfuzz-data1.db
1270 valgrindfuzz
: fuzzcheck
$(TEXT
) $(FUZZDATA
) sessionfuzz
$(TEXE
) $(TOP
)/test/sessionfuzz-data1.db
1271 valgrind .
/fuzzcheck
$(TEXE
) --cell-size-check
--limit-mem
10M
$(FUZZDATA
)
1272 valgrind .
/sessionfuzz
$(TEXE
) run
$(TOP
)/test/sessionfuzz-data1.db
1274 # The veryquick.test TCL tests.
1276 tcltest
: .
/testfixture
$(TEXE
)
1277 .
/testfixture
$(TEXE
) $(TOP
)/test/veryquick.
test $(TESTOPTS
)
1279 # Runs all the same tests cases as the "tcltest" target but uses
1280 # the testrunner.tcl script to run them in multiple cores
1282 testrunner
: testfixture
$(TEXE
)
1283 .
/testfixture
$(TEXE
) $(TOP
)/test/testrunner.tcl
1285 # Runs both fuzztest and testrunner, consecutively.
1287 devtest
: testfixture
$(TEXE
) fuzztest testrunner
1289 # Testing for a release
1291 releasetest
: testfixture
$(TEXE
)
1292 .
/testfixture
$(TEXE
) $(TOP
)/test/testrunner.tcl release
1294 # Minimal testing that runs in less than 3 minutes
1296 quicktest
: .
/testfixture
$(TEXE
)
1297 .
/testfixture
$(TEXE
) $(TOP
)/test/extraquick.
test $(TESTOPTS
)
1299 # This is the common case. Run many tests that do not take too long,
1300 # including fuzzcheck, sqlite3_analyzer, and sqldiff tests.
1302 test: fuzztest sourcetest
$(TESTPROGS
) tcltest
1304 # Run a test using valgrind. This can take a really long time
1305 # because valgrind is so much slower than a native machine.
1307 valgrindtest
: $(TESTPROGS
) valgrindfuzz
1308 OMIT_MISUSE
=1 valgrind
-v .
/testfixture
$(TEXE
) $(TOP
)/test/permutations.
test valgrind
$(TESTOPTS
)
1310 # A very fast test that checks basic sanity. The name comes from
1311 # the 60s-era electronics testing: "Turn it on and see if smoke
1314 smoketest
: $(TESTPROGS
) fuzzcheck
$(TEXE
)
1315 .
/testfixture
$(TEXE
) $(TOP
)/test/main.
test $(TESTOPTS
)
1317 shelltest
: $(TESTPROGS
)
1318 .
/testfixture
$(TEXT
) $(TOP
)/test/permutations.
test shell
1320 sqlite3_analyzer.c
: sqlite3.c
$(TOP
)/src
/tclsqlite.c
$(TOP
)/tool
/spaceanal.tcl
$(TOP
)/tool
/mkccode.tcl
$(TOP
)/tool
/sqlite3_analyzer.c.in
1321 $(TCLSH_CMD
) $(TOP
)/tool
/mkccode.tcl
$(TOP
)/tool
/sqlite3_analyzer.c.in
>sqlite3_analyzer.c
1323 sqlite3_analyzer
$(TEXE
): sqlite3_analyzer.c
1324 $(LTLINK
) sqlite3_analyzer.c
-o
$@
$(LIBTCL
) $(TLIBS
)
1326 sqltclsh.c
: sqlite3.c
$(TOP
)/src
/tclsqlite.c
$(TOP
)/tool
/sqltclsh.tcl
$(TOP
)/ext
/misc
/appendvfs.c
$(TOP
)/tool
/mkccode.tcl
$(TOP
)/tool
/sqltclsh.c.in
1327 $(TCLSH_CMD
) $(TOP
)/tool
/mkccode.tcl
$(TOP
)/tool
/sqltclsh.c.in
>sqltclsh.c
1329 sqltclsh
$(TEXE
): sqltclsh.c
1330 $(LTLINK
) sqltclsh.c
-o
$@
$(LIBTCL
) $(TLIBS
)
1332 sqlite3_expert
$(TEXE
): $(TOP
)/ext
/expert
/sqlite3expert.h
$(TOP
)/ext
/expert
/sqlite3expert.c
$(TOP
)/ext
/expert
/expert.c sqlite3.c
1333 $(LTLINK
) $(TOP
)/ext
/expert
/sqlite3expert.h
$(TOP
)/ext
/expert
/sqlite3expert.c
$(TOP
)/ext
/expert
/expert.c sqlite3.c
-o sqlite3_expert
$(TLIBS
)
1336 $(TOP
)/tool
/mkccode.tcl \
1338 $(TOP
)/src
/tclsqlite.c \
1339 $(TOP
)/ext
/repair
/sqlite3_checker.tcl \
1340 $(TOP
)/ext
/repair
/checkindex.c \
1341 $(TOP
)/ext
/repair
/checkfreelist.c \
1342 $(TOP
)/ext
/misc
/btreeinfo.c \
1343 $(TOP
)/ext
/repair
/sqlite3_checker.c.in
1345 sqlite3_checker.c
: $(CHECKER_DEPS
)
1346 $(TCLSH_CMD
) $(TOP
)/tool
/mkccode.tcl
$(TOP
)/ext
/repair
/sqlite3_checker.c.in
>$@
1348 sqlite3_checker
$(TEXE
): sqlite3_checker.c
1349 $(LTLINK
) sqlite3_checker.c
-o
$@
$(LIBTCL
) $(TLIBS
)
1351 dbdump
$(TEXE
): $(TOP
)/ext
/misc
/dbdump.c sqlite3.lo
1352 $(LTLINK
) -DDBDUMP_STANDALONE
-o
$@ \
1353 $(TOP
)/ext
/misc
/dbdump.c sqlite3.lo
$(TLIBS
)
1355 dbtotxt
$(TEXE
): $(TOP
)/tool
/dbtotxt.c
1356 $(LTLINK
)-o
$@
$(TOP
)/tool
/dbtotxt.c
1358 showdb
$(TEXE
): $(TOP
)/tool
/showdb.c sqlite3.lo
1359 $(LTLINK
) -o
$@
$(TOP
)/tool
/showdb.c sqlite3.lo
$(TLIBS
)
1361 showstat4
$(TEXE
): $(TOP
)/tool
/showstat4.c sqlite3.lo
1362 $(LTLINK
) -o
$@
$(TOP
)/tool
/showstat4.c sqlite3.lo
$(TLIBS
)
1364 showjournal
$(TEXE
): $(TOP
)/tool
/showjournal.c sqlite3.lo
1365 $(LTLINK
) -o
$@
$(TOP
)/tool
/showjournal.c sqlite3.lo
$(TLIBS
)
1367 showwal
$(TEXE
): $(TOP
)/tool
/showwal.c sqlite3.lo
1368 $(LTLINK
) -o
$@
$(TOP
)/tool
/showwal.c sqlite3.lo
$(TLIBS
)
1370 showshm
$(TEXE
): $(TOP
)/tool
/showshm.c
1371 $(LTLINK
) -o
$@
$(TOP
)/tool
/showshm.c
1373 index_usage
$(TEXE
): $(TOP
)/tool
/index_usage.c sqlite3.lo
1374 $(LTLINK
) $(SHELL_OPT
) -o
$@
$(TOP
)/tool
/index_usage.c sqlite3.lo
$(TLIBS
)
1376 changeset
$(TEXE
): $(TOP
)/ext
/session
/changeset.c sqlite3.lo
1377 $(LTLINK
) -o
$@
$(TOP
)/ext
/session
/changeset.c sqlite3.lo
$(TLIBS
)
1379 changesetfuzz
$(TEXE
): $(TOP
)/ext
/session
/changesetfuzz.c sqlite3.lo
1380 $(LTLINK
) -o
$@
$(TOP
)/ext
/session
/changesetfuzz.c sqlite3.lo
$(TLIBS
)
1382 rollback-test
$(TEXE
): $(TOP
)/tool
/rollback-test.c sqlite3.lo
1383 $(LTLINK
) -o
$@
$(TOP
)/tool
/rollback-test.c sqlite3.lo
$(TLIBS
)
1385 atrc
$(TEXX
): $(TOP
)/test/atrc.c sqlite3.lo
1386 $(LTLINK
) -o
$@
$(TOP
)/test/atrc.c sqlite3.lo
$(TLIBS
)
1388 LogEst
$(TEXE
): $(TOP
)/tool
/logest.c sqlite3.h
1389 $(LTLINK
) -I.
-o
$@
$(TOP
)/tool
/logest.c
1391 wordcount
$(TEXE
): $(TOP
)/test/wordcount.c sqlite3.lo
1392 $(LTLINK
) -o
$@
$(TOP
)/test/wordcount.c sqlite3.lo
$(TLIBS
)
1394 speedtest1
$(TEXE
): $(TOP
)/test/speedtest1.c sqlite3.c Makefile
1395 $(LTLINK
) $(ST_OPT
) -o
$@
$(TOP
)/test/speedtest1.c sqlite3.c
$(TLIBS
)
1397 startup
$(TEXE
): $(TOP
)/test/startup.c sqlite3.c
1398 $(CC
) -Os
-g
-DSQLITE_THREADSAFE
=0 -o
$@
$(TOP
)/test/startup.c sqlite3.c
$(TLIBS
)
1400 KV_OPT
+= -DSQLITE_DIRECT_OVERFLOW_READ
1402 kvtest
$(TEXE
): $(TOP
)/test/kvtest.c sqlite3.c
1403 $(LTLINK
) $(KV_OPT
) -o
$@
$(TOP
)/test/kvtest.c sqlite3.c
$(TLIBS
)
1405 rbu
$(EXE
): $(TOP
)/ext
/rbu
/rbu.c
$(TOP
)/ext
/rbu
/sqlite3rbu.c sqlite3.lo
1406 $(LTLINK
) -I.
-o
$@
$(TOP
)/ext
/rbu
/rbu.c sqlite3.lo
$(TLIBS
)
1408 loadfts
$(EXE
): $(TOP
)/tool
/loadfts.c libsqlite3.la
1409 $(LTLINK
) $(TOP
)/tool
/loadfts.c libsqlite3.la
-o
$@
$(TLIBS
)
1411 # This target will fail if the SQLite amalgamation contains any exported
1412 # symbols that do not begin with "sqlite3_". It is run as part of the
1413 # releasetest.tcl script.
1415 VALIDIDS
=' sqlite3(changeset|changegroup|session)?_'
1416 checksymbols
: sqlite3.o
1417 nm
-g
--defined-only sqlite3.o
1418 nm
-g
--defined-only sqlite3.o | egrep
-v
$(VALIDIDS
); test $$?
-ne
0
1419 echo
'0 errors out of 1 tests'
1421 # Build the amalgamation-autoconf package. The amalamgation-tarball target builds
1422 # a tarball named for the version number. Ex: sqlite-autoconf-3110000.tar.gz.
1423 # The snapshot-tarball target builds a tarball named by the SHA1 hash
1425 amalgamation-tarball
: sqlite3.c sqlite3rc.h
1426 TOP
=$(TOP
) sh
$(TOP
)/tool
/mkautoconfamal.sh
--normal
1428 snapshot-tarball
: sqlite3.c sqlite3rc.h
1429 TOP
=$(TOP
) sh
$(TOP
)/tool
/mkautoconfamal.sh
--snapshot
1431 # The next two rules are used to support the "threadtest" target. Building
1432 # threadtest runs a few thread-safety tests that are implemented in C. This
1433 # target is invoked by the releasetest.tcl script.
1435 THREADTEST3_SRC
= $(TOP
)/test/threadtest3.c \
1436 $(TOP
)/test/tt3_checkpoint.c \
1437 $(TOP
)/test/tt3_index.c \
1438 $(TOP
)/test/tt3_vacuum.c \
1439 $(TOP
)/test/tt3_stress.c \
1440 $(TOP
)/test/tt3_lookaside1.c
1442 threadtest3
$(TEXE
): sqlite3.lo
$(THREADTEST3_SRC
)
1443 $(LTLINK
) $(TOP
)/test/threadtest3.c
$(TOP
)/src
/test_multiplex.c sqlite3.lo
-o
$@
$(TLIBS
)
1445 threadtest
: threadtest3
$(TEXE
)
1446 .
/threadtest3
$(TEXE
)
1448 threadtest5
: sqlite3.c
$(TOP
)/test/threadtest5.c
1449 $(LTLINK
) $(TOP
)/test/threadtest5.c sqlite3.c
-o
$@
$(TLIBS
)
1451 # Standard install and cleanup targets
1453 lib_install
: libsqlite3.la
1454 $(INSTALL
) -d
$(DESTDIR
)$(libdir)
1455 $(LTINSTALL
) libsqlite3.la
$(DESTDIR
)$(libdir)
1457 install: sqlite3
$(TEXE
) lib_install sqlite3.h sqlite3.
pc ${HAVE_TCL
:1=tcl_install
}
1458 $(INSTALL
) -d
$(DESTDIR
)$(bindir)
1459 $(LTINSTALL
) sqlite3
$(TEXE
) $(DESTDIR
)$(bindir)
1460 $(INSTALL
) -d
$(DESTDIR
)$(includedir)
1461 $(INSTALL
) -m
0644 sqlite3.h
$(DESTDIR
)$(includedir)
1462 $(INSTALL
) -m
0644 $(TOP
)/src
/sqlite3ext.h
$(DESTDIR
)$(includedir)
1463 $(INSTALL
) -d
$(DESTDIR
)$(pkgconfigdir
)
1464 $(INSTALL
) -m
0644 sqlite3.
pc $(DESTDIR
)$(pkgconfigdir
)
1467 echo
'package ifneeded sqlite3 $(RELEASE) [list load [file join $$dir libtclsqlite3[info sharedlibextension]] sqlite3]' > $@
1468 tcl_install
: lib_install libtclsqlite3.la pkgIndex.tcl
1469 $(INSTALL
) -d
$(DESTDIR
)$(TCLLIBDIR
)
1470 $(LTINSTALL
) libtclsqlite3.la
$(DESTDIR
)$(TCLLIBDIR
)
1471 rm -f
$(DESTDIR
)$(TCLLIBDIR
)/libtclsqlite3.la
$(DESTDIR
)$(TCLLIBDIR
)/libtclsqlite3.a
1472 $(INSTALL
) -m
0644 pkgIndex.tcl
$(DESTDIR
)$(TCLLIBDIR
)
1475 rm -f
*.lo
*.la
*.o sqlite3
$(TEXE
) libsqlite3.la
1476 rm -f sqlite3.h opcodes.
*
1478 rm -f lemon
$(BEXE
) lempar.c parse.
* sqlite
*.
tar.gz
1479 rm -f mkkeywordhash
$(BEXE
) keywordhash.h
1480 rm -f mksourceid
$(BEXE
)
1481 rm -f
*.da
*.bb
*.bbg gmon.out
1482 rm -rf tsrc .target_source
1483 rm -f tclsqlite3
$(TEXE
)
1484 rm -f testfixture
$(TEXE
) test.db
1485 rm -f LogEst
$(TEXE
) fts3view
$(TEXE
) rollback-test
$(TEXE
) showdb
$(TEXE
)
1486 rm -f showjournal
$(TEXE
) showstat4
$(TEXE
) showwal
$(TEXE
) speedtest1
$(TEXE
)
1487 rm -f wordcount
$(TEXE
) changeset
$(TEXE
)
1488 rm -f sqlite3.dll sqlite3.lib sqlite3.exp sqlite3.def
1491 rm -f
shell.c sqlite3ext.h
1492 rm -f sqlite3_analyzer
$(TEXE
) sqlite3_analyzer.c
1493 rm -f sqlite-
*-output.vsix
1494 rm -f mptester mptester.exe
1496 rm -f srcck1 srcck1.exe
1497 rm -f fuzzershell fuzzershell.exe
1498 rm -f fuzzcheck fuzzcheck.exe
1499 rm -f sqldiff sqldiff.exe
1500 rm -f dbhash dbhash.exe
1501 rm -f fts5.
* fts5parse.
*
1505 rm -f sqlite_cfg.h config.log config.status libtool Makefile sqlite3.
pc \
1513 REAL_LIBOBJ
= $(LIBOBJ
:%.lo
=.libs
/%.o
)
1515 $(REAL_LIBOBJ
): $(LIBOBJ
)
1517 sqlite3.def
: $(REAL_LIBOBJ
)
1518 echo
'EXPORTS' >sqlite3.def
1519 nm
$(REAL_LIBOBJ
) | grep
' T ' | grep
' _sqlite3_' \
1520 | sed
's/^.* _//' >>sqlite3.def
1522 sqlite3.dll
: $(REAL_LIBOBJ
) sqlite3.def
1523 $(TCC
) -shared
-o
$@ sqlite3.def \
1524 -Wl
,"--strip-all" $(REAL_LIBOBJ
)
1529 fiddle
: sqlite3.c
shell.c
1530 make
-C ext
/wasm fiddle emcc_opt
=-Os