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 # 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.)
29 TCC
= @CC@ @CPPFLAGS@ @CFLAGS@
-I.
-I
${TOP}/src
-I
${TOP}/ext
/rtree
31 # Define this for the autoconf-based build, so that the code knows it can
32 # include the generated config.h
34 TCC
+= -D_HAVE_SQLITE_CONFIG_H
36 # Define -DNDEBUG to compile without debugging (i.e., for production usage)
37 # Omitting the define will cause extra debugging code to be inserted and
38 # includes extra comments when "EXPLAIN stmt" is used.
40 TCC
+= @TARGET_DEBUG@ @XTHREADCONNECT@
42 # Compiler options needed for programs that use the TCL library.
44 TCC
+= @TCL_INCLUDE_SPEC@
46 # The library that programs using TCL must link against.
48 LIBTCL
= @TCL_LIB_SPEC@ @TCL_LIBS@
50 # Compiler options needed for programs that use the readline() library.
52 READLINE_FLAGS
= -DHAVE_READLINE
=@TARGET_HAVE_READLINE@ @TARGET_READLINE_INC@
54 # The library that programs using readline() must link against.
56 LIBREADLINE
= @TARGET_READLINE_LIBS@
58 # Should the database engine be compiled threadsafe
60 TCC
+= -DSQLITE_THREADSAFE
=@SQLITE_THREADSAFE@
62 # Any target libraries which libsqlite must be linked against
66 # Flags controlling use of the in memory btree implementation
68 # SQLITE_TEMP_STORE is 0 to force temporary tables to be in a file, 1 to
69 # default to file, 2 to default to memory, and 3 to force temporary
70 # tables to always be in memory.
72 TEMP_STORE
= -DSQLITE_TEMP_STORE
=@TEMP_STORE@
74 # Enable/disable loadable extensions, and other optional features
75 # based on configuration. (-DSQLITE_OMIT*, -DSQLITE_ENABLE*).
76 # The same set of OMIT and ENABLE flags should be passed to the
77 # LEMON parser generator and the mkkeywordhash tool as well.
78 OPT_FEATURE_FLAGS
= @OPT_FEATURE_FLAGS@
80 TCC
+= $(OPT_FEATURE_FLAGS
)
82 # Add in any optional parameters specified on the make commane line
83 # ie. make "OPTS=-DSQLITE_ENABLE_FOO=1 -DSQLITE_OMIT_FOO=1".
86 # Version numbers and release number for the SQLite being compiled.
89 VERSION_NUMBER
= @VERSION_NUMBER@
95 TEXE
= @TARGET_EXEEXT@
97 # The following variable is "1" if the configure script was able to locate
98 # the tclConfig.sh file. It is an empty string otherwise. When this
99 # variable is "1", the TCL extension library (libtclsqlite3.so) is built
102 HAVE_TCL
= @HAVE_TCL@
104 # This is the command to use for tclsh - normally just "tclsh", but we may
105 # know the specific version we want to use
107 TCLSH_CMD
= @TCLSH_CMD@
109 # Where do we want to install the tcl plugin
111 TCLLIBDIR
= @TCLLIBDIR@
113 # The suffix used on shared libraries. Ex: ".dll", ".so", ".dylib"
115 SHLIB_SUFFIX
= @TCL_SHLIB_SUFFIX@
117 # If gcov support was enabled by the configure script, add the appropriate
118 # flags here. It's not always as easy as just having the user add the right
119 # CFLAGS / LDFLAGS, because libtool wants to use CFLAGS when linking, which
120 # causes build errors with -fprofile-arcs -ftest-coverage with some GCCs.
121 # Supposedly GCC does the right thing if you use --coverage, but in
122 # practice it still fails. See:
124 # http://www.mail-archive.com/debian-gcc@lists.debian.org/msg26197.html
128 GCOV_CFLAGS1
= -DSQLITE_COVERAGE_TEST
=1 -fprofile-arcs
-ftest-coverage
129 GCOV_LDFLAGS1
= -lgcov
130 USE_GCOV
= @USE_GCOV@
131 LTCOMPILE_EXTRAS
+= $(GCOV_CFLAGS
$(USE_GCOV
))
132 LTLINK_EXTRAS
+= $(GCOV_LDFLAGS
$(USE_GCOV
))
135 # The directory into which to store package information for
137 # Some standard variables and programs
140 exec_prefix = @
exec_prefix@
142 pkgconfigdir
= $(libdir)/pkgconfig
144 includedir = @
includedir@
147 ALLOWRELEASE
= @ALLOWRELEASE@
149 # libtool compile/link/install
150 LTCOMPILE
= $(LIBTOOL
) --mode
=compile
--tag
=CC
$(TCC
) $(LTCOMPILE_EXTRAS
)
151 LTLINK
= $(LIBTOOL
) --mode
=link
$(TCC
) $(LTCOMPILE_EXTRAS
) @LDFLAGS@
$(LTLINK_EXTRAS
)
152 LTINSTALL
= $(LIBTOOL
) --mode
=install $(INSTALL
)
154 # nawk compatible awk.
157 # You should not have to change anything below this line
158 ###############################################################################
160 USE_AMALGAMATION
= @USE_AMALGAMATION@
162 # Object files for the SQLite library (non-amalgamation).
164 LIBOBJS0
= alter.lo analyze.lo attach.lo auth.lo \
165 backup.lo bitvec.lo btmutex.lo btree.lo build.lo \
166 callback.lo complete.lo ctime.lo date.lo delete.lo \
167 expr.lo fault.lo fkey.lo \
168 fts3.lo fts3_aux.lo fts3_expr.lo fts3_hash.lo fts3_icu.lo fts3_porter.lo \
169 fts3_snippet.lo fts3_tokenizer.lo fts3_tokenizer1.lo fts3_write.lo \
170 func.lo global.lo hash.lo \
171 icu.lo insert.lo journal.lo legacy.lo loadext.lo \
172 main.lo malloc.lo mem0.lo mem1.lo mem2.lo mem3.lo mem5.lo \
174 mutex.lo mutex_noop.lo mutex_os2.lo mutex_unix.lo mutex_w32.lo \
175 notify.lo opcodes.lo os.lo os_os2.lo os_unix.lo os_win.lo \
176 pager.lo parse.lo pcache.lo pcache1.lo pragma.lo prepare.lo printf.lo \
177 random.lo resolve.lo rowset.lo rtree.lo select.lo status.lo \
178 table.lo tokenize.lo trigger.lo \
179 update.lo util.lo vacuum.lo \
180 vdbe.lo vdbeapi.lo vdbeaux.lo vdbeblob.lo vdbemem.lo vdbetrace.lo \
181 wal.lo walker.lo where.lo utf.lo vtab.lo
183 # Object files for the amalgamation.
185 LIBOBJS1
= sqlite3.lo
187 # Determine the real value of LIBOBJ based on the 'configure' script
189 LIBOBJ
= $(LIBOBJS
$(USE_AMALGAMATION
))
192 # All of the source code files.
196 $(TOP
)/src
/analyze.c \
197 $(TOP
)/src
/attach.c \
199 $(TOP
)/src
/backup.c \
200 $(TOP
)/src
/bitvec.c \
201 $(TOP
)/src
/btmutex.c \
204 $(TOP
)/src
/btreeInt.h \
206 $(TOP
)/src
/callback.c \
207 $(TOP
)/src
/complete.c \
210 $(TOP
)/src
/delete.c \
215 $(TOP
)/src
/global.c \
218 $(TOP
)/src
/hwtime.h \
219 $(TOP
)/src
/insert.c \
220 $(TOP
)/src
/journal.c \
221 $(TOP
)/src
/legacy.c \
222 $(TOP
)/src
/loadext.c \
224 $(TOP
)/src
/malloc.c \
230 $(TOP
)/src
/memjournal.c \
233 $(TOP
)/src
/mutex_noop.c \
234 $(TOP
)/src
/mutex_os2.c \
235 $(TOP
)/src
/mutex_unix.c \
236 $(TOP
)/src
/mutex_w32.c \
237 $(TOP
)/src
/notify.c \
240 $(TOP
)/src
/os_common.h \
241 $(TOP
)/src
/os_os2.c \
242 $(TOP
)/src
/os_unix.c \
243 $(TOP
)/src
/os_win.c \
247 $(TOP
)/src
/pcache.c \
248 $(TOP
)/src
/pcache.h \
249 $(TOP
)/src
/pcache1.c \
250 $(TOP
)/src
/pragma.c \
251 $(TOP
)/src
/prepare.c \
252 $(TOP
)/src
/printf.c \
253 $(TOP
)/src
/random.c \
254 $(TOP
)/src
/recover.c \
255 $(TOP
)/src
/resolve.c \
256 $(TOP
)/src
/rowset.c \
257 $(TOP
)/src
/select.c \
258 $(TOP
)/src
/status.c \
260 $(TOP
)/src
/sqlite.h.in \
261 $(TOP
)/src
/sqlite3ext.h \
262 $(TOP
)/src
/sqliteInt.h \
263 $(TOP
)/src
/sqliteLimit.h \
265 $(TOP
)/src
/tclsqlite.c \
266 $(TOP
)/src
/tokenize.c \
267 $(TOP
)/src
/trigger.c \
269 $(TOP
)/src
/update.c \
271 $(TOP
)/src
/vacuum.c \
274 $(TOP
)/src
/vdbeapi.c \
275 $(TOP
)/src
/vdbeaux.c \
276 $(TOP
)/src
/vdbeblob.c \
277 $(TOP
)/src
/vdbemem.c \
278 $(TOP
)/src
/vdbetrace.c \
279 $(TOP
)/src
/vdbeInt.h \
283 $(TOP
)/src
/walker.c \
286 # Source code for extensions
289 $(TOP
)/ext
/fts1
/fts1.c \
290 $(TOP
)/ext
/fts1
/fts1.h \
291 $(TOP
)/ext
/fts1
/fts1_hash.c \
292 $(TOP
)/ext
/fts1
/fts1_hash.h \
293 $(TOP
)/ext
/fts1
/fts1_porter.c \
294 $(TOP
)/ext
/fts1
/fts1_tokenizer.h \
295 $(TOP
)/ext
/fts1
/fts1_tokenizer1.c
297 $(TOP
)/ext
/fts2
/fts2.c \
298 $(TOP
)/ext
/fts2
/fts2.h \
299 $(TOP
)/ext
/fts2
/fts2_hash.c \
300 $(TOP
)/ext
/fts2
/fts2_hash.h \
301 $(TOP
)/ext
/fts2
/fts2_icu.c \
302 $(TOP
)/ext
/fts2
/fts2_porter.c \
303 $(TOP
)/ext
/fts2
/fts2_tokenizer.h \
304 $(TOP
)/ext
/fts2
/fts2_tokenizer.c \
305 $(TOP
)/ext
/fts2
/fts2_tokenizer1.c
307 $(TOP
)/ext
/fts3
/fts3.c \
308 $(TOP
)/ext
/fts3
/fts3.h \
309 $(TOP
)/ext
/fts3
/fts3Int.h \
310 $(TOP
)/ext
/fts3
/fts3_aux.c \
311 $(TOP
)/ext
/fts3
/fts3_expr.c \
312 $(TOP
)/ext
/fts3
/fts3_hash.c \
313 $(TOP
)/ext
/fts3
/fts3_hash.h \
314 $(TOP
)/ext
/fts3
/fts3_icu.c \
315 $(TOP
)/ext
/fts3
/fts3_porter.c \
316 $(TOP
)/ext
/fts3
/fts3_snippet.c \
317 $(TOP
)/ext
/fts3
/fts3_tokenizer.h \
318 $(TOP
)/ext
/fts3
/fts3_tokenizer.c \
319 $(TOP
)/ext
/fts3
/fts3_tokenizer1.c \
320 $(TOP
)/ext
/fts3
/fts3_write.c
322 $(TOP
)/ext
/icu
/sqliteicu.h \
325 $(TOP
)/ext
/rtree
/rtree.h \
326 $(TOP
)/ext
/rtree
/rtree.c
329 # Generated source code files
340 # Source code to the test files.
352 $(TOP
)/src
/test_autoext.c \
353 $(TOP
)/src
/test_async.c \
354 $(TOP
)/src
/test_backup.c \
355 $(TOP
)/src
/test_btree.c \
356 $(TOP
)/src
/test_config.c \
357 $(TOP
)/src
/test_demovfs.c \
358 $(TOP
)/src
/test_devsym.c \
359 $(TOP
)/src
/test_func.c \
360 $(TOP
)/src
/test_fuzzer.c \
361 $(TOP
)/src
/test_hexio.c \
362 $(TOP
)/src
/test_init.c \
363 $(TOP
)/src
/test_intarray.c \
364 $(TOP
)/src
/test_journal.c \
365 $(TOP
)/src
/test_malloc.c \
366 $(TOP
)/src
/test_multiplex.c \
367 $(TOP
)/src
/test_mutex.c \
368 $(TOP
)/src
/test_onefile.c \
369 $(TOP
)/src
/test_osinst.c \
370 $(TOP
)/src
/test_pcache.c \
371 $(TOP
)/src
/test_quota.c \
372 $(TOP
)/src
/test_rtree.c \
373 $(TOP
)/src
/test_schema.c \
374 $(TOP
)/src
/test_server.c \
375 $(TOP
)/src
/test_superlock.c \
376 $(TOP
)/src
/test_syscall.c \
377 $(TOP
)/src
/test_stat.c \
378 $(TOP
)/src
/test_tclvar.c \
379 $(TOP
)/src
/test_thread.c \
380 $(TOP
)/src
/test_vfs.c \
381 $(TOP
)/src
/test_wholenumber.c \
382 $(TOP
)/src
/test_wsd.c
384 # Source code to the library files needed by the test fixture
387 $(TOP
)/src
/attach.c \
388 $(TOP
)/src
/backup.c \
389 $(TOP
)/src
/bitvec.c \
396 $(TOP
)/src
/insert.c \
400 $(TOP
)/src
/os_os2.c \
401 $(TOP
)/src
/os_unix.c \
402 $(TOP
)/src
/os_win.c \
404 $(TOP
)/src
/pragma.c \
405 $(TOP
)/src
/prepare.c \
406 $(TOP
)/src
/printf.c \
407 $(TOP
)/src
/random.c \
408 $(TOP
)/src
/pcache.c \
409 $(TOP
)/src
/pcache1.c \
410 $(TOP
)/src
/select.c \
411 $(TOP
)/src
/tokenize.c \
414 $(TOP
)/src
/vdbeapi.c \
415 $(TOP
)/src
/vdbeaux.c \
417 $(TOP
)/src
/vdbemem.c \
418 $(TOP
)/src
/vdbetrace.c \
421 $(TOP
)/ext
/fts3
/fts3.c \
422 $(TOP
)/ext
/fts3
/fts3_aux.c \
423 $(TOP
)/ext
/fts3
/fts3_expr.c \
424 $(TOP
)/ext
/fts3
/fts3_tokenizer.c \
425 $(TOP
)/ext
/fts3
/fts3_write.c \
426 $(TOP
)/ext
/async
/sqlite3async.c
428 # Header files used by all library source files.
432 $(TOP
)/src
/btreeInt.h \
434 $(TOP
)/src
/hwtime.h \
439 $(TOP
)/src
/os_common.h \
441 $(TOP
)/src
/pcache.h \
444 $(TOP
)/src
/sqlite3ext.h \
445 $(TOP
)/src
/sqliteInt.h \
446 $(TOP
)/src
/sqliteLimit.h \
448 $(TOP
)/src
/vdbeInt.h \
451 # Header files used by extensions
454 $(TOP
)/ext
/fts1
/fts1.h \
455 $(TOP
)/ext
/fts1
/fts1_hash.h \
456 $(TOP
)/ext
/fts1
/fts1_tokenizer.h
458 $(TOP
)/ext
/fts2
/fts2.h \
459 $(TOP
)/ext
/fts2
/fts2_hash.h \
460 $(TOP
)/ext
/fts2
/fts2_tokenizer.h
462 $(TOP
)/ext
/fts3
/fts3.h \
463 $(TOP
)/ext
/fts3
/fts3Int.h \
464 $(TOP
)/ext
/fts3
/fts3_hash.h \
465 $(TOP
)/ext
/fts3
/fts3_tokenizer.h
467 $(TOP
)/ext
/rtree
/rtree.h
469 $(TOP
)/ext
/icu
/sqliteicu.h
471 $(TOP
)/ext
/rtree
/sqlite3rtree.h
473 # This is the default Makefile target. The objects listed here
474 # are what get build when you type just "make" with no arguments.
476 all: sqlite3.h libsqlite3.la sqlite3
$(TEXE
) $(HAVE_TCL
:1=libtclsqlite3.la
)
478 Makefile
: $(TOP
)/Makefile.in
481 sqlite3.
pc: $(TOP
)/sqlite3.
pc.in
484 libsqlite3.la
: $(LIBOBJ
)
485 $(LTLINK
) -o
$@
$(LIBOBJ
) $(TLIBS
) \
486 ${ALLOWRELEASE} -rpath
"$(libdir)" -version-info
"8:6:8"
488 libtclsqlite3.la
: tclsqlite.lo libsqlite3.la
489 $(LTLINK
) -o
$@ tclsqlite.lo \
490 libsqlite3.la @TCL_STUB_LIB_SPEC@
$(TLIBS
) \
491 -rpath
"$(TCLLIBDIR)" \
492 -version-info
"8:6:8" \
495 sqlite3
$(TEXE
): $(TOP
)/src
/shell.c libsqlite3.la sqlite3.h
496 $(LTLINK
) $(READLINE_FLAGS
) \
497 -o
$@
$(TOP
)/src
/shell.c libsqlite3.la \
498 $(LIBREADLINE
) $(TLIBS
) -rpath
"$(libdir)"
500 # This target creates a directory named "tsrc" and fills it with
501 # copies of all of the C source code and header files needed to
502 # build on the target system. Some of the C source code and header
503 # files are automatically generated. This target takes care of
504 # all that automatic generation.
506 .target_source
: $(SRC
) $(TOP
)/tool
/vdbe-compress.tcl
510 rm tsrc
/sqlite.h.in tsrc
/parse.y
511 $(TCLSH_CMD
) $(TOP
)/tool
/vdbe-compress.tcl
<tsrc
/vdbe.c
>vdbe.new
512 mv vdbe.new tsrc
/vdbe.c
515 sqlite3.c
: .target_source
$(TOP
)/tool
/mksqlite3c.tcl
516 $(TCLSH_CMD
) $(TOP
)/tool
/mksqlite3c.tcl
518 # Rule to build the amalgamation
520 sqlite3.lo
: sqlite3.c
521 $(LTCOMPILE
) $(TEMP_STORE
) -c sqlite3.c
523 # Rules to build the LEMON compiler generator
525 lemon
$(BEXE
): $(TOP
)/tool
/lemon.c
$(TOP
)/src
/lempar.c
526 $(BCC
) -o
$@
$(TOP
)/tool
/lemon.c
527 cp
$(TOP
)/src
/lempar.c .
529 # Rules to build individual *.o files from generated *.c files. This
535 parse.lo
: parse.c
$(HDR
)
536 $(LTCOMPILE
) $(TEMP_STORE
) -c parse.c
538 opcodes.lo
: opcodes.c
539 $(LTCOMPILE
) $(TEMP_STORE
) -c opcodes.c
541 # Rules to build individual *.o files from files in the src directory.
543 alter.lo
: $(TOP
)/src
/alter.c
$(HDR
)
544 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/alter.c
546 analyze.lo
: $(TOP
)/src
/analyze.c
$(HDR
)
547 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/analyze.c
549 attach.lo
: $(TOP
)/src
/attach.c
$(HDR
)
550 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/attach.c
552 auth.lo
: $(TOP
)/src
/auth.c
$(HDR
)
553 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/auth.c
555 backup.lo
: $(TOP
)/src
/backup.c
$(HDR
)
556 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/backup.c
558 bitvec.lo
: $(TOP
)/src
/bitvec.c
$(HDR
)
559 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/bitvec.c
561 btmutex.lo
: $(TOP
)/src
/btmutex.c
$(HDR
)
562 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/btmutex.c
564 btree.lo
: $(TOP
)/src
/btree.c
$(HDR
) $(TOP
)/src
/pager.h
565 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/btree.c
567 build.lo
: $(TOP
)/src
/build.c
$(HDR
)
568 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/build.c
570 callback.lo
: $(TOP
)/src
/callback.c
$(HDR
)
571 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/callback.c
573 complete.lo
: $(TOP
)/src
/complete.c
$(HDR
)
574 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/complete.c
576 ctime.lo
: $(TOP
)/src
/ctime.c
$(HDR
)
577 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/ctime.c
579 date.lo
: $(TOP
)/src
/date.c
$(HDR
)
580 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/date.c
582 delete.lo
: $(TOP
)/src
/delete.c
$(HDR
)
583 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/delete.c
585 expr.lo
: $(TOP
)/src
/expr.c
$(HDR
)
586 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/expr.c
588 fault.lo
: $(TOP
)/src
/fault.c
$(HDR
)
589 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/fault.c
591 fkey.lo
: $(TOP
)/src
/fkey.c
$(HDR
)
592 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/fkey.c
594 func.lo
: $(TOP
)/src
/func.c
$(HDR
)
595 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/func.c
597 global.lo
: $(TOP
)/src
/global.c
$(HDR
)
598 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/global.c
600 hash.lo
: $(TOP
)/src
/hash.c
$(HDR
)
601 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/hash.c
603 insert.lo
: $(TOP
)/src
/insert.c
$(HDR
)
604 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/insert.c
606 journal.lo
: $(TOP
)/src
/journal.c
$(HDR
)
607 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/journal.c
609 legacy.lo
: $(TOP
)/src
/legacy.c
$(HDR
)
610 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/legacy.c
612 loadext.lo
: $(TOP
)/src
/loadext.c
$(HDR
)
613 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/loadext.c
615 main.lo
: $(TOP
)/src
/main.c
$(HDR
)
616 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/main.c
618 malloc.lo
: $(TOP
)/src
/malloc.c
$(HDR
)
619 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/malloc.c
621 mem0.lo
: $(TOP
)/src
/mem0.c
$(HDR
)
622 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem0.c
624 mem1.lo
: $(TOP
)/src
/mem1.c
$(HDR
)
625 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem1.c
627 mem2.lo
: $(TOP
)/src
/mem2.c
$(HDR
)
628 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem2.c
630 mem3.lo
: $(TOP
)/src
/mem3.c
$(HDR
)
631 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem3.c
633 mem5.lo
: $(TOP
)/src
/mem5.c
$(HDR
)
634 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem5.c
636 memjournal.lo
: $(TOP
)/src
/memjournal.c
$(HDR
)
637 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/memjournal.c
639 mutex.lo
: $(TOP
)/src
/mutex.c
$(HDR
)
640 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex.c
642 mutex_noop.lo
: $(TOP
)/src
/mutex_noop.c
$(HDR
)
643 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_noop.c
645 mutex_os2.lo
: $(TOP
)/src
/mutex_os2.c
$(HDR
)
646 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_os2.c
648 mutex_unix.lo
: $(TOP
)/src
/mutex_unix.c
$(HDR
)
649 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_unix.c
651 mutex_w32.lo
: $(TOP
)/src
/mutex_w32.c
$(HDR
)
652 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_w32.c
654 notify.lo
: $(TOP
)/src
/notify.c
$(HDR
)
655 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/notify.c
657 pager.lo
: $(TOP
)/src
/pager.c
$(HDR
) $(TOP
)/src
/pager.h
658 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pager.c
660 pcache.lo
: $(TOP
)/src
/pcache.c
$(HDR
) $(TOP
)/src
/pcache.h
661 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pcache.c
663 pcache1.lo
: $(TOP
)/src
/pcache1.c
$(HDR
) $(TOP
)/src
/pcache.h
664 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pcache1.c
666 os.lo
: $(TOP
)/src
/os.c
$(HDR
)
667 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os.c
669 os_unix.lo
: $(TOP
)/src
/os_unix.c
$(HDR
)
670 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os_unix.c
672 os_win.lo
: $(TOP
)/src
/os_win.c
$(HDR
)
673 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os_win.c
675 os_os2.lo
: $(TOP
)/src
/os_os2.c
$(HDR
)
676 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os_os2.c
678 pragma.lo
: $(TOP
)/src
/pragma.c
$(HDR
)
679 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pragma.c
681 prepare.lo
: $(TOP
)/src
/prepare.c
$(HDR
)
682 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/prepare.c
684 printf.lo
: $(TOP
)/src
/printf.c
$(HDR
)
685 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/printf.c
687 random.lo
: $(TOP
)/src
/random.c
$(HDR
)
688 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/random.c
690 resolve.lo
: $(TOP
)/src
/resolve.c
$(HDR
)
691 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/resolve.c
693 rowset.lo
: $(TOP
)/src
/rowset.c
$(HDR
)
694 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/rowset.c
696 select.lo
: $(TOP
)/src
/select.c
$(HDR
)
697 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/select.c
699 status.lo
: $(TOP
)/src
/status.c
$(HDR
)
700 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/status.c
702 table.lo
: $(TOP
)/src
/table.c
$(HDR
)
703 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/table.c
705 tokenize.lo
: $(TOP
)/src
/tokenize.c keywordhash.h
$(HDR
)
706 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/tokenize.c
708 trigger.lo
: $(TOP
)/src
/trigger.c
$(HDR
)
709 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/trigger.c
711 update.lo
: $(TOP
)/src
/update.c
$(HDR
)
712 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/update.c
714 utf.lo
: $(TOP
)/src
/utf.c
$(HDR
)
715 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/utf.c
717 util.lo
: $(TOP
)/src
/util.c
$(HDR
)
718 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/util.c
720 vacuum.lo
: $(TOP
)/src
/vacuum.c
$(HDR
)
721 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vacuum.c
723 vdbe.lo
: $(TOP
)/src
/vdbe.c
$(HDR
)
724 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbe.c
726 vdbeapi.lo
: $(TOP
)/src
/vdbeapi.c
$(HDR
)
727 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeapi.c
729 vdbeaux.lo
: $(TOP
)/src
/vdbeaux.c
$(HDR
)
730 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeaux.c
732 vdbeblob.lo
: $(TOP
)/src
/vdbeblob.c
$(HDR
)
733 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeblob.c
735 vdbemem.lo
: $(TOP
)/src
/vdbemem.c
$(HDR
)
736 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbemem.c
738 vdbetrace.lo
: $(TOP
)/src
/vdbetrace.c
$(HDR
)
739 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbetrace.c
741 vtab.lo
: $(TOP
)/src
/vtab.c
$(HDR
)
742 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vtab.c
744 wal.lo
: $(TOP
)/src
/wal.c
$(HDR
)
745 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/wal.c
747 walker.lo
: $(TOP
)/src
/walker.c
$(HDR
)
748 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/walker.c
750 where.lo
: $(TOP
)/src
/where.c
$(HDR
)
751 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/where.c
753 tclsqlite.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
754 $(LTCOMPILE
) -DUSE_TCL_STUBS
=1 -c
$(TOP
)/src
/tclsqlite.c
756 tclsqlite-shell.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
757 $(LTCOMPILE
) -DTCLSH
=1 -o
$@
-c
$(TOP
)/src
/tclsqlite.c
759 tclsqlite-stubs.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
760 $(LTCOMPILE
) -DUSE_TCL_STUBS
=1 -o
$@
-c
$(TOP
)/src
/tclsqlite.c
762 tclsqlite3
$(TEXE
): tclsqlite-shell.lo libsqlite3.la
763 $(LTLINK
) -o
$@ tclsqlite-shell.lo \
764 libsqlite3.la
$(LIBTCL
)
766 # Rules to build opcodes.c and opcodes.h
768 opcodes.c
: opcodes.h
$(TOP
)/mkopcodec.awk
769 sort -n
-b
-k
3 opcodes.h |
$(NAWK
) -f
$(TOP
)/mkopcodec.awk
>opcodes.c
771 opcodes.h
: parse.h
$(TOP
)/src
/vdbe.c
$(TOP
)/mkopcodeh.awk
772 cat parse.h
$(TOP
)/src
/vdbe.c |
$(NAWK
) -f
$(TOP
)/mkopcodeh.awk
>opcodes.h
774 # Rules to build parse.c and parse.h - the outputs of lemon.
778 parse.c
: $(TOP
)/src
/parse.y lemon
$(BEXE
) $(TOP
)/addopcodes.awk
779 cp
$(TOP
)/src
/parse.y .
781 .
/lemon
$(BEXE
) $(OPT_FEATURE_FLAGS
) $(OPTS
) parse.y
782 mv parse.h parse.h.temp
783 $(NAWK
) -f
$(TOP
)/addopcodes.awk parse.h.temp
>parse.h
785 sqlite3.h
: $(TOP
)/src
/sqlite.h.in
$(TOP
)/manifest.uuid
$(TOP
)/VERSION
786 tclsh
$(TOP
)/tool
/mksqlite3h.tcl
$(TOP
) >sqlite3.h
788 keywordhash.h
: $(TOP
)/tool
/mkkeywordhash.c
789 $(BCC
) -o mkkeywordhash
$(BEXE
) $(OPT_FEATURE_FLAGS
) $(OPTS
) $(TOP
)/tool
/mkkeywordhash.c
790 .
/mkkeywordhash
$(BEXE
) >keywordhash.h
794 # Rules to build the extension objects.
796 icu.lo
: $(TOP
)/ext
/icu
/icu.c
$(HDR
) $(EXTHDR
)
797 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/icu
/icu.c
799 fts2.lo
: $(TOP
)/ext
/fts2
/fts2.c
$(HDR
) $(EXTHDR
)
800 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2.c
802 fts2_hash.lo
: $(TOP
)/ext
/fts2
/fts2_hash.c
$(HDR
) $(EXTHDR
)
803 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_hash.c
805 fts2_icu.lo
: $(TOP
)/ext
/fts2
/fts2_icu.c
$(HDR
) $(EXTHDR
)
806 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_icu.c
808 fts2_porter.lo
: $(TOP
)/ext
/fts2
/fts2_porter.c
$(HDR
) $(EXTHDR
)
809 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_porter.c
811 fts2_tokenizer.lo
: $(TOP
)/ext
/fts2
/fts2_tokenizer.c
$(HDR
) $(EXTHDR
)
812 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_tokenizer.c
814 fts2_tokenizer1.lo
: $(TOP
)/ext
/fts2
/fts2_tokenizer1.c
$(HDR
) $(EXTHDR
)
815 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_tokenizer1.c
817 fts3.lo
: $(TOP
)/ext
/fts3
/fts3.c
$(HDR
) $(EXTHDR
)
818 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3.c
820 fts3_aux.lo
: $(TOP
)/ext
/fts3
/fts3_aux.c
$(HDR
) $(EXTHDR
)
821 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_aux.c
823 fts3_expr.lo
: $(TOP
)/ext
/fts3
/fts3_expr.c
$(HDR
) $(EXTHDR
)
824 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_expr.c
826 fts3_hash.lo
: $(TOP
)/ext
/fts3
/fts3_hash.c
$(HDR
) $(EXTHDR
)
827 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_hash.c
829 fts3_icu.lo
: $(TOP
)/ext
/fts3
/fts3_icu.c
$(HDR
) $(EXTHDR
)
830 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_icu.c
832 fts3_snippet.lo
: $(TOP
)/ext
/fts3
/fts3_snippet.c
$(HDR
) $(EXTHDR
)
833 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_snippet.c
835 fts3_porter.lo
: $(TOP
)/ext
/fts3
/fts3_porter.c
$(HDR
) $(EXTHDR
)
836 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_porter.c
838 fts3_tokenizer.lo
: $(TOP
)/ext
/fts3
/fts3_tokenizer.c
$(HDR
) $(EXTHDR
)
839 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_tokenizer.c
841 fts3_tokenizer1.lo
: $(TOP
)/ext
/fts3
/fts3_tokenizer1.c
$(HDR
) $(EXTHDR
)
842 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_tokenizer1.c
844 fts3_write.lo
: $(TOP
)/ext
/fts3
/fts3_write.c
$(HDR
) $(EXTHDR
)
845 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_write.c
847 rtree.lo
: $(TOP
)/ext
/rtree
/rtree.c
$(HDR
) $(EXTHDR
)
848 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/rtree
/rtree.c
851 # Rules to build the 'testfixture' application.
853 # If using the amalgamation, use sqlite3.c directly to build the test
854 # fixture. Otherwise link against libsqlite3.la. (This distinction is
855 # necessary because the test fixture requires non-API symbols which are
856 # hidden when the library is built via the amalgamation).
858 TESTFIXTURE_FLAGS
= -DTCLSH
=1 -DSQLITE_TEST
=1 -DSQLITE_CRASH_TEST
=1
859 TESTFIXTURE_FLAGS
+= -DSQLITE_SERVER
=1 -DSQLITE_PRIVATE
="" -DSQLITE_CORE
861 TESTFIXTURE_SRC0
= $(TESTSRC2
) libsqlite3.la
862 TESTFIXTURE_SRC1
= sqlite3.c
863 TESTFIXTURE_SRC
= $(TESTSRC
) $(TOP
)/src
/tclsqlite.c
$(TESTFIXTURE_SRC
$(USE_AMALGAMATION
))
865 testfixture
$(TEXE
): $(TESTFIXTURE_SRC
)
866 $(LTLINK
) -DSQLITE_NO_SYNC
=1 $(TEMP_STORE
) $(TESTFIXTURE_FLAGS
) \
867 -o
$@
$(TESTFIXTURE_SRC
) $(LIBTCL
) $(TLIBS
)
870 fulltest
: testfixture
$(TEXE
) sqlite3
$(TEXE
)
871 .
/testfixture
$(TEXE
) $(TOP
)/test/all.
test
873 soaktest
: testfixture
$(TEXE
) sqlite3
$(TEXE
)
874 .
/testfixture
$(TEXE
) $(TOP
)/test/all.
test -soak
=1
876 test: testfixture
$(TEXE
) sqlite3
$(TEXE
)
877 .
/testfixture
$(TEXE
) $(TOP
)/test/veryquick.
test
879 sqlite3_analyzer
$(TEXE
): $(TESTFIXTURE_SRC
) $(TOP
)/tool
/spaceanal.tcl
886 $(TOP
)/tool
/spaceanal.tcl
>spaceanal_tcl.h
887 $(LTLINK
) -DTCLSH
=2 -DSQLITE_TEST
=1 -DSQLITE_CRASH_TEST
=1 \
888 -DSQLITE_SERVER
=1 -DSQLITE_PRIVATE
="" -DSQLITE_CORE \
889 $(TEMP_STORE
) -o
$@
$(TESTFIXTURE_SRC
) $(LIBTCL
) $(TLIBS
)
892 # Standard install and cleanup targets
894 lib_install
: libsqlite3.la
895 $(INSTALL
) -d
$(DESTDIR
)$(libdir)
896 $(LTINSTALL
) libsqlite3.la
$(DESTDIR
)$(libdir)
898 install: sqlite3
$(BEXE
) lib_install sqlite3.h sqlite3.
pc ${HAVE_TCL
:1=tcl_install
}
899 $(INSTALL
) -d
$(DESTDIR
)$(bindir)
900 $(LTINSTALL
) sqlite3
$(BEXE
) $(DESTDIR
)$(bindir)
901 $(INSTALL
) -d
$(DESTDIR
)$(includedir)
902 $(INSTALL
) -m
0644 sqlite3.h
$(DESTDIR
)$(includedir)
903 $(INSTALL
) -m
0644 $(TOP
)/src
/sqlite3ext.h
$(DESTDIR
)$(includedir)
904 $(INSTALL
) -d
$(DESTDIR
)$(pkgconfigdir
)
905 $(INSTALL
) -m
0644 sqlite3.
pc $(DESTDIR
)$(pkgconfigdir
)
908 echo
'package ifneeded sqlite3 $(RELEASE) [list load $(TCLLIBDIR)/libtclsqlite3.so sqlite3]' > $@
909 tcl_install
: lib_install libtclsqlite3.la pkgIndex.tcl
910 $(INSTALL
) -d
$(DESTDIR
)$(TCLLIBDIR
)
911 $(LTINSTALL
) libtclsqlite3.la
$(DESTDIR
)$(TCLLIBDIR
)
912 rm -f
$(DESTDIR
)$(TCLLIBDIR
)/libtclsqlite3.la
$(DESTDIR
)$(TCLLIBDIR
)/libtclsqlite3.a
913 $(INSTALL
) -m
0644 pkgIndex.tcl
$(DESTDIR
)$(TCLLIBDIR
)
916 rm -f
*.lo
*.la
*.o sqlite3
$(TEXE
) libsqlite3.la
917 rm -f sqlite3.h opcodes.
*
919 rm -f lemon
$(BEXE
) lempar.c parse.
* sqlite
*.
tar.gz
920 rm -f mkkeywordhash
$(BEXE
) keywordhash.h
922 rm -f
*.da
*.bb
*.bbg gmon.out
923 rm -rf tsrc .target_source
924 rm -f testfixture
$(TEXE
) test.db
925 rm -f sqlite3.dll sqlite3.lib sqlite3.def
929 rm -f config.log config.status libtool Makefile sqlite3.
pc
936 REAL_LIBOBJ
= $(LIBOBJ
:%.lo
=.libs
/%.o
)
938 $(REAL_LIBOBJ
): $(LIBOBJ
)
940 sqlite3.def
: $(REAL_LIBOBJ
)
941 echo
'EXPORTS' >sqlite3.def
942 nm
$(REAL_LIBOBJ
) | grep
' T ' | grep
' _sqlite3_' \
943 | sed
's/^.* _//' >>sqlite3.def
945 sqlite3.dll
: $(REAL_LIBOBJ
) sqlite3.def
946 $(TCC
) -shared
-o
$@ sqlite3.def \
947 -Wl
,"--strip-all" $(REAL_LIBOBJ
)