2002-08-14 00:45:39 +04:00
|
|
|
###############################################################################
|
2024-10-19 21:31:47 +03:00
|
|
|
# This is the main makefile for sqlite. It expects to be included from
|
|
|
|
# a higher-level makefile which configures any dynamic state needed by
|
|
|
|
# this one.
|
|
|
|
#
|
|
|
|
# The following variables must be defined before this script is
|
2002-08-14 00:45:39 +04:00
|
|
|
# invoked:
|
2001-09-28 05:34:43 +04:00
|
|
|
#
|
2024-10-19 21:31:47 +03:00
|
|
|
#XX# FIXME: the list of vars from the historical main.mk is dated and
|
|
|
|
#XX# needs to be updated for autosetup.
|
|
|
|
#
|
2002-08-14 00:45:39 +04:00
|
|
|
# TOP The toplevel directory of the source tree. This is the
|
|
|
|
# directory that contains this "Makefile.in" and the
|
|
|
|
# "configure.in" script.
|
2001-09-28 05:34:43 +04:00
|
|
|
#
|
2002-08-14 00:45:39 +04:00
|
|
|
# BCC C Compiler and options for use in building executables that
|
|
|
|
# will run on the platform that is doing the build.
|
2001-09-28 05:34:43 +04:00
|
|
|
#
|
2018-10-29 20:53:23 +03:00
|
|
|
# TCC C Compiler and options for use in building executables that
|
2002-08-14 00:45:39 +04:00
|
|
|
# will run on the target platform. This is usually the same
|
|
|
|
# as BCC, unless you are cross-compiling.
|
2001-09-28 05:34:43 +04:00
|
|
|
#
|
2002-08-14 00:45:39 +04:00
|
|
|
# AR Tools used to build a static library.
|
2001-09-28 05:34:43 +04:00
|
|
|
#
|
2024-10-19 21:31:47 +03:00
|
|
|
# BEXE File extension for executables on the build platform. ".exe"
|
|
|
|
# for Windows and "" everywhere else.
|
2001-09-28 05:34:43 +04:00
|
|
|
#
|
2024-10-19 21:31:47 +03:00
|
|
|
# TEXE File extension for executables on the target platform. ".exe"
|
|
|
|
# for Windows and "" everywhere else.
|
2001-09-28 05:34:43 +04:00
|
|
|
#
|
2024-10-19 21:31:47 +03:00
|
|
|
# ... and many, many more ...
|
2001-09-28 05:34:43 +04:00
|
|
|
#
|
2024-10-19 21:31:47 +03:00
|
|
|
# Once the variables above are defined, the rest of this make script
|
|
|
|
# will build the SQLite library and testing tools.
|
2002-08-14 00:45:39 +04:00
|
|
|
################################################################################
|