2002-08-13 22:45:39 +02:00
|
|
|
#!/usr/make
|
|
|
|
#
|
|
|
|
# Makefile for SQLITE
|
|
|
|
#
|
|
|
|
# This is a template makefile for SQLite. Most people prefer to
|
|
|
|
# use the autoconf generated "configure" script to generate the
|
|
|
|
# makefile automatically. But that does not work for everybody
|
|
|
|
# and in every situation. If you are having problems with the
|
|
|
|
# "configure" script, you might want to try this makefile as an
|
|
|
|
# alternative. Create a copy of this file, edit the parameters
|
|
|
|
# below and type "make".
|
|
|
|
#
|
2024-10-24 06:34:39 +02:00
|
|
|
# Maintenance note: because this is the template for Linux systems, it
|
|
|
|
# is assumed that the platform has GNU make and this file takes
|
|
|
|
# advantage of that.
|
|
|
|
#
|
|
|
|
####
|
|
|
|
#
|
|
|
|
# $(TOP) = The toplevel directory of the source tree. This is the
|
|
|
|
# directory that contains this "Makefile.in" and "auto.def".
|
2002-08-13 22:45:39 +02:00
|
|
|
#
|
2024-10-24 05:14:40 +02:00
|
|
|
TOP ?= .
|
2002-08-13 22:45:39 +02:00
|
|
|
|
2024-10-24 06:34:39 +02:00
|
|
|
#
|
|
|
|
# $(CFLAGS) will be used when compiling the library and most
|
|
|
|
# utilities. Generally speaking, it must contain -fPIC on Linux
|
|
|
|
# systems.
|
|
|
|
#
|
2024-10-24 05:14:40 +02:00
|
|
|
CFLAGS += -fPIC
|
2002-08-13 22:45:39 +02:00
|
|
|
|
2024-10-24 06:34:39 +02:00
|
|
|
#
|
|
|
|
# $(SHELL_OPT) contains CFLAGS for building the sqlite3 CLI shell.
|
|
|
|
# See main.mk for other potentially-relevant vars which may need
|
|
|
|
# tweaking, like $(LDFLAGS_READLINE).
|
|
|
|
#
|
2024-10-24 05:50:40 +02:00
|
|
|
SHELL_OPT ?= -DHAVE_READLINE=1
|
|
|
|
|
2024-10-24 06:34:39 +02:00
|
|
|
#
|
|
|
|
# Library's version number.
|
|
|
|
#
|
2024-10-24 06:56:44 +02:00
|
|
|
VERSION.XYZ ?= $(shell cat $(TOP)/VERSION 2>/dev/null)
|
|
|
|
$(info VERSION.XYZ=$(VERSION.XYZ))
|
2024-10-24 06:34:39 +02:00
|
|
|
|
2002-08-13 22:45:39 +02:00
|
|
|
# You should not have to change anything below this line
|
|
|
|
###############################################################################
|
|
|
|
include $(TOP)/main.mk
|
2024-10-24 05:14:40 +02:00
|
|
|
|
|
|
|
sqlite_cfg.h:
|
|
|
|
touch $@
|
2024-10-24 05:50:40 +02:00
|
|
|
distclean-.:
|
|
|
|
rm -f sqlite_cfg.h
|