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
/resolve.c \
255 $(TOP
)/src
/rowset.c \
256 $(TOP
)/src
/select.c \
257 $(TOP
)/src
/status.c \
259 $(TOP
)/src
/sqlite.h.in \
260 $(TOP
)/src
/sqlite3ext.h \
261 $(TOP
)/src
/sqliteInt.h \
262 $(TOP
)/src
/sqliteLimit.h \
264 $(TOP
)/src
/tclsqlite.c \
265 $(TOP
)/src
/tokenize.c \
266 $(TOP
)/src
/trigger.c \
268 $(TOP
)/src
/update.c \
270 $(TOP
)/src
/vacuum.c \
273 $(TOP
)/src
/vdbeapi.c \
274 $(TOP
)/src
/vdbeaux.c \
275 $(TOP
)/src
/vdbeblob.c \
276 $(TOP
)/src
/vdbemem.c \
277 $(TOP
)/src
/vdbetrace.c \
278 $(TOP
)/src
/vdbeInt.h \
282 $(TOP
)/src
/walker.c \
285 # Source code for extensions
288 $(TOP
)/ext
/fts1
/fts1.c \
289 $(TOP
)/ext
/fts1
/fts1.h \
290 $(TOP
)/ext
/fts1
/fts1_hash.c \
291 $(TOP
)/ext
/fts1
/fts1_hash.h \
292 $(TOP
)/ext
/fts1
/fts1_porter.c \
293 $(TOP
)/ext
/fts1
/fts1_tokenizer.h \
294 $(TOP
)/ext
/fts1
/fts1_tokenizer1.c
296 $(TOP
)/ext
/fts2
/fts2.c \
297 $(TOP
)/ext
/fts2
/fts2.h \
298 $(TOP
)/ext
/fts2
/fts2_hash.c \
299 $(TOP
)/ext
/fts2
/fts2_hash.h \
300 $(TOP
)/ext
/fts2
/fts2_icu.c \
301 $(TOP
)/ext
/fts2
/fts2_porter.c \
302 $(TOP
)/ext
/fts2
/fts2_tokenizer.h \
303 $(TOP
)/ext
/fts2
/fts2_tokenizer.c \
304 $(TOP
)/ext
/fts2
/fts2_tokenizer1.c
306 $(TOP
)/ext
/fts3
/fts3.c \
307 $(TOP
)/ext
/fts3
/fts3.h \
308 $(TOP
)/ext
/fts3
/fts3Int.h \
309 $(TOP
)/ext
/fts3
/fts3_aux.c \
310 $(TOP
)/ext
/fts3
/fts3_expr.c \
311 $(TOP
)/ext
/fts3
/fts3_hash.c \
312 $(TOP
)/ext
/fts3
/fts3_hash.h \
313 $(TOP
)/ext
/fts3
/fts3_icu.c \
314 $(TOP
)/ext
/fts3
/fts3_porter.c \
315 $(TOP
)/ext
/fts3
/fts3_snippet.c \
316 $(TOP
)/ext
/fts3
/fts3_tokenizer.h \
317 $(TOP
)/ext
/fts3
/fts3_tokenizer.c \
318 $(TOP
)/ext
/fts3
/fts3_tokenizer1.c \
319 $(TOP
)/ext
/fts3
/fts3_write.c
321 $(TOP
)/ext
/icu
/sqliteicu.h \
324 $(TOP
)/ext
/rtree
/rtree.h \
325 $(TOP
)/ext
/rtree
/rtree.c
328 # Generated source code files
339 # Source code to the test files.
351 $(TOP
)/src
/test_autoext.c \
352 $(TOP
)/src
/test_async.c \
353 $(TOP
)/src
/test_backup.c \
354 $(TOP
)/src
/test_btree.c \
355 $(TOP
)/src
/test_config.c \
356 $(TOP
)/src
/test_demovfs.c \
357 $(TOP
)/src
/test_devsym.c \
358 $(TOP
)/src
/test_func.c \
359 $(TOP
)/src
/test_fuzzer.c \
360 $(TOP
)/src
/test_hexio.c \
361 $(TOP
)/src
/test_init.c \
362 $(TOP
)/src
/test_intarray.c \
363 $(TOP
)/src
/test_journal.c \
364 $(TOP
)/src
/test_malloc.c \
365 $(TOP
)/src
/test_multiplex.c \
366 $(TOP
)/src
/test_mutex.c \
367 $(TOP
)/src
/test_onefile.c \
368 $(TOP
)/src
/test_osinst.c \
369 $(TOP
)/src
/test_pcache.c \
370 $(TOP
)/src
/test_quota.c \
371 $(TOP
)/src
/test_rtree.c \
372 $(TOP
)/src
/test_schema.c \
373 $(TOP
)/src
/test_server.c \
374 $(TOP
)/src
/test_superlock.c \
375 $(TOP
)/src
/test_syscall.c \
376 $(TOP
)/src
/test_stat.c \
377 $(TOP
)/src
/test_tclvar.c \
378 $(TOP
)/src
/test_thread.c \
379 $(TOP
)/src
/test_vfs.c \
380 $(TOP
)/src
/test_wholenumber.c \
381 $(TOP
)/src
/test_wsd.c
383 # Source code to the library files needed by the test fixture
386 $(TOP
)/src
/attach.c \
387 $(TOP
)/src
/backup.c \
388 $(TOP
)/src
/bitvec.c \
395 $(TOP
)/src
/insert.c \
399 $(TOP
)/src
/os_os2.c \
400 $(TOP
)/src
/os_unix.c \
401 $(TOP
)/src
/os_win.c \
403 $(TOP
)/src
/pragma.c \
404 $(TOP
)/src
/prepare.c \
405 $(TOP
)/src
/printf.c \
406 $(TOP
)/src
/random.c \
407 $(TOP
)/src
/pcache.c \
408 $(TOP
)/src
/pcache1.c \
409 $(TOP
)/src
/select.c \
410 $(TOP
)/src
/tokenize.c \
413 $(TOP
)/src
/vdbeapi.c \
414 $(TOP
)/src
/vdbeaux.c \
416 $(TOP
)/src
/vdbemem.c \
417 $(TOP
)/src
/vdbetrace.c \
420 $(TOP
)/ext
/fts3
/fts3.c \
421 $(TOP
)/ext
/fts3
/fts3_aux.c \
422 $(TOP
)/ext
/fts3
/fts3_expr.c \
423 $(TOP
)/ext
/fts3
/fts3_tokenizer.c \
424 $(TOP
)/ext
/fts3
/fts3_write.c \
425 $(TOP
)/ext
/async
/sqlite3async.c
427 # Header files used by all library source files.
431 $(TOP
)/src
/btreeInt.h \
433 $(TOP
)/src
/hwtime.h \
438 $(TOP
)/src
/os_common.h \
440 $(TOP
)/src
/pcache.h \
443 $(TOP
)/src
/sqlite3ext.h \
444 $(TOP
)/src
/sqliteInt.h \
445 $(TOP
)/src
/sqliteLimit.h \
447 $(TOP
)/src
/vdbeInt.h \
450 # Header files used by extensions
453 $(TOP
)/ext
/fts1
/fts1.h \
454 $(TOP
)/ext
/fts1
/fts1_hash.h \
455 $(TOP
)/ext
/fts1
/fts1_tokenizer.h
457 $(TOP
)/ext
/fts2
/fts2.h \
458 $(TOP
)/ext
/fts2
/fts2_hash.h \
459 $(TOP
)/ext
/fts2
/fts2_tokenizer.h
461 $(TOP
)/ext
/fts3
/fts3.h \
462 $(TOP
)/ext
/fts3
/fts3Int.h \
463 $(TOP
)/ext
/fts3
/fts3_hash.h \
464 $(TOP
)/ext
/fts3
/fts3_tokenizer.h
466 $(TOP
)/ext
/rtree
/rtree.h
468 $(TOP
)/ext
/icu
/sqliteicu.h
470 $(TOP
)/ext
/rtree
/sqlite3rtree.h
472 # This is the default Makefile target. The objects listed here
473 # are what get build when you type just "make" with no arguments.
475 all: sqlite3.h libsqlite3.la sqlite3
$(TEXE
) $(HAVE_TCL
:1=libtclsqlite3.la
)
477 Makefile
: $(TOP
)/Makefile.in
480 sqlite3.
pc: $(TOP
)/sqlite3.
pc.in
483 libsqlite3.la
: $(LIBOBJ
)
484 $(LTLINK
) -o
$@
$(LIBOBJ
) $(TLIBS
) \
485 ${ALLOWRELEASE} -rpath
"$(libdir)" -version-info
"8:6:8"
487 libtclsqlite3.la
: tclsqlite.lo libsqlite3.la
488 $(LTLINK
) -o
$@ tclsqlite.lo \
489 libsqlite3.la @TCL_STUB_LIB_SPEC@
$(TLIBS
) \
490 -rpath
"$(TCLLIBDIR)" \
491 -version-info
"8:6:8" \
494 sqlite3
$(TEXE
): $(TOP
)/src
/shell.c libsqlite3.la sqlite3.h
495 $(LTLINK
) $(READLINE_FLAGS
) \
496 -o
$@
$(TOP
)/src
/shell.c libsqlite3.la \
497 $(LIBREADLINE
) $(TLIBS
) -rpath
"$(libdir)"
499 # This target creates a directory named "tsrc" and fills it with
500 # copies of all of the C source code and header files needed to
501 # build on the target system. Some of the C source code and header
502 # files are automatically generated. This target takes care of
503 # all that automatic generation.
505 .target_source
: $(SRC
) $(TOP
)/tool
/vdbe-compress.tcl
509 rm tsrc
/sqlite.h.in tsrc
/parse.y
510 $(TCLSH_CMD
) $(TOP
)/tool
/vdbe-compress.tcl
<tsrc
/vdbe.c
>vdbe.new
511 mv vdbe.new tsrc
/vdbe.c
514 sqlite3.c
: .target_source
$(TOP
)/tool
/mksqlite3c.tcl
515 $(TCLSH_CMD
) $(TOP
)/tool
/mksqlite3c.tcl
517 # Rule to build the amalgamation
519 sqlite3.lo
: sqlite3.c
520 $(LTCOMPILE
) $(TEMP_STORE
) -c sqlite3.c
522 # Rules to build the LEMON compiler generator
524 lemon
$(BEXE
): $(TOP
)/tool
/lemon.c
$(TOP
)/src
/lempar.c
525 $(BCC
) -o
$@
$(TOP
)/tool
/lemon.c
526 cp
$(TOP
)/src
/lempar.c .
528 # Rules to build individual *.o files from generated *.c files. This
534 parse.lo
: parse.c
$(HDR
)
535 $(LTCOMPILE
) $(TEMP_STORE
) -c parse.c
537 opcodes.lo
: opcodes.c
538 $(LTCOMPILE
) $(TEMP_STORE
) -c opcodes.c
540 # Rules to build individual *.o files from files in the src directory.
542 alter.lo
: $(TOP
)/src
/alter.c
$(HDR
)
543 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/alter.c
545 analyze.lo
: $(TOP
)/src
/analyze.c
$(HDR
)
546 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/analyze.c
548 attach.lo
: $(TOP
)/src
/attach.c
$(HDR
)
549 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/attach.c
551 auth.lo
: $(TOP
)/src
/auth.c
$(HDR
)
552 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/auth.c
554 backup.lo
: $(TOP
)/src
/backup.c
$(HDR
)
555 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/backup.c
557 bitvec.lo
: $(TOP
)/src
/bitvec.c
$(HDR
)
558 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/bitvec.c
560 btmutex.lo
: $(TOP
)/src
/btmutex.c
$(HDR
)
561 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/btmutex.c
563 btree.lo
: $(TOP
)/src
/btree.c
$(HDR
) $(TOP
)/src
/pager.h
564 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/btree.c
566 build.lo
: $(TOP
)/src
/build.c
$(HDR
)
567 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/build.c
569 callback.lo
: $(TOP
)/src
/callback.c
$(HDR
)
570 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/callback.c
572 complete.lo
: $(TOP
)/src
/complete.c
$(HDR
)
573 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/complete.c
575 ctime.lo
: $(TOP
)/src
/ctime.c
$(HDR
)
576 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/ctime.c
578 date.lo
: $(TOP
)/src
/date.c
$(HDR
)
579 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/date.c
581 delete.lo
: $(TOP
)/src
/delete.c
$(HDR
)
582 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/delete.c
584 expr.lo
: $(TOP
)/src
/expr.c
$(HDR
)
585 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/expr.c
587 fault.lo
: $(TOP
)/src
/fault.c
$(HDR
)
588 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/fault.c
590 fkey.lo
: $(TOP
)/src
/fkey.c
$(HDR
)
591 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/fkey.c
593 func.lo
: $(TOP
)/src
/func.c
$(HDR
)
594 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/func.c
596 global.lo
: $(TOP
)/src
/global.c
$(HDR
)
597 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/global.c
599 hash.lo
: $(TOP
)/src
/hash.c
$(HDR
)
600 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/hash.c
602 insert.lo
: $(TOP
)/src
/insert.c
$(HDR
)
603 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/insert.c
605 journal.lo
: $(TOP
)/src
/journal.c
$(HDR
)
606 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/journal.c
608 legacy.lo
: $(TOP
)/src
/legacy.c
$(HDR
)
609 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/legacy.c
611 loadext.lo
: $(TOP
)/src
/loadext.c
$(HDR
)
612 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/loadext.c
614 main.lo
: $(TOP
)/src
/main.c
$(HDR
)
615 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/main.c
617 malloc.lo
: $(TOP
)/src
/malloc.c
$(HDR
)
618 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/malloc.c
620 mem0.lo
: $(TOP
)/src
/mem0.c
$(HDR
)
621 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem0.c
623 mem1.lo
: $(TOP
)/src
/mem1.c
$(HDR
)
624 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem1.c
626 mem2.lo
: $(TOP
)/src
/mem2.c
$(HDR
)
627 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem2.c
629 mem3.lo
: $(TOP
)/src
/mem3.c
$(HDR
)
630 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem3.c
632 mem5.lo
: $(TOP
)/src
/mem5.c
$(HDR
)
633 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mem5.c
635 memjournal.lo
: $(TOP
)/src
/memjournal.c
$(HDR
)
636 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/memjournal.c
638 mutex.lo
: $(TOP
)/src
/mutex.c
$(HDR
)
639 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex.c
641 mutex_noop.lo
: $(TOP
)/src
/mutex_noop.c
$(HDR
)
642 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_noop.c
644 mutex_os2.lo
: $(TOP
)/src
/mutex_os2.c
$(HDR
)
645 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_os2.c
647 mutex_unix.lo
: $(TOP
)/src
/mutex_unix.c
$(HDR
)
648 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_unix.c
650 mutex_w32.lo
: $(TOP
)/src
/mutex_w32.c
$(HDR
)
651 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/mutex_w32.c
653 notify.lo
: $(TOP
)/src
/notify.c
$(HDR
)
654 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/notify.c
656 pager.lo
: $(TOP
)/src
/pager.c
$(HDR
) $(TOP
)/src
/pager.h
657 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pager.c
659 pcache.lo
: $(TOP
)/src
/pcache.c
$(HDR
) $(TOP
)/src
/pcache.h
660 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pcache.c
662 pcache1.lo
: $(TOP
)/src
/pcache1.c
$(HDR
) $(TOP
)/src
/pcache.h
663 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pcache1.c
665 os.lo
: $(TOP
)/src
/os.c
$(HDR
)
666 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os.c
668 os_unix.lo
: $(TOP
)/src
/os_unix.c
$(HDR
)
669 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os_unix.c
671 os_win.lo
: $(TOP
)/src
/os_win.c
$(HDR
)
672 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os_win.c
674 os_os2.lo
: $(TOP
)/src
/os_os2.c
$(HDR
)
675 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/os_os2.c
677 pragma.lo
: $(TOP
)/src
/pragma.c
$(HDR
)
678 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/pragma.c
680 prepare.lo
: $(TOP
)/src
/prepare.c
$(HDR
)
681 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/prepare.c
683 printf.lo
: $(TOP
)/src
/printf.c
$(HDR
)
684 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/printf.c
686 random.lo
: $(TOP
)/src
/random.c
$(HDR
)
687 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/random.c
689 resolve.lo
: $(TOP
)/src
/resolve.c
$(HDR
)
690 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/resolve.c
692 rowset.lo
: $(TOP
)/src
/rowset.c
$(HDR
)
693 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/rowset.c
695 select.lo
: $(TOP
)/src
/select.c
$(HDR
)
696 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/select.c
698 status.lo
: $(TOP
)/src
/status.c
$(HDR
)
699 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/status.c
701 table.lo
: $(TOP
)/src
/table.c
$(HDR
)
702 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/table.c
704 tokenize.lo
: $(TOP
)/src
/tokenize.c keywordhash.h
$(HDR
)
705 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/tokenize.c
707 trigger.lo
: $(TOP
)/src
/trigger.c
$(HDR
)
708 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/trigger.c
710 update.lo
: $(TOP
)/src
/update.c
$(HDR
)
711 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/update.c
713 utf.lo
: $(TOP
)/src
/utf.c
$(HDR
)
714 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/utf.c
716 util.lo
: $(TOP
)/src
/util.c
$(HDR
)
717 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/util.c
719 vacuum.lo
: $(TOP
)/src
/vacuum.c
$(HDR
)
720 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vacuum.c
722 vdbe.lo
: $(TOP
)/src
/vdbe.c
$(HDR
)
723 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbe.c
725 vdbeapi.lo
: $(TOP
)/src
/vdbeapi.c
$(HDR
)
726 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeapi.c
728 vdbeaux.lo
: $(TOP
)/src
/vdbeaux.c
$(HDR
)
729 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeaux.c
731 vdbeblob.lo
: $(TOP
)/src
/vdbeblob.c
$(HDR
)
732 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbeblob.c
734 vdbemem.lo
: $(TOP
)/src
/vdbemem.c
$(HDR
)
735 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbemem.c
737 vdbetrace.lo
: $(TOP
)/src
/vdbetrace.c
$(HDR
)
738 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vdbetrace.c
740 vtab.lo
: $(TOP
)/src
/vtab.c
$(HDR
)
741 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/vtab.c
743 wal.lo
: $(TOP
)/src
/wal.c
$(HDR
)
744 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/wal.c
746 walker.lo
: $(TOP
)/src
/walker.c
$(HDR
)
747 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/walker.c
749 where.lo
: $(TOP
)/src
/where.c
$(HDR
)
750 $(LTCOMPILE
) $(TEMP_STORE
) -c
$(TOP
)/src
/where.c
752 tclsqlite.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
753 $(LTCOMPILE
) -DUSE_TCL_STUBS
=1 -c
$(TOP
)/src
/tclsqlite.c
755 tclsqlite-shell.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
756 $(LTCOMPILE
) -DTCLSH
=1 -o
$@
-c
$(TOP
)/src
/tclsqlite.c
758 tclsqlite-stubs.lo
: $(TOP
)/src
/tclsqlite.c
$(HDR
)
759 $(LTCOMPILE
) -DUSE_TCL_STUBS
=1 -o
$@
-c
$(TOP
)/src
/tclsqlite.c
761 tclsqlite3
$(TEXE
): tclsqlite-shell.lo libsqlite3.la
762 $(LTLINK
) -o
$@ tclsqlite-shell.lo \
763 libsqlite3.la
$(LIBTCL
)
765 # Rules to build opcodes.c and opcodes.h
767 opcodes.c
: opcodes.h
$(TOP
)/mkopcodec.awk
768 sort -n
-b
-k
3 opcodes.h |
$(NAWK
) -f
$(TOP
)/mkopcodec.awk
>opcodes.c
770 opcodes.h
: parse.h
$(TOP
)/src
/vdbe.c
$(TOP
)/mkopcodeh.awk
771 cat parse.h
$(TOP
)/src
/vdbe.c |
$(NAWK
) -f
$(TOP
)/mkopcodeh.awk
>opcodes.h
773 # Rules to build parse.c and parse.h - the outputs of lemon.
777 parse.c
: $(TOP
)/src
/parse.y lemon
$(BEXE
) $(TOP
)/addopcodes.awk
778 cp
$(TOP
)/src
/parse.y .
780 .
/lemon
$(BEXE
) $(OPT_FEATURE_FLAGS
) $(OPTS
) parse.y
781 mv parse.h parse.h.temp
782 $(NAWK
) -f
$(TOP
)/addopcodes.awk parse.h.temp
>parse.h
784 sqlite3.h
: $(TOP
)/src
/sqlite.h.in
$(TOP
)/manifest.uuid
$(TOP
)/VERSION
785 tclsh
$(TOP
)/tool
/mksqlite3h.tcl
$(TOP
) >sqlite3.h
787 keywordhash.h
: $(TOP
)/tool
/mkkeywordhash.c
788 $(BCC
) -o mkkeywordhash
$(BEXE
) $(OPT_FEATURE_FLAGS
) $(OPTS
) $(TOP
)/tool
/mkkeywordhash.c
789 .
/mkkeywordhash
$(BEXE
) >keywordhash.h
793 # Rules to build the extension objects.
795 icu.lo
: $(TOP
)/ext
/icu
/icu.c
$(HDR
) $(EXTHDR
)
796 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/icu
/icu.c
798 fts2.lo
: $(TOP
)/ext
/fts2
/fts2.c
$(HDR
) $(EXTHDR
)
799 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2.c
801 fts2_hash.lo
: $(TOP
)/ext
/fts2
/fts2_hash.c
$(HDR
) $(EXTHDR
)
802 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_hash.c
804 fts2_icu.lo
: $(TOP
)/ext
/fts2
/fts2_icu.c
$(HDR
) $(EXTHDR
)
805 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_icu.c
807 fts2_porter.lo
: $(TOP
)/ext
/fts2
/fts2_porter.c
$(HDR
) $(EXTHDR
)
808 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_porter.c
810 fts2_tokenizer.lo
: $(TOP
)/ext
/fts2
/fts2_tokenizer.c
$(HDR
) $(EXTHDR
)
811 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_tokenizer.c
813 fts2_tokenizer1.lo
: $(TOP
)/ext
/fts2
/fts2_tokenizer1.c
$(HDR
) $(EXTHDR
)
814 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts2
/fts2_tokenizer1.c
816 fts3.lo
: $(TOP
)/ext
/fts3
/fts3.c
$(HDR
) $(EXTHDR
)
817 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3.c
819 fts3_aux.lo
: $(TOP
)/ext
/fts3
/fts3_aux.c
$(HDR
) $(EXTHDR
)
820 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_aux.c
822 fts3_expr.lo
: $(TOP
)/ext
/fts3
/fts3_expr.c
$(HDR
) $(EXTHDR
)
823 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_expr.c
825 fts3_hash.lo
: $(TOP
)/ext
/fts3
/fts3_hash.c
$(HDR
) $(EXTHDR
)
826 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_hash.c
828 fts3_icu.lo
: $(TOP
)/ext
/fts3
/fts3_icu.c
$(HDR
) $(EXTHDR
)
829 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_icu.c
831 fts3_snippet.lo
: $(TOP
)/ext
/fts3
/fts3_snippet.c
$(HDR
) $(EXTHDR
)
832 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_snippet.c
834 fts3_porter.lo
: $(TOP
)/ext
/fts3
/fts3_porter.c
$(HDR
) $(EXTHDR
)
835 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_porter.c
837 fts3_tokenizer.lo
: $(TOP
)/ext
/fts3
/fts3_tokenizer.c
$(HDR
) $(EXTHDR
)
838 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_tokenizer.c
840 fts3_tokenizer1.lo
: $(TOP
)/ext
/fts3
/fts3_tokenizer1.c
$(HDR
) $(EXTHDR
)
841 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_tokenizer1.c
843 fts3_write.lo
: $(TOP
)/ext
/fts3
/fts3_write.c
$(HDR
) $(EXTHDR
)
844 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/fts3
/fts3_write.c
846 rtree.lo
: $(TOP
)/ext
/rtree
/rtree.c
$(HDR
) $(EXTHDR
)
847 $(LTCOMPILE
) -DSQLITE_CORE
-c
$(TOP
)/ext
/rtree
/rtree.c
850 # Rules to build the 'testfixture' application.
852 # If using the amalgamation, use sqlite3.c directly to build the test
853 # fixture. Otherwise link against libsqlite3.la. (This distinction is
854 # necessary because the test fixture requires non-API symbols which are
855 # hidden when the library is built via the amalgamation).
857 TESTFIXTURE_FLAGS
= -DTCLSH
=1 -DSQLITE_TEST
=1 -DSQLITE_CRASH_TEST
=1
858 TESTFIXTURE_FLAGS
+= -DSQLITE_SERVER
=1 -DSQLITE_PRIVATE
="" -DSQLITE_CORE
860 TESTFIXTURE_SRC0
= $(TESTSRC2
) libsqlite3.la
861 TESTFIXTURE_SRC1
= sqlite3.c
862 TESTFIXTURE_SRC
= $(TESTSRC
) $(TOP
)/src
/tclsqlite.c
$(TESTFIXTURE_SRC
$(USE_AMALGAMATION
))
864 testfixture
$(TEXE
): $(TESTFIXTURE_SRC
)
865 $(LTLINK
) -DSQLITE_NO_SYNC
=1 $(TEMP_STORE
) $(TESTFIXTURE_FLAGS
) \
866 -o
$@
$(TESTFIXTURE_SRC
) $(LIBTCL
) $(TLIBS
)
869 fulltest
: testfixture
$(TEXE
) sqlite3
$(TEXE
)
870 .
/testfixture
$(TEXE
) $(TOP
)/test/all.
test
872 soaktest
: testfixture
$(TEXE
) sqlite3
$(TEXE
)
873 .
/testfixture
$(TEXE
) $(TOP
)/test/all.
test -soak
=1
875 test: testfixture
$(TEXE
) sqlite3
$(TEXE
)
876 .
/testfixture
$(TEXE
) $(TOP
)/test/veryquick.
test
878 sqlite3_analyzer
$(TEXE
): $(TESTFIXTURE_SRC
) $(TOP
)/tool
/spaceanal.tcl
885 $(TOP
)/tool
/spaceanal.tcl
>spaceanal_tcl.h
886 $(LTLINK
) -DTCLSH
=2 -DSQLITE_TEST
=1 -DSQLITE_CRASH_TEST
=1 \
887 -DSQLITE_SERVER
=1 -DSQLITE_PRIVATE
="" -DSQLITE_CORE \
888 $(TEMP_STORE
) -o
$@
$(TESTFIXTURE_SRC
) $(LIBTCL
) $(TLIBS
)
891 # Standard install and cleanup targets
893 lib_install
: libsqlite3.la
894 $(INSTALL
) -d
$(DESTDIR
)$(libdir)
895 $(LTINSTALL
) libsqlite3.la
$(DESTDIR
)$(libdir)
897 install: sqlite3
$(BEXE
) lib_install sqlite3.h sqlite3.
pc ${HAVE_TCL
:1=tcl_install
}
898 $(INSTALL
) -d
$(DESTDIR
)$(bindir)
899 $(LTINSTALL
) sqlite3
$(BEXE
) $(DESTDIR
)$(bindir)
900 $(INSTALL
) -d
$(DESTDIR
)$(includedir)
901 $(INSTALL
) -m
0644 sqlite3.h
$(DESTDIR
)$(includedir)
902 $(INSTALL
) -m
0644 $(TOP
)/src
/sqlite3ext.h
$(DESTDIR
)$(includedir)
903 $(INSTALL
) -d
$(DESTDIR
)$(pkgconfigdir
)
904 $(INSTALL
) -m
0644 sqlite3.
pc $(DESTDIR
)$(pkgconfigdir
)
907 echo
'package ifneeded sqlite3 $(RELEASE) [list load $(TCLLIBDIR)/libtclsqlite3.so sqlite3]' > $@
908 tcl_install
: lib_install libtclsqlite3.la pkgIndex.tcl
909 $(INSTALL
) -d
$(DESTDIR
)$(TCLLIBDIR
)
910 $(LTINSTALL
) libtclsqlite3.la
$(DESTDIR
)$(TCLLIBDIR
)
911 rm -f
$(DESTDIR
)$(TCLLIBDIR
)/libtclsqlite3.la
$(DESTDIR
)$(TCLLIBDIR
)/libtclsqlite3.a
912 $(INSTALL
) -m
0644 pkgIndex.tcl
$(DESTDIR
)$(TCLLIBDIR
)
915 rm -f
*.lo
*.la
*.o sqlite3
$(TEXE
) libsqlite3.la
916 rm -f sqlite3.h opcodes.
*
918 rm -f lemon
$(BEXE
) lempar.c parse.
* sqlite
*.
tar.gz
919 rm -f mkkeywordhash
$(BEXE
) keywordhash.h
921 rm -f
*.da
*.bb
*.bbg gmon.out
922 rm -rf tsrc .target_source
923 rm -f testfixture
$(TEXE
) test.db
924 rm -f sqlite3.dll sqlite3.lib sqlite3.def
928 rm -f config.log config.status libtool Makefile sqlite3.
pc
935 REAL_LIBOBJ
= $(LIBOBJ
:%.lo
=.libs
/%.o
)
937 $(REAL_LIBOBJ
): $(LIBOBJ
)
939 sqlite3.def
: $(REAL_LIBOBJ
)
940 echo
'EXPORTS' >sqlite3.def
941 nm
$(REAL_LIBOBJ
) | grep
' T ' | grep
' _sqlite3_' \
942 | sed
's/^.* _//' >>sqlite3.def
944 sqlite3.dll
: $(REAL_LIBOBJ
) sqlite3.def
945 $(TCC
) -shared
-o
$@ sqlite3.def \
946 -Wl
,"--strip-all" $(REAL_LIBOBJ
)