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
36 # Define this for the autoconf-based build, so that the code knows it can
37 # include the generated config.h
39 TCC
+= -D_HAVE_SQLITE_CONFIG_H
-DBUILD_sqlite
41 # Define -DNDEBUG to compile without debugging (i.e., for production usage)
42 # Omitting the define will cause extra debugging code to be inserted and
43 # includes extra comments when "EXPLAIN stmt" is used.
47 # Compiler options needed for programs that use the TCL library.
49 TCC
+= @TCL_INCLUDE_SPEC@
51 # The library that programs using TCL must link against.
53 LIBTCL
= @TCL_LIB_SPEC@
55 # Compiler options needed for programs that use the readline() library.
57 READLINE_FLAGS
= -DHAVE_READLINE
=@TARGET_HAVE_READLINE@ @TARGET_READLINE_INC@
58 READLINE_FLAGS
+= -DHAVE_EDITLINE
=@TARGET_HAVE_EDITLINE@
60 # The library that programs using readline() must link against.
62 LIBREADLINE
= @TARGET_READLINE_LIBS@
64 # Should the database engine be compiled threadsafe
66 TCC
+= -DSQLITE_THREADSAFE
=@SQLITE_THREADSAFE@
68 # Any target libraries which libsqlite must be linked against
70 TLIBS
= @LIBS@
$(LIBS
)
72 # Flags controlling use of the in memory btree implementation
74 # SQLITE_TEMP_STORE is 0 to force temporary tables to be in a file, 1 to
75 # default to file, 2 to default to memory, and 3 to force temporary
76 # tables to always be in memory.
78 TEMP_STORE
= -DSQLITE_TEMP_STORE
=@TEMP_STORE@
80 # Enable/disable loadable extensions, and other optional features
81 # based on configuration. (-DSQLITE_OMIT*, -DSQLITE_ENABLE*).
82 # The same set of OMIT and ENABLE flags should be passed to the
83 # LEMON parser generator and the mkkeywordhash tool as well.
84 OPT_FEATURE_FLAGS
= @OPT_FEATURE_FLAGS@
86 TCC
+= $(OPT_FEATURE_FLAGS
)
88 # Add in any optional parameters specified on the make commane line
89 # ie. make "OPTS=-DSQLITE_ENABLE_FOO=1 -DSQLITE_OMIT_FOO=1".
92 # Add in compile-time options for some libraries used by extensions
95 # Version numbers and release number for the SQLite being compiled.
98 VERSION_NUMBER
= @VERSION_NUMBER@
101 # Filename extensions
103 BEXE
= @BUILD_EXEEXT@
104 TEXE
= @TARGET_EXEEXT@
106 # The following variable is "1" if the configure script was able to locate
107 # the tclConfig.sh file. It is an empty string otherwise. When this
108 # variable is "1", the TCL extension library (libtclsqlite3.so) is built
111 HAVE_TCL
= @HAVE_TCL@
113 # This is the command to use for tclsh - normally just "tclsh", but we may
114 # know the specific version we want to use
116 TCLSH_CMD
= @TCLSH_CMD@
118 # Where do we want to install the tcl plugin
120 TCLLIBDIR
= @TCLLIBDIR@
122 # The suffix used on shared libraries. Ex: ".dll", ".so", ".dylib"
124 SHLIB_SUFFIX
= @TCL_SHLIB_SUFFIX@
126 # If gcov support was enabled by the configure script, add the appropriate
127 # flags here. It's not always as easy as just having the user add the right
128 # CFLAGS / LDFLAGS, because libtool wants to use CFLAGS when linking, which
129 # causes build errors with -fprofile-arcs -ftest-coverage with some GCCs.
130 # Supposedly GCC does the right thing if you use --coverage, but in
131 # practice it still fails. See:
133 # http://www.mail-archive.com/debian-gcc@lists.debian.org/msg26197.html
137 GCOV_CFLAGS1
= -DSQLITE_COVERAGE_TEST
=1 -fprofile-arcs
-ftest-coverage
138 GCOV_LDFLAGS1
= -lgcov
139 USE_GCOV
= @USE_GCOV@
140 LTCOMPILE_EXTRAS
+= $(GCOV_CFLAGS
$(USE_GCOV
))
141 LTLINK_EXTRAS
+= $(GCOV_LDFLAGS
$(USE_GCOV
))
144 # The directory into which to store package information for
146 # Some standard variables and programs
149 exec_prefix = @
exec_prefix@
151 pkgconfigdir
= $(libdir)/pkgconfig
153 includedir = @
includedir@
156 ALLOWRELEASE
= @ALLOWRELEASE@
158 # libtool compile/link/install
159 LTCOMPILE
= $(LIBTOOL
) --mode
=compile
--tag
=CC
$(TCC
) $(LTCOMPILE_EXTRAS
)
160 LTLINK
= $(LIBTOOL
) --mode
=link
$(TCC
) $(LTCOMPILE_EXTRAS
) @LDFLAGS@
$(LTLINK_EXTRAS
)
161 LTINSTALL
= $(LIBTOOL
) --mode
=install $(INSTALL
)
163 # You should not have to change anything below this line
164 ###############################################################################
166 USE_AMALGAMATION
= @USE_AMALGAMATION@
168 # Object files for the SQLite library (non-amalgamation).
170 LIBOBJS0
= alter.lo analyze.lo attach.lo auth.lo \
171 backup.lo bitvec.lo btmutex.lo btree.lo build.lo \
172 callback.lo complete.lo ctime.lo \
173 date.lo dbpage.lo dbstat.lo delete.lo \
174 expr.lo fault.lo fkey.lo \
175 fts3.lo fts3_aux.lo fts3_expr.lo fts3_hash.lo fts3_icu.lo \
176 fts3_porter.lo fts3_snippet.lo fts3_tokenizer.lo fts3_tokenizer1.lo \
177 fts3_tokenize_vtab.lo \
178 fts3_unicode.lo fts3_unicode2.lo fts3_write.lo \
180 func.lo global.lo hash.lo \
181 icu.lo insert.lo json1.lo legacy.lo loadext.lo \
182 main.lo malloc.lo mem0.lo mem1.lo mem2.lo mem3.lo mem5.lo \
183 memdb.lo memjournal.lo \
184 mutex.lo mutex_noop.lo mutex_unix.lo mutex_w32.lo \
185 notify.lo opcodes.lo os.lo os_unix.lo os_win.lo \
186 pager.lo parse.lo pcache.lo pcache1.lo pragma.lo prepare.lo printf.lo \
187 random.lo resolve.lo rowset.lo rtree.lo \
188 sqlite3session.lo select.lo sqlite3rbu.lo status.lo stmt.lo \
189 table.lo threads.lo tokenize.lo treeview.lo trigger.lo \
190 update.lo upsert.lo util.lo vacuum.lo \
191 vdbe.lo vdbeapi.lo vdbeaux.lo vdbeblob.lo vdbemem.lo vdbesort.lo \
192 vdbetrace.lo wal.lo walker.lo where.lo wherecode.lo whereexpr.lo \
195 # Object files for the amalgamation.
197 LIBOBJS1
= sqlite3.lo
199 # Determine the real value of LIBOBJ based on the 'configure' script
201 LIBOBJ
= $(LIBOBJS
$(USE_AMALGAMATION
))
204 # All of the source code files.
208 $(TOP
)/src
/analyze.c \
209 $(TOP
)/src
/attach.c \
211 $(TOP
)/src
/backup.c \
212 $(TOP
)/src
/bitvec.c \
213 $(TOP
)/src
/btmutex.c \
216 $(TOP
)/src
/btreeInt.h \
218 $(TOP
)/src
/callback.c \
219 $(TOP
)/src
/complete.c \
222 $(TOP
)/src
/dbpage.c \
223 $(TOP
)/src
/dbstat.c \
224 $(TOP
)/src
/delete.c \
229 $(TOP
)/src
/global.c \
232 $(TOP
)/src
/hwtime.h \
233 $(TOP
)/src
/insert.c \
234 $(TOP
)/src
/legacy.c \
235 $(TOP
)/src
/loadext.c \
237 $(TOP
)/src
/malloc.c \
244 $(TOP
)/src
/memjournal.c \
248 $(TOP
)/src
/mutex_noop.c \
249 $(TOP
)/src
/mutex_unix.c \
250 $(TOP
)/src
/mutex_w32.c \
251 $(TOP
)/src
/notify.c \
254 $(TOP
)/src
/os_common.h \
255 $(TOP
)/src
/os_setup.h \
256 $(TOP
)/src
/os_unix.c \
257 $(TOP
)/src
/os_win.c \
258 $(TOP
)/src
/os_win.h \
262 $(TOP
)/src
/pcache.c \
263 $(TOP
)/src
/pcache.h \
264 $(TOP
)/src
/pcache1.c \
265 $(TOP
)/src
/pragma.c \
266 $(TOP
)/src
/pragma.h \
267 $(TOP
)/src
/prepare.c \
268 $(TOP
)/src
/printf.c \
269 $(TOP
)/src
/random.c \
270 $(TOP
)/src
/resolve.c \
271 $(TOP
)/src
/rowset.c \
272 $(TOP
)/src
/select.c \
273 $(TOP
)/src
/status.c \
274 $(TOP
)/src
/shell.c.in \
275 $(TOP
)/src
/sqlite.h.in \
276 $(TOP
)/src
/sqlite3ext.h \
277 $(TOP
)/src
/sqliteInt.h \
278 $(TOP
)/src
/sqliteLimit.h \
280 $(TOP
)/src
/tclsqlite.c \
281 $(TOP
)/src
/threads.c \
282 $(TOP
)/src
/tokenize.c \
283 $(TOP
)/src
/treeview.c \
284 $(TOP
)/src
/trigger.c \
286 $(TOP
)/src
/update.c \
287 $(TOP
)/src
/upsert.c \
289 $(TOP
)/src
/vacuum.c \
292 $(TOP
)/src
/vdbeapi.c \
293 $(TOP
)/src
/vdbeaux.c \
294 $(TOP
)/src
/vdbeblob.c \
295 $(TOP
)/src
/vdbemem.c \
296 $(TOP
)/src
/vdbesort.c \
297 $(TOP
)/src
/vdbetrace.c \
298 $(TOP
)/src
/vdbeInt.h \
300 $(TOP
)/src
/vxworks.h \
303 $(TOP
)/src
/walker.c \
305 $(TOP
)/src
/wherecode.c \
306 $(TOP
)/src
/whereexpr.c \
307 $(TOP
)/src
/whereInt.h
309 # Source code for extensions
312 $(TOP
)/ext
/fts1
/fts1.c \
313 $(TOP
)/ext
/fts1
/fts1.h \
314 $(TOP
)/ext
/fts1
/fts1_hash.c \
315 $(TOP
)/ext
/fts1
/fts1_hash.h \
316 $(TOP
)/ext
/fts1
/fts1_porter.c \
317 $(TOP
)/ext
/fts1
/fts1_tokenizer.h \
318 $(TOP
)/ext
/fts1
/fts1_tokenizer1.c
320 $(TOP
)/ext
/fts2
/fts2.c \
321 $(TOP
)/ext
/fts2
/fts2.h \
322 $(TOP
)/ext
/fts2
/fts2_hash.c \
323 $(TOP
)/ext
/fts2
/fts2_hash.h \
324 $(TOP
)/ext
/fts2
/fts2_icu.c \
325 $(TOP
)/ext
/fts2
/fts2_porter.c \
326 $(TOP
)/ext
/fts2
/fts2_tokenizer.h \
327 $(TOP
)/ext
/fts2
/fts2_tokenizer.c \
328 $(TOP
)/ext
/fts2
/fts2_tokenizer1.c
330 $(TOP
)/ext
/fts3
/fts3.c \
331 $(TOP
)/ext
/fts3
/fts3.h \
332 $(TOP
)/ext
/fts3
/fts3Int.h \
333 $(TOP
)/ext
/fts3
/fts3_aux.c \
334 $(TOP
)/ext
/fts3
/fts3_expr.c \
335 $(TOP
)/ext
/fts3
/fts3_hash.c \
336 $(TOP
)/ext
/fts3
/fts3_hash.h \
337 $(TOP
)/ext
/fts3
/fts3_icu.c \
338 $(TOP
)/ext
/fts3
/fts3_porter.c \
339 $(TOP
)/ext
/fts3
/fts3_snippet.c \
340 $(TOP
)/ext
/fts3
/fts3_tokenizer.h \
341 $(TOP
)/ext
/fts3
/fts3_tokenizer.c \
342 $(TOP
)/ext
/fts3
/fts3_tokenizer1.c \
343 $(TOP
)/ext
/fts3
/fts3_tokenize_vtab.c \
344 $(TOP
)/ext
/fts3
/fts3_unicode.c \
345 $(TOP
)/ext
/fts3
/fts3_unicode2.c \
346 $(TOP
)/ext
/fts3
/fts3_write.c
348 $(TOP
)/ext
/icu
/sqliteicu.h \
351 $(TOP
)/ext
/rtree
/rtree.h \
352 $(TOP
)/ext
/rtree
/rtree.c
354 $(TOP
)/ext
/session
/sqlite3session.c \
355 $(TOP
)/ext
/session
/sqlite3session.h
357 $(TOP
)/ext
/rbu
/sqlite3rbu.h \
358 $(TOP
)/ext
/rbu
/sqlite3rbu.c
360 $(TOP
)/ext
/misc
/json1.c \
361 $(TOP
)/ext
/misc
/stmt.c
363 # Generated source code files
375 # Source code to the test files.
387 $(TOP
)/src
/test_autoext.c \
388 $(TOP
)/src
/test_async.c \
389 $(TOP
)/src
/test_backup.c \
390 $(TOP
)/src
/test_bestindex.c \
391 $(TOP
)/src
/test_blob.c \
392 $(TOP
)/src
/test_btree.c \
393 $(TOP
)/src
/test_config.c \
394 $(TOP
)/src
/test_delete.c \
395 $(TOP
)/src
/test_demovfs.c \
396 $(TOP
)/src
/test_devsym.c \
397 $(TOP
)/src
/test_fs.c \
398 $(TOP
)/src
/test_func.c \
399 $(TOP
)/src
/test_hexio.c \
400 $(TOP
)/src
/test_init.c \
401 $(TOP
)/src
/test_intarray.c \
402 $(TOP
)/src
/test_journal.c \
403 $(TOP
)/src
/test_malloc.c \
404 $(TOP
)/src
/test_md5.c \
405 $(TOP
)/src
/test_multiplex.c \
406 $(TOP
)/src
/test_mutex.c \
407 $(TOP
)/src
/test_onefile.c \
408 $(TOP
)/src
/test_osinst.c \
409 $(TOP
)/src
/test_pcache.c \
410 $(TOP
)/src
/test_quota.c \
411 $(TOP
)/src
/test_rtree.c \
412 $(TOP
)/src
/test_schema.c \
413 $(TOP
)/src
/test_server.c \
414 $(TOP
)/src
/test_superlock.c \
415 $(TOP
)/src
/test_syscall.c \
416 $(TOP
)/src
/test_tclsh.c \
417 $(TOP
)/src
/test_tclvar.c \
418 $(TOP
)/src
/test_thread.c \
419 $(TOP
)/src
/test_vfs.c \
420 $(TOP
)/src
/test_windirent.c \
421 $(TOP
)/src
/test_wsd.c \
422 $(TOP
)/ext
/fts3
/fts3_term.c \
423 $(TOP
)/ext
/fts3
/fts3_test.c \
424 $(TOP
)/ext
/session
/test_session.c \
425 $(TOP
)/ext
/rbu
/test_rbu.c
427 # Statically linked extensions
430 $(TOP
)/ext
/expert
/sqlite3expert.c \
431 $(TOP
)/ext
/expert
/test_expert.c \
432 $(TOP
)/ext
/misc
/amatch.c \
433 $(TOP
)/ext
/misc
/carray.c \
434 $(TOP
)/ext
/misc
/closure.c \
435 $(TOP
)/ext
/misc
/csv.c \
436 $(TOP
)/ext
/misc
/eval.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
/regexp.c \
448 $(TOP
)/ext
/misc
/remember.c \
449 $(TOP
)/ext
/misc
/series.c \
450 $(TOP
)/ext
/misc
/spellfix.c \
451 $(TOP
)/ext
/misc
/totype.c \
452 $(TOP
)/ext
/misc
/unionvtab.c \
453 $(TOP
)/ext
/misc
/wholenumber.c \
454 $(TOP
)/ext
/misc
/zipfile.c
456 # Source code to the library files needed by the test fixture
459 $(TOP
)/src
/attach.c \
460 $(TOP
)/src
/backup.c \
461 $(TOP
)/src
/bitvec.c \
466 $(TOP
)/src
/dbpage.c \
467 $(TOP
)/src
/dbstat.c \
470 $(TOP
)/src
/insert.c \
475 $(TOP
)/src
/os_unix.c \
476 $(TOP
)/src
/os_win.c \
478 $(TOP
)/src
/pragma.c \
479 $(TOP
)/src
/prepare.c \
480 $(TOP
)/src
/printf.c \
481 $(TOP
)/src
/random.c \
482 $(TOP
)/src
/pcache.c \
483 $(TOP
)/src
/pcache1.c \
484 $(TOP
)/src
/select.c \
485 $(TOP
)/src
/tokenize.c \
488 $(TOP
)/src
/vdbeapi.c \
489 $(TOP
)/src
/vdbeaux.c \
491 $(TOP
)/src
/vdbemem.c \
492 $(TOP
)/src
/vdbetrace.c \
494 $(TOP
)/src
/wherecode.c \
495 $(TOP
)/src
/whereexpr.c \
497 $(TOP
)/ext
/fts3
/fts3.c \
498 $(TOP
)/ext
/fts3
/fts3_aux.c \
499 $(TOP
)/ext
/fts3
/fts3_expr.c \
500 $(TOP
)/ext
/fts3
/fts3_term.c \
501 $(TOP
)/ext
/fts3
/fts3_tokenizer.c \
502 $(TOP
)/ext
/fts3
/fts3_write.c \
503 $(TOP
)/ext
/async
/sqlite3async.c \
504 $(TOP
)/ext
/session
/sqlite3session.c \
505 $(TOP
)/ext
/misc
/stmt.c
507 # Header files used by all library source files.
511 $(TOP
)/src
/btreeInt.h \
513 $(TOP
)/src
/hwtime.h \
519 $(TOP
)/src
/os_common.h \
520 $(TOP
)/src
/os_setup.h \
521 $(TOP
)/src
/os_win.h \
523 $(TOP
)/src
/pcache.h \
525 $(TOP
)/src
/pragma.h \
527 $(TOP
)/src
/sqlite3ext.h \
528 $(TOP
)/src
/sqliteInt.h \
529 $(TOP
)/src
/sqliteLimit.h \
531 $(TOP
)/src
/vdbeInt.h \
532 $(TOP
)/src
/vxworks.h \
533 $(TOP
)/src
/whereInt.h \
536 # Header files used by extensions
539 $(TOP
)/ext
/fts1
/fts1.h \
540 $(TOP
)/ext
/fts1
/fts1_hash.h \
541 $(TOP
)/ext
/fts1
/fts1_tokenizer.h
543 $(TOP
)/ext
/fts2
/fts2.h \
544 $(TOP
)/ext
/fts2
/fts2_hash.h \
545 $(TOP
)/ext
/fts2
/fts2_tokenizer.h
547 $(TOP
)/ext
/fts3
/fts3.h \
548 $(TOP
)/ext
/fts3
/fts3Int.h \
549 $(TOP
)/ext
/fts3
/fts3_hash.h \
550 $(TOP
)/ext
/fts3
/fts3_tokenizer.h
552 $(TOP
)/ext
/rtree
/rtree.h
554 $(TOP
)/ext
/icu
/sqliteicu.h
556 $(TOP
)/ext
/rtree
/sqlite3rtree.h
558 # executables needed for testing
563 sqlite3_analyzer
$(TEXE
) \
568 # Databases containing fuzzer test cases
571 $(TOP
)/test/fuzzdata1.db \
572 $(TOP
)/test/fuzzdata2.db \
573 $(TOP
)/test/fuzzdata3.db \
574 $(TOP
)/test/fuzzdata4.db \
575 $(TOP
)/test/fuzzdata5.db \
576 $(TOP
)/test/fuzzdata6.db
578 # Standard options to testfixture
580 TESTOPTS
= --verbose
=file
--output
=test-out.txt
582 # Extra compiler options for various shell tools
584 SHELL_OPT
= -DSQLITE_ENABLE_JSON1
-DSQLITE_ENABLE_FTS4
585 #SHELL_OPT += -DSQLITE_ENABLE_FTS5
586 SHELL_OPT
+= -DSQLITE_ENABLE_RTREE
587 SHELL_OPT
+= -DSQLITE_ENABLE_EXPLAIN_COMMENTS
588 SHELL_OPT
+= -DSQLITE_ENABLE_UNKNOWN_SQL_FUNCTION
589 SHELL_OPT
+= -DSQLITE_ENABLE_STMTVTAB
590 SHELL_OPT
+= -DSQLITE_ENABLE_DBPAGE_VTAB
591 SHELL_OPT
+= -DSQLITE_ENABLE_DBSTAT_VTAB
592 SHELL_OPT
+= -DSQLITE_ENABLE_OFFSET_SQL_FUNC
593 SHELL_OPT
+= -DSQLITE_INTROSPECTION_PRAGMAS
594 FUZZERSHELL_OPT
= -DSQLITE_ENABLE_JSON1
595 FUZZCHECK_OPT
= -DSQLITE_ENABLE_JSON1
-DSQLITE_ENABLE_MEMSYS5
-DSQLITE_OSS_FUZZ
596 FUZZCHECK_OPT
+= -DSQLITE_MAX_MEMORY
=50000000
597 FUZZCHECK_OPT
+= -DSQLITE_PRINTF_PRECISION_LIMIT
=1000
598 FUZZCHECK_SRC
= $(TOP
)/test/fuzzcheck.c
$(TOP
)/test/ossfuzz.c
601 # This is the default Makefile target. The objects listed here
602 # are what get build when you type just "make" with no arguments.
604 all: sqlite3.h libsqlite3.la sqlite3
$(TEXE
) $(HAVE_TCL
:1=libtclsqlite3.la
)
606 Makefile
: $(TOP
)/Makefile.in
609 sqlite3.
pc: $(TOP
)/sqlite3.
pc.in
612 libsqlite3.la
: $(LIBOBJ
)
613 $(LTLINK
) -no-undefined
-o
$@
$(LIBOBJ
) $(TLIBS
) \
614 ${ALLOWRELEASE} -rpath
"$(libdir)" -version-info
"8:6:8"
616 libtclsqlite3.la
: tclsqlite.lo libsqlite3.la
617 $(LTLINK
) -no-undefined
-o
$@ tclsqlite.lo \
618 libsqlite3.la @TCL_STUB_LIB_SPEC@
$(TLIBS
) \
619 -rpath
"$(TCLLIBDIR)" \
620 -version-info
"8:6:8" \
623 sqlite3
$(TEXE
): shell.c sqlite3.c
624 $(LTLINK
) $(READLINE_FLAGS
) $(SHELL_OPT
) -o
$@ \
626 $(LIBREADLINE
) $(TLIBS
) -rpath
"$(libdir)"
628 sqldiff
$(TEXE
): $(TOP
)/tool
/sqldiff.c sqlite3.lo sqlite3.h
629 $(LTLINK
) -o
$@
$(TOP
)/tool
/sqldiff.c sqlite3.lo
$(TLIBS
)
631 dbhash
$(TEXE
): $(TOP
)/tool
/dbhash.c sqlite3.lo sqlite3.h
632 $(LTLINK
) -o
$@
$(TOP
)/tool
/dbhash.c sqlite3.lo
$(TLIBS
)
634 scrub
$(TEXE
): $(TOP
)/ext
/misc
/scrub.c sqlite3.lo
635 $(LTLINK
) -o
$@
-I.
-DSCRUB_STANDALONE \
636 $(TOP
)/ext
/misc
/scrub.c sqlite3.lo
$(TLIBS
)
638 srcck1
$(BEXE
): $(TOP
)/tool
/srcck1.c
639 $(BCC
) -o srcck1
$(BEXE
) $(TOP
)/tool
/srcck1.c
641 sourcetest
: srcck1
$(BEXE
) sqlite3.c
644 fuzzershell
$(TEXE
): $(TOP
)/tool
/fuzzershell.c sqlite3.c sqlite3.h
645 $(LTLINK
) -o
$@
$(FUZZERSHELL_OPT
) \
646 $(TOP
)/tool
/fuzzershell.c sqlite3.c
$(TLIBS
)
648 fuzzcheck
$(TEXE
): $(FUZZCHECK_SRC
) sqlite3.c sqlite3.h
649 $(LTLINK
) -o
$@
$(FUZZCHECK_OPT
) $(FUZZCHECK_SRC
) sqlite3.c
$(TLIBS
)
651 ossshell
$(TEXE
): $(TOP
)/test/ossfuzz.c
$(TOP
)/test/ossshell.c sqlite3.c sqlite3.h
652 $(LTLINK
) -o
$@
$(FUZZCHECK_OPT
) $(TOP
)/test/ossshell.c \
653 $(TOP
)/test/ossfuzz.c sqlite3.c
$(TLIBS
)
655 sessionfuzz
$(TEXE
): $(TOP
)/test/sessionfuzz.c sqlite3.c sqlite3.h
656 $(CC
) $(CFLAGS
) -I.
-o
$@
$(TOP
)/test/sessionfuzz.c
$(TLIBS
)
658 dbfuzz
$(TEXE
): $(TOP
)/test/dbfuzz.c sqlite3.c sqlite3.h
659 $(LTLINK
) -o
$@
$(DBFUZZ_OPT
) $(TOP
)/test/dbfuzz.c sqlite3.c
$(TLIBS
)
661 mptester
$(TEXE
): sqlite3.lo
$(TOP
)/mptest
/mptest.c
662 $(LTLINK
) -o
$@
-I.
$(TOP
)/mptest
/mptest.c sqlite3.lo \
663 $(TLIBS
) -rpath
"$(libdir)"
665 MPTEST1
=.
/mptester
$(TEXE
) mptest.db
$(TOP
)/mptest
/crash01.
test --repeat
20
666 MPTEST2
=.
/mptester
$(TEXE
) mptest.db
$(TOP
)/mptest
/multiwrite01.
test --repeat
20
667 mptest
: mptester
$(TEXE
)
669 $(MPTEST1
) --journalmode DELETE
670 $(MPTEST2
) --journalmode WAL
671 $(MPTEST1
) --journalmode WAL
672 $(MPTEST2
) --journalmode PERSIST
673 $(MPTEST1
) --journalmode PERSIST
674 $(MPTEST2
) --journalmode TRUNCATE
675 $(MPTEST1
) --journalmode TRUNCATE
676 $(MPTEST2
) --journalmode DELETE
679 # This target creates a directory named "tsrc" and fills it with
680 # copies of all of the C source code and header files needed to
681 # build on the target system. Some of the C source code and header
682 # files are automatically generated. This target takes care of
683 # all that automatic generation.
685 .target_source
: $(SRC
) $(TOP
)/tool
/vdbe-compress.tcl fts5.c
689 rm tsrc
/sqlite.h.in tsrc
/parse.y
690 $(TCLSH_CMD
) $(TOP
)/tool
/vdbe-compress.tcl
$(OPTS
) <tsrc
/vdbe.c
>vdbe.new
691 mv vdbe.new tsrc
/vdbe.c
692 cp fts5.c fts5.h tsrc
695 sqlite3.c
: .target_source
$(TOP
)/tool
/mksqlite3c.tcl
696 $(TCLSH_CMD
) $(TOP
)/tool
/mksqlite3c.tcl
697 cp tsrc
/sqlite3ext.h .
698 cp
$(TOP
)/ext
/session
/sqlite3session.h .
700 sqlite3ext.h
: .target_source
701 cp tsrc
/sqlite3ext.h .
703 tclsqlite3.c
: sqlite3.c
704 echo
'#ifndef USE_SYSTEM_SQLITE' >tclsqlite3.c
705 cat sqlite3.c
>>tclsqlite3.c
706 echo
'#endif /* USE_SYSTEM_SQLITE */' >>tclsqlite3.c
707 cat
$(TOP
)/src
/tclsqlite.c
>>tclsqlite3.c
709 sqlite3-all.c
: sqlite3.c
$(TOP
)/tool
/split-sqlite3c.tcl
710 $(TCLSH_CMD
) $(TOP
)/tool
/split-sqlite3c.tcl
712 # Rule to build the amalgamation
714 sqlite3.lo
: sqlite3.c
715 $(LTCOMPILE
) $(TEMP_STORE
) -c sqlite3.c
717 # Rules to build the LEMON compiler generator
719 lemon
$(BEXE
): $(TOP
)/tool
/lemon.c
$(TOP
)/tool
/lempar.c
720 $(BCC
) -o
$@
$(TOP
)/tool
/lemon.c
721 cp
$(TOP
)/tool
/lempar.c .
723 # Rules to build the program that generates the source-id
725 mksourceid
$(BEXE
): $(TOP
)/tool
/mksourceid.c
726 $(BCC
) -o
$@
$(TOP
)/tool
/mksourceid.c
728 # Rules to build individual *.o files from generated *.c files. This
734 parse.lo
: parse.c
$(HDR
)
735 $(LTCOMPILE
) $(TEMP_STORE
) -c parse.c
737 opcodes.lo
: opcodes.c
738 $(LTCOMPILE
) $(TEMP_STORE
) -c opcodes.c
740 # Rules to build individual *.o files from files in the src directory.
742 alter.lo
: $(TOP
)/src
/alter.c
$(HDR
)
743 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/alter.c
745 analyze.lo
: $(TOP
)/src
/analyze.c
$(HDR
)
746 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/analyze.c
748 attach.lo
: $(TOP
)/src
/attach.c
$(HDR
)
749 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/attach.c
751 auth.lo
: $(TOP
)/src
/auth.c
$(HDR
)
752 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/auth.c
754 backup.lo
: $(TOP
)/src
/backup.c
$(HDR
)
755 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/backup.c
757 bitvec.lo
: $(TOP
)/src
/bitvec.c
$(HDR
)
758 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/bitvec.c
760 btmutex.lo
: $(TOP
)/src
/btmutex.c
$(HDR
)
761 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/btmutex.c
763 btree.lo
: $(TOP
)/src
/btree.c
$(HDR
) $(TOP
)/src
/pager.h
764 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/btree.c
766 build.lo
: $(TOP
)/src
/build.c
$(HDR
)
767 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/build.c
769 callback.lo
: $(TOP
)/src
/callback.c
$(HDR
)
770 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/callback.c
772 complete.lo
: $(TOP
)/src
/complete.c
$(HDR
)
773 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/complete.c
775 ctime.lo
: $(TOP
)/src
/ctime.c
$(HDR
)
776 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/ctime.c
778 date.lo
: $(TOP
)/src
/date.c
$(HDR
)
779 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/date.c
781 dbpage.lo
: $(TOP
)/src
/dbpage.c
$(HDR
)
782 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/dbpage.c
784 dbstat.lo
: $(TOP
)/src
/dbstat.c
$(HDR
)
785 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/dbstat.c
787 delete.lo
: $(TOP
)/src
/delete.c
$(HDR
)
788 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/delete.c
790 expr.lo
: $(TOP
)/src
/expr.c
$(HDR
)
791 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/expr.c
793 fault.lo
: $(TOP
)/src
/fault.c
$(HDR
)
794 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/fault.c
796 fkey.lo
: $(TOP
)/src
/fkey.c
$(HDR
)
797 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/fkey.c
799 func.lo
: $(TOP
)/src
/func.c
$(HDR
)
800 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/func.c
802 global.lo
: $(TOP
)/src
/global.c
$(HDR
)
803 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/global.c
805 hash.lo
: $(TOP
)/src
/hash.c
$(HDR
)
806 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/hash.c
808 insert.lo
: $(TOP
)/src
/insert.c
$(HDR
)
809 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/insert.c
811 legacy.lo
: $(TOP
)/src
/legacy.c
$(HDR
)
812 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/legacy.c
814 loadext.lo
: $(TOP
)/src
/loadext.c
$(HDR
)
815 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/loadext.c
817 main.lo
: $(TOP
)/src
/main.c
$(HDR
)
818 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/main.c
820 malloc.lo
: $(TOP
)/src
/malloc.c
$(HDR
)
821 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/malloc.c
823 mem0.lo
: $(TOP
)/src
/mem0.c
$(HDR
)
824 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem0.c
826 mem1.lo
: $(TOP
)/src
/mem1.c
$(HDR
)
827 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem1.c
829 mem2.lo
: $(TOP
)/src
/mem2.c
$(HDR
)
830 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem2.c
832 mem3.lo
: $(TOP
)/src
/mem3.c
$(HDR
)
833 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem3.c
835 mem5.lo
: $(TOP
)/src
/mem5.c
$(HDR
)
836 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem5.c
838 memdb.lo
: $(TOP
)/src
/memdb.c
$(HDR
)
839 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/memdb.c
841 memjournal.lo
: $(TOP
)/src
/memjournal.c
$(HDR
)
842 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/memjournal.c
844 mutex.lo
: $(TOP
)/src
/mutex.c
$(HDR
)
845 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex.c
847 mutex_noop.lo
: $(TOP
)/src
/mutex_noop.c
$(HDR
)
848 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_noop.c
850 mutex_unix.lo
: $(TOP
)/src
/mutex_unix.c
$(HDR
)
851 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_unix.c
853 mutex_w32.lo
: $(TOP
)/src
/mutex_w32.c
$(HDR
)
854 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_w32.c
856 notify.lo
: $(TOP
)/src
/notify.c
$(HDR
)
857 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/notify.c
859 pager.lo
: $(TOP
)/src
/pager.c
$(HDR
) $(TOP
)/src
/pager.h
860 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pager.c
862 pcache.lo
: $(TOP
)/src
/pcache.c
$(HDR
) $(TOP
)/src
/pcache.h
863 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pcache.c
865 pcache1.lo
: $(TOP
)/src
/pcache1.c
$(HDR
) $(TOP
)/src
/pcache.h
866 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pcache1.c
868 os.lo
: $(TOP
)/src
/os.c
$(HDR
)
869 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os.c
871 os_unix.lo
: $(TOP
)/src
/os_unix.c
$(HDR
)
872 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os_unix.c
874 os_win.lo
: $(TOP
)/src
/os_win.c
$(HDR
)
875 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os_win.c
877 pragma.lo
: $(TOP
)/src
/pragma.c
$(HDR
)
878 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pragma.c
880 prepare.lo
: $(TOP
)/src
/prepare.c
$(HDR
)
881 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/prepare.c
883 printf.lo
: $(TOP
)/src
/printf.c
$(HDR
)
884 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/printf.c
886 random.lo
: $(TOP
)/src
/random.c
$(HDR
)
887 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/random.c
889 resolve.lo
: $(TOP
)/src
/resolve.c
$(HDR
)
890 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/resolve.c
892 rowset.lo
: $(TOP
)/src
/rowset.c
$(HDR
)
893 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/rowset.c
895 select.lo
: $(TOP
)/src
/select.c
$(HDR
)
896 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/select.c
898 status.lo
: $(TOP
)/src
/status.c
$(HDR
)
899 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/status.c
901 table.lo
: $(TOP
)/src
/table.c
$(HDR
)
902 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/table.c
904 threads.lo
: $(TOP
)/src
/threads.c
$(HDR
)
905 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/threads.c
907 tokenize.lo
: $(TOP
)/src
/tokenize.c keywordhash.h
$(HDR
)
908 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/tokenize.c
910 treeview.lo
: $(TOP
)/src
/treeview.c
$(HDR
)
911 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/treeview.c
913 trigger.lo
: $(TOP
)/src
/trigger.c
$(HDR
)
914 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/trigger.c
916 update.lo
: $(TOP
)/src
/update.c
$(HDR
)
917 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/update.c
919 upsert.lo
: $(TOP
)/src
/upsert.c
$(HDR
)
920 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/upsert.c
922 utf.lo
: $(TOP
)/src
/utf.c
$(HDR
)
923 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/utf.c
925 util.lo
: $(TOP
)/src
/util.c
$(HDR
)
926 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/util.c
928 vacuum.lo
: $(TOP
)/src
/vacuum.c
$(HDR
)
929 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vacuum.c
931 vdbe.lo
: $(TOP
)/src
/vdbe.c
$(HDR
)
932 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbe.c
934 vdbeapi.lo
: $(TOP
)/src
/vdbeapi.c
$(HDR
)
935 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeapi.c
937 vdbeaux.lo
: $(TOP
)/src
/vdbeaux.c
$(HDR
)
938 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeaux.c
940 vdbeblob.lo
: $(TOP
)/src
/vdbeblob.c
$(HDR
)
941 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeblob.c
943 vdbemem.lo
: $(TOP
)/src
/vdbemem.c
$(HDR
)
944 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbemem.c
946 vdbesort.lo
: $(TOP
)/src
/vdbesort.c
$(HDR
)
947 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbesort.c
949 vdbetrace.lo
: $(TOP
)/src
/vdbetrace.c
$(HDR
)
950 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbetrace.c
952 vtab.lo
: $(TOP
)/src
/vtab.c
$(HDR
)
953 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vtab.c
955 wal.lo
: $(TOP
)/src
/wal.c
$(HDR
)
956 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/wal.c
958 walker.lo
: $(TOP
)/src
/walker.c
$(HDR
)
959 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/walker.c
961 where.lo
: $(TOP
)/src
/where.c
$(HDR
)
962 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/where.c
964 wherecode.lo
: $(TOP
)/src
/wherecode.c
$(HDR
)
965 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/wherecode.c
967 whereexpr.lo
: $(TOP
)/src
/whereexpr.c
$(HDR
)
968 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/whereexpr.c
970 tclsqlite.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
971 $(LTCOMPILE
) -DUSE_TCL_STUBS
=1 -c
$(TOP
)/src
/tclsqlite.c
973 tclsqlite-shell.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
974 $(LTCOMPILE
) -DTCLSH
-o
$@
-c
$(TOP
)/src
/tclsqlite.c
976 tclsqlite-stubs.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
977 $(LTCOMPILE
) -DUSE_TCL_STUBS
=1 -o
$@
-c
$(TOP
)/src
/tclsqlite.c
979 tclsqlite3
$(TEXE
): tclsqlite-shell.lo libsqlite3.la
980 $(LTLINK
) -o
$@ tclsqlite-shell.lo \
981 libsqlite3.la
$(LIBTCL
)
983 # Rules to build opcodes.c and opcodes.h
985 opcodes.c
: opcodes.h
$(TOP
)/tool
/mkopcodec.tcl
986 $(TCLSH_CMD
) $(TOP
)/tool
/mkopcodec.tcl opcodes.h
>opcodes.c
988 opcodes.h
: parse.h
$(TOP
)/src
/vdbe.c
$(TOP
)/tool
/mkopcodeh.tcl
989 cat parse.h
$(TOP
)/src
/vdbe.c |
$(TCLSH_CMD
) $(TOP
)/tool
/mkopcodeh.tcl
>opcodes.h
991 # Rules to build parse.c and parse.h - the outputs of lemon.
995 parse.c
: $(TOP
)/src
/parse.y lemon
$(BEXE
) $(TOP
)/tool
/addopcodes.tcl
996 cp
$(TOP
)/src
/parse.y .
998 .
/lemon
$(BEXE
) $(OPT_FEATURE_FLAGS
) $(OPTS
) parse.y
999 mv parse.h parse.h.temp
1000 $(TCLSH_CMD
) $(TOP
)/tool
/addopcodes.tcl parse.h.temp
>parse.h
1002 sqlite3.h
: $(TOP
)/src
/sqlite.h.in
$(TOP
)/manifest mksourceid
$(BEXE
) $(TOP
)/VERSION
1003 $(TCLSH_CMD
) $(TOP
)/tool
/mksqlite3h.tcl
$(TOP
) >sqlite3.h
1005 keywordhash.h
: $(TOP
)/tool
/mkkeywordhash.c
1006 $(BCC
) -o mkkeywordhash
$(BEXE
) $(OPT_FEATURE_FLAGS
) $(OPTS
) $(TOP
)/tool
/mkkeywordhash.c
1007 .
/mkkeywordhash
$(BEXE
) >keywordhash.h
1009 # Source files that go into making shell.c
1011 $(TOP
)/src
/shell.c.in \
1012 $(TOP
)/ext
/misc
/appendvfs.c \
1013 $(TOP
)/ext
/misc
/shathree.c \
1014 $(TOP
)/ext
/misc
/fileio.c \
1015 $(TOP
)/ext
/misc
/completion.c \
1016 $(TOP
)/ext
/misc
/sqlar.c \
1017 $(TOP
)/ext
/expert
/sqlite3expert.c \
1018 $(TOP
)/ext
/expert
/sqlite3expert.h \
1019 $(TOP
)/ext
/misc
/zipfile.c \
1020 $(TOP
)/src
/test_windirent.c
1022 shell.c
: $(SHELL_SRC
) $(TOP
)/tool
/mkshellc.tcl
1023 $(TCLSH_CMD
) $(TOP
)/tool
/mkshellc.tcl
>shell.c
1028 # Rules to build the extension objects.
1030 icu.lo
: $(TOP
)/ext
/icu
/icu.c
$(HDR
) $(EXTHDR
)
1031 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/icu
/icu.c
1033 fts2.lo
: $(TOP
)/ext
/fts2
/fts2.c
$(HDR
) $(EXTHDR
)
1034 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2.c
1036 fts2_hash.lo
: $(TOP
)/ext
/fts2
/fts2_hash.c
$(HDR
) $(EXTHDR
)
1037 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_hash.c
1039 fts2_icu.lo
: $(TOP
)/ext
/fts2
/fts2_icu.c
$(HDR
) $(EXTHDR
)
1040 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_icu.c
1042 fts2_porter.lo
: $(TOP
)/ext
/fts2
/fts2_porter.c
$(HDR
) $(EXTHDR
)
1043 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_porter.c
1045 fts2_tokenizer.lo
: $(TOP
)/ext
/fts2
/fts2_tokenizer.c
$(HDR
) $(EXTHDR
)
1046 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_tokenizer.c
1048 fts2_tokenizer1.lo
: $(TOP
)/ext
/fts2
/fts2_tokenizer1.c
$(HDR
) $(EXTHDR
)
1049 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_tokenizer1.c
1051 fts3.lo
: $(TOP
)/ext
/fts3
/fts3.c
$(HDR
) $(EXTHDR
)
1052 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3.c
1054 fts3_aux.lo
: $(TOP
)/ext
/fts3
/fts3_aux.c
$(HDR
) $(EXTHDR
)
1055 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_aux.c
1057 fts3_expr.lo
: $(TOP
)/ext
/fts3
/fts3_expr.c
$(HDR
) $(EXTHDR
)
1058 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_expr.c
1060 fts3_hash.lo
: $(TOP
)/ext
/fts3
/fts3_hash.c
$(HDR
) $(EXTHDR
)
1061 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_hash.c
1063 fts3_icu.lo
: $(TOP
)/ext
/fts3
/fts3_icu.c
$(HDR
) $(EXTHDR
)
1064 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_icu.c
1066 fts3_porter.lo
: $(TOP
)/ext
/fts3
/fts3_porter.c
$(HDR
) $(EXTHDR
)
1067 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_porter.c
1069 fts3_snippet.lo
: $(TOP
)/ext
/fts3
/fts3_snippet.c
$(HDR
) $(EXTHDR
)
1070 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_snippet.c
1072 fts3_tokenizer.lo
: $(TOP
)/ext
/fts3
/fts3_tokenizer.c
$(HDR
) $(EXTHDR
)
1073 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_tokenizer.c
1075 fts3_tokenizer1.lo
: $(TOP
)/ext
/fts3
/fts3_tokenizer1.c
$(HDR
) $(EXTHDR
)
1076 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_tokenizer1.c
1078 fts3_tokenize_vtab.lo
: $(TOP
)/ext
/fts3
/fts3_tokenize_vtab.c
$(HDR
) $(EXTHDR
)
1079 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_tokenize_vtab.c
1081 fts3_unicode.lo
: $(TOP
)/ext
/fts3
/fts3_unicode.c
$(HDR
) $(EXTHDR
)
1082 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_unicode.c
1084 fts3_unicode2.lo
: $(TOP
)/ext
/fts3
/fts3_unicode2.c
$(HDR
) $(EXTHDR
)
1085 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_unicode2.c
1087 fts3_write.lo
: $(TOP
)/ext
/fts3
/fts3_write.c
$(HDR
) $(EXTHDR
)
1088 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_write.c
1090 rtree.lo
: $(TOP
)/ext
/rtree
/rtree.c
$(HDR
) $(EXTHDR
)
1091 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/rtree
/rtree.c
1093 sqlite3session.lo
: $(TOP
)/ext
/session
/sqlite3session.c
$(HDR
) $(EXTHDR
)
1094 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/session
/sqlite3session.c
1096 json1.lo
: $(TOP
)/ext
/misc
/json1.c
1097 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/misc
/json1.c
1099 stmt.lo
: $(TOP
)/ext
/misc
/stmt.c
1100 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/misc
/stmt.c
1105 $(TOP
)/ext
/fts5
/fts5.h \
1106 $(TOP
)/ext
/fts5
/fts5Int.h \
1107 $(TOP
)/ext
/fts5
/fts5_aux.c \
1108 $(TOP
)/ext
/fts5
/fts5_buffer.c \
1109 $(TOP
)/ext
/fts5
/fts5_main.c \
1110 $(TOP
)/ext
/fts5
/fts5_config.c \
1111 $(TOP
)/ext
/fts5
/fts5_expr.c \
1112 $(TOP
)/ext
/fts5
/fts5_hash.c \
1113 $(TOP
)/ext
/fts5
/fts5_index.c \
1114 fts5parse.c fts5parse.h \
1115 $(TOP
)/ext
/fts5
/fts5_storage.c \
1116 $(TOP
)/ext
/fts5
/fts5_tokenize.c \
1117 $(TOP
)/ext
/fts5
/fts5_unicode2.c \
1118 $(TOP
)/ext
/fts5
/fts5_varint.c \
1119 $(TOP
)/ext
/fts5
/fts5_vocab.c \
1121 fts5parse.c
: $(TOP
)/ext
/fts5
/fts5parse.y lemon
1122 cp
$(TOP
)/ext
/fts5
/fts5parse.y .
1124 .
/lemon
$(BEXE
) $(OPTS
) fts5parse.y
1126 fts5parse.h
: fts5parse.c
1129 $(TCLSH_CMD
) $(TOP
)/ext
/fts5
/tool
/mkfts5c.tcl
1130 cp
$(TOP
)/ext
/fts5
/fts5.h .
1132 fts5.lo
: fts5.c
$(HDR
) $(EXTHDR
)
1133 $(LTCOMPILE
) -DSQLITE_CORE
-c fts5.c
1135 sqlite3rbu.lo
: $(TOP
)/ext
/rbu
/sqlite3rbu.c
$(HDR
) $(EXTHDR
)
1136 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/rbu
/sqlite3rbu.c
1139 # Rules to build the 'testfixture' application.
1141 # If using the amalgamation, use sqlite3.c directly to build the test
1142 # fixture. Otherwise link against libsqlite3.la. (This distinction is
1143 # necessary because the test fixture requires non-API symbols which are
1144 # hidden when the library is built via the amalgamation).
1146 TESTFIXTURE_FLAGS
= -DSQLITE_TEST
=1 -DSQLITE_CRASH_TEST
=1
1147 TESTFIXTURE_FLAGS
+= -DTCLSH_INIT_PROC
=sqlite3TestInit
1148 TESTFIXTURE_FLAGS
+= -DSQLITE_SERVER
=1 -DSQLITE_PRIVATE
="" -DSQLITE_CORE
1149 TESTFIXTURE_FLAGS
+= -DBUILD_sqlite
1150 TESTFIXTURE_FLAGS
+= -DSQLITE_SERIES_CONSTRAINT_VERIFY
=1
1151 TESTFIXTURE_FLAGS
+= -DSQLITE_DEFAULT_PAGE_SIZE
=1024
1152 TESTFIXTURE_FLAGS
+= -DSQLITE_ENABLE_STMTVTAB
1153 TESTFIXTURE_FLAGS
+= -DSQLITE_ENABLE_DBPAGE_VTAB
1155 TESTFIXTURE_SRC0
= $(TESTSRC2
) libsqlite3.la
1156 TESTFIXTURE_SRC1
= sqlite3.c
1157 TESTFIXTURE_SRC
= $(TESTSRC
) $(TOP
)/src
/tclsqlite.c
1158 TESTFIXTURE_SRC
+= $(TESTFIXTURE_SRC
$(USE_AMALGAMATION
))
1160 testfixture
$(TEXE
): $(TESTFIXTURE_SRC
)
1161 $(LTLINK
) -DSQLITE_NO_SYNC
=1 $(TEMP_STORE
) $(TESTFIXTURE_FLAGS
) \
1162 -o
$@
$(TESTFIXTURE_SRC
) $(LIBTCL
) $(TLIBS
)
1164 # A very detailed test running most or all test cases
1165 fulltest
: $(TESTPROGS
) fuzztest
1166 .
/testfixture
$(TEXE
) $(TOP
)/test/all.
test $(TESTOPTS
)
1168 # Really really long testing
1169 soaktest
: $(TESTPROGS
)
1170 .
/testfixture
$(TEXE
) $(TOP
)/test/all.
test -soak
=1 $(TESTOPTS
)
1172 # Do extra testing but not everything.
1173 fulltestonly
: $(TESTPROGS
) fuzztest
1174 .
/testfixture
$(TEXE
) $(TOP
)/test/full.
test
1177 fuzztest
: fuzzcheck
$(TEXE
) $(FUZZDATA
) sessionfuzz
$(TEXE
) $(TOP
)/test/sessionfuzz-data1.db
1178 .
/fuzzcheck
$(TEXE
) $(FUZZDATA
)
1179 .
/sessionfuzz
$(TEXE
) run
$(TOP
)/test/sessionfuzz-data1.db
1181 fastfuzztest
: fuzzcheck
$(TEXE
) $(FUZZDATA
) sessionfuzz
$(TEXE
) $(TOP
)/test/sessionfuzz-data1.db
1182 .
/fuzzcheck
$(TEXE
) --limit-mem
100M
$(FUZZDATA
)
1183 .
/sessionfuzz
$(TEXE
) run
$(TOP
)/test/sessionfuzz-data1.db
1185 valgrindfuzz
: fuzzcheck
$(TEXT
) $(FUZZDATA
) sessionfuzz
$(TEXE
) $(TOP
)/test/sessionfuzz-data1.db
1186 valgrind .
/fuzzcheck
$(TEXE
) --cell-size-check
--limit-mem
10M
--timeout
600 $(FUZZDATA
)
1187 valgrind .
/sessionfuzz
$(TEXE
) run
$(TOP
)/test/sessionfuzz-data1.db
1189 # The veryquick.test TCL tests.
1191 tcltest
: .
/testfixture
$(TEXE
)
1192 .
/testfixture
$(TEXE
) $(TOP
)/test/veryquick.
test $(TESTOPTS
)
1194 # Minimal testing that runs in less than 3 minutes
1196 quicktest
: .
/testfixture
$(TEXE
)
1197 .
/testfixture
$(TEXE
) $(TOP
)/test/extraquick.
test $(TESTOPTS
)
1199 # This is the common case. Run many tests that do not take too long,
1200 # including fuzzcheck, sqlite3_analyzer, and sqldiff tests.
1202 test: fastfuzztest sourcetest
$(TESTPROGS
) tcltest
1204 # Run a test using valgrind. This can take a really long time
1205 # because valgrind is so much slower than a native machine.
1207 valgrindtest
: $(TESTPROGS
) valgrindfuzz
1208 OMIT_MISUSE
=1 valgrind
-v .
/testfixture
$(TEXE
) $(TOP
)/test/permutations.
test valgrind
$(TESTOPTS
)
1210 # A very fast test that checks basic sanity. The name comes from
1211 # the 60s-era electronics testing: "Turn it on and see if smoke
1214 smoketest
: $(TESTPROGS
) fuzzcheck
$(TEXE
)
1215 .
/testfixture
$(TEXE
) $(TOP
)/test/main.
test $(TESTOPTS
)
1217 sqlite3_analyzer.c
: sqlite3.c
$(TOP
)/src
/tclsqlite.c
$(TOP
)/tool
/spaceanal.tcl
$(TOP
)/tool
/mkccode.tcl
$(TOP
)/tool
/sqlite3_analyzer.c.in
1218 $(TCLSH_CMD
) $(TOP
)/tool
/mkccode.tcl
$(TOP
)/tool
/sqlite3_analyzer.c.in
>sqlite3_analyzer.c
1220 sqlite3_analyzer
$(TEXE
): sqlite3_analyzer.c
1221 $(LTLINK
) sqlite3_analyzer.c
-o
$@
$(LIBTCL
) $(TLIBS
)
1223 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
1224 $(TCLSH_CMD
) $(TOP
)/tool
/mkccode.tcl
$(TOP
)/tool
/sqltclsh.c.in
>sqltclsh.c
1226 sqltclsh
$(TEXE
): sqltclsh.c
1227 $(LTLINK
) sqltclsh.c
-o
$@
$(LIBTCL
) $(TLIBS
)
1229 sqlite3_expert
$(TEXE
): $(TOP
)/ext
/expert
/sqlite3expert.h
$(TOP
)/ext
/expert
/sqlite3expert.c
$(TOP
)/ext
/expert
/expert.c sqlite3.c
1230 $(LTLINK
) $(TOP
)/ext
/expert
/sqlite3expert.h
$(TOP
)/ext
/expert
/sqlite3expert.c
$(TOP
)/ext
/expert
/expert.c sqlite3.c
-o sqlite3_expert
$(TLIBS
)
1233 $(TOP
)/tool
/mkccode.tcl \
1235 $(TOP
)/src
/tclsqlite.c \
1236 $(TOP
)/ext
/repair
/sqlite3_checker.tcl \
1237 $(TOP
)/ext
/repair
/checkindex.c \
1238 $(TOP
)/ext
/repair
/checkfreelist.c \
1239 $(TOP
)/ext
/misc
/btreeinfo.c \
1240 $(TOP
)/ext
/repair
/sqlite3_checker.c.in
1242 sqlite3_checker.c
: $(CHECKER_DEPS
)
1243 $(TCLSH_CMD
) $(TOP
)/tool
/mkccode.tcl
$(TOP
)/ext
/repair
/sqlite3_checker.c.in
>$@
1245 sqlite3_checker
$(TEXE
): sqlite3_checker.c
1246 $(LTLINK
) sqlite3_checker.c
-o
$@
$(LIBTCL
) $(TLIBS
)
1248 dbdump
$(TEXE
): $(TOP
)/ext
/misc
/dbdump.c sqlite3.lo
1249 $(LTLINK
) -DDBDUMP_STANDALONE
-o
$@ \
1250 $(TOP
)/ext
/misc
/dbdump.c sqlite3.lo
$(TLIBS
)
1252 showdb
$(TEXE
): $(TOP
)/tool
/showdb.c sqlite3.lo
1253 $(LTLINK
) -o
$@
$(TOP
)/tool
/showdb.c sqlite3.lo
$(TLIBS
)
1255 showstat4
$(TEXE
): $(TOP
)/tool
/showstat4.c sqlite3.lo
1256 $(LTLINK
) -o
$@
$(TOP
)/tool
/showstat4.c sqlite3.lo
$(TLIBS
)
1258 showjournal
$(TEXE
): $(TOP
)/tool
/showjournal.c sqlite3.lo
1259 $(LTLINK
) -o
$@
$(TOP
)/tool
/showjournal.c sqlite3.lo
$(TLIBS
)
1261 showwal
$(TEXE
): $(TOP
)/tool
/showwal.c sqlite3.lo
1262 $(LTLINK
) -o
$@
$(TOP
)/tool
/showwal.c sqlite3.lo
$(TLIBS
)
1264 showshm
$(TEXE
): $(TOP
)/tool
/showshm.c
1265 $(LTLINK
) -o
$@
$(TOP
)/tool
/showshm.c
1267 changeset
$(TEXE
): $(TOP
)/ext
/session
/changeset.c sqlite3.lo
1268 $(LTLINK
) -o
$@
$(TOP
)/ext
/session
/changeset.c sqlite3.lo
$(TLIBS
)
1270 rollback-test
$(TEXE
): $(TOP
)/tool
/rollback-test.c sqlite3.lo
1271 $(LTLINK
) -o
$@
$(TOP
)/tool
/rollback-test.c sqlite3.lo
$(TLIBS
)
1273 LogEst
$(TEXE
): $(TOP
)/tool
/logest.c sqlite3.h
1274 $(LTLINK
) -I.
-o
$@
$(TOP
)/tool
/logest.c
1276 wordcount
$(TEXE
): $(TOP
)/test/wordcount.c sqlite3.lo
1277 $(LTLINK
) -o
$@
$(TOP
)/test/wordcount.c sqlite3.lo
$(TLIBS
)
1279 speedtest1
$(TEXE
): $(TOP
)/test/speedtest1.c sqlite3.c
1280 $(LTLINK
) $(ST_OPT
) -o
$@
$(TOP
)/test/speedtest1.c sqlite3.c
$(TLIBS
)
1282 KV_OPT
+= -DSQLITE_DIRECT_OVERFLOW_READ
1284 kvtest
$(TEXE
): $(TOP
)/test/kvtest.c sqlite3.c
1285 $(LTLINK
) $(KV_OPT
) -o
$@
$(TOP
)/test/kvtest.c sqlite3.c
$(TLIBS
)
1287 rbu
$(EXE
): $(TOP
)/ext
/rbu
/rbu.c
$(TOP
)/ext
/rbu
/sqlite3rbu.c sqlite3.lo
1288 $(LTLINK
) -I.
-o
$@
$(TOP
)/ext
/rbu
/rbu.c sqlite3.lo
$(TLIBS
)
1290 loadfts
$(EXE
): $(TOP
)/tool
/loadfts.c libsqlite3.la
1291 $(LTLINK
) $(TOP
)/tool
/loadfts.c libsqlite3.la
-o
$@
$(TLIBS
)
1293 # This target will fail if the SQLite amalgamation contains any exported
1294 # symbols that do not begin with "sqlite3_". It is run as part of the
1295 # releasetest.tcl script.
1297 VALIDIDS
=' sqlite3(changeset|changegroup|session)?_'
1298 checksymbols
: sqlite3.lo
1299 nm
-g
--defined-only sqlite3.lo | egrep
-v
$(VALIDIDS
); test $$?
-ne
0
1300 echo
'0 errors out of 1 tests'
1302 # Build the amalgamation-autoconf package. The amalamgation-tarball target builds
1303 # a tarball named for the version number. Ex: sqlite-autoconf-3110000.tar.gz.
1304 # The snapshot-tarball target builds a tarball named by the SHA1 hash
1306 amalgamation-tarball
: sqlite3.c
1307 TOP
=$(TOP
) sh
$(TOP
)/tool
/mkautoconfamal.sh
--normal
1309 snapshot-tarball
: sqlite3.c
1310 TOP
=$(TOP
) sh
$(TOP
)/tool
/mkautoconfamal.sh
--snapshot
1312 # The next two rules are used to support the "threadtest" target. Building
1313 # threadtest runs a few thread-safety tests that are implemented in C. This
1314 # target is invoked by the releasetest.tcl script.
1316 THREADTEST3_SRC
= $(TOP
)/test/threadtest3.c \
1317 $(TOP
)/test/tt3_checkpoint.c \
1318 $(TOP
)/test/tt3_index.c \
1319 $(TOP
)/test/tt3_vacuum.c \
1320 $(TOP
)/test/tt3_stress.c \
1321 $(TOP
)/test/tt3_lookaside1.c
1323 threadtest3
$(TEXE
): sqlite3.lo
$(THREADTEST3_SRC
)
1324 $(LTLINK
) $(TOP
)/test/threadtest3.c
$(TOP
)/src
/test_multiplex.c sqlite3.lo
-o
$@
$(TLIBS
)
1326 threadtest
: threadtest3
$(TEXE
)
1327 .
/threadtest3
$(TEXE
)
1330 $(TCLSH_CMD
) $(TOP
)/test/releasetest.tcl
1332 # Standard install and cleanup targets
1334 lib_install
: libsqlite3.la
1335 $(INSTALL
) -d
$(DESTDIR
)$(libdir)
1336 $(LTINSTALL
) libsqlite3.la
$(DESTDIR
)$(libdir)
1338 install: sqlite3
$(TEXE
) lib_install sqlite3.h sqlite3.
pc ${HAVE_TCL
:1=tcl_install
}
1339 $(INSTALL
) -d
$(DESTDIR
)$(bindir)
1340 $(LTINSTALL
) sqlite3
$(TEXE
) $(DESTDIR
)$(bindir)
1341 $(INSTALL
) -d
$(DESTDIR
)$(includedir)
1342 $(INSTALL
) -m
0644 sqlite3.h
$(DESTDIR
)$(includedir)
1343 $(INSTALL
) -m
0644 $(TOP
)/src
/sqlite3ext.h
$(DESTDIR
)$(includedir)
1344 $(INSTALL
) -d
$(DESTDIR
)$(pkgconfigdir
)
1345 $(INSTALL
) -m
0644 sqlite3.
pc $(DESTDIR
)$(pkgconfigdir
)
1348 echo
'package ifneeded sqlite3 $(RELEASE) [list load $(TCLLIBDIR)/libtclsqlite3$(SHLIB_SUFFIX) sqlite3]' > $@
1349 tcl_install
: lib_install libtclsqlite3.la pkgIndex.tcl
1350 $(INSTALL
) -d
$(DESTDIR
)$(TCLLIBDIR
)
1351 $(LTINSTALL
) libtclsqlite3.la
$(DESTDIR
)$(TCLLIBDIR
)
1352 rm -f
$(DESTDIR
)$(TCLLIBDIR
)/libtclsqlite3.la
$(DESTDIR
)$(TCLLIBDIR
)/libtclsqlite3.a
1353 $(INSTALL
) -m
0644 pkgIndex.tcl
$(DESTDIR
)$(TCLLIBDIR
)
1356 rm -f
*.lo
*.la
*.o sqlite3
$(TEXE
) libsqlite3.la
1357 rm -f sqlite3.h opcodes.
*
1359 rm -f lemon
$(BEXE
) lempar.c parse.
* sqlite
*.
tar.gz
1360 rm -f mkkeywordhash
$(BEXE
) keywordhash.h
1361 rm -f
*.da
*.bb
*.bbg gmon.out
1362 rm -rf tsrc .target_source
1363 rm -f tclsqlite3
$(TEXE
)
1364 rm -f testfixture
$(TEXE
) test.db
1365 rm -f LogEst
$(TEXE
) fts3view
$(TEXE
) rollback-test
$(TEXE
) showdb
$(TEXE
)
1366 rm -f showjournal
$(TEXE
) showstat4
$(TEXE
) showwal
$(TEXE
) speedtest1
$(TEXE
)
1367 rm -f wordcount
$(TEXE
) changeset
$(TEXE
)
1368 rm -f sqlite3.dll sqlite3.lib sqlite3.exp sqlite3.def
1371 rm -f
shell.c sqlite3ext.h
1372 rm -f sqlite3_analyzer
$(TEXE
) sqlite3_analyzer.c
1373 rm -f sqlite-
*-output.vsix
1374 rm -f mptester mptester.exe
1376 rm -f srcck1 srcck1.exe
1377 rm -f fuzzershell fuzzershell.exe
1378 rm -f fuzzcheck fuzzcheck.exe
1379 rm -f sqldiff sqldiff.exe
1380 rm -f dbhash dbhash.exe
1381 rm -f fts5.
* fts5parse.
*
1384 rm -f config.h config.log config.status libtool Makefile sqlite3.
pc
1391 REAL_LIBOBJ
= $(LIBOBJ
:%.lo
=.libs
/%.o
)
1393 $(REAL_LIBOBJ
): $(LIBOBJ
)
1395 sqlite3.def
: $(REAL_LIBOBJ
)
1396 echo
'EXPORTS' >sqlite3.def
1397 nm
$(REAL_LIBOBJ
) | grep
' T ' | grep
' _sqlite3_' \
1398 | sed
's/^.* _//' >>sqlite3.def
1400 sqlite3.dll
: $(REAL_LIBOBJ
) sqlite3.def
1401 $(TCC
) -shared
-o
$@ sqlite3.def \
1402 -Wl
,"--strip-all" $(REAL_LIBOBJ
)