81a20f21d5
disk situation. (CVS 285) FossilOrigin-Name: 0a7848b6190981cb7eb673bbe68cb217694daf2e
311 lines
8.1 KiB
Makefile
311 lines
8.1 KiB
Makefile
#!/usr/make
|
|
#
|
|
# Makefile for SQLITE
|
|
#
|
|
# This makefile is suppose to be configured automatically using the
|
|
# autoconf. But if that does not work for you, you can configure
|
|
# the makefile manually. Just set the parameters below to values that
|
|
# work well for your system.
|
|
#
|
|
# If the configure script does not work out-of-the-box, you might
|
|
# be able to get it to work by giving it some hints. See the comment
|
|
# at the beginning of configure.in for additional information.
|
|
#
|
|
|
|
# The toplevel directory of the source tree. This is the directory
|
|
# that contains this "Makefile.in" and the "configure.in" script.
|
|
#
|
|
TOP = @srcdir@
|
|
|
|
# C Compiler and options for use in building executables that
|
|
# will run on the platform that is doing the build.
|
|
#
|
|
BCC = @BUILD_CC@ @BUILD_CFLAGS@
|
|
|
|
# C Compile and options for use in building executables that
|
|
# will run on the target platform. (BCC and TCC are usually the
|
|
# same unless your are cross-compiling.)
|
|
#
|
|
TCC = @TARGET_CC@ @TARGET_CFLAGS@ -I. -I${TOP}/src
|
|
|
|
# Some standard variables and programs
|
|
#
|
|
prefix = @prefix@
|
|
INSTALL = @INSTALL@
|
|
LIBTOOL = ./libtool
|
|
|
|
# Compiler options needed for programs that use the TCL library.
|
|
#
|
|
TCL_FLAGS = @TARGET_TCL_INC@
|
|
|
|
# The library that programs using TCL must link against.
|
|
#
|
|
LIBTCL = @TARGET_TCL_LIBS@
|
|
|
|
# Compiler options needed for programs that use the readline() library.
|
|
#
|
|
READLINE_FLAGS = -DHAVE_READLINE=@TARGET_HAVE_READLINE@ @TARGET_READLINE_INC@
|
|
|
|
# The library that programs using readline() must link against.
|
|
#
|
|
LIBREADLINE = @TARGET_READLINE_LIBS@
|
|
|
|
# Should the database engine assume text is coded as UTF-8 or iso8859?
|
|
#
|
|
# ENCODING = UTF8
|
|
# ENCODING = ISO8859
|
|
ENCODING = @ENCODING@
|
|
|
|
# You should not have to change anything below this line
|
|
###############################################################################
|
|
|
|
# Object files for the SQLite library.
|
|
#
|
|
LIBOBJ = btree.lo build.lo delete.lo expr.lo hash.lo insert.lo \
|
|
main.lo os.lo pager.lo parse.lo printf.lo random.lo select.lo \
|
|
table.lo tokenize.lo update.lo util.lo vdbe.lo where.lo
|
|
|
|
# All of the source code files.
|
|
#
|
|
SRC = \
|
|
$(TOP)/src/btree.c \
|
|
$(TOP)/src/btree.h \
|
|
$(TOP)/src/build.c \
|
|
$(TOP)/src/delete.c \
|
|
$(TOP)/src/expr.c \
|
|
$(TOP)/src/hash.c \
|
|
$(TOP)/src/insert.c \
|
|
$(TOP)/src/main.c \
|
|
$(TOP)/src/os.c \
|
|
$(TOP)/src/pager.c \
|
|
$(TOP)/src/pager.h \
|
|
$(TOP)/src/parse.y \
|
|
$(TOP)/src/printf.c \
|
|
$(TOP)/src/random.c \
|
|
$(TOP)/src/select.c \
|
|
$(TOP)/src/shell.c \
|
|
$(TOP)/src/sqlite.h.in \
|
|
$(TOP)/src/sqliteInt.h \
|
|
$(TOP)/src/table.c \
|
|
$(TOP)/src/tclsqlite.c \
|
|
$(TOP)/src/tokenize.c \
|
|
$(TOP)/src/update.c \
|
|
$(TOP)/src/util.c \
|
|
$(TOP)/src/vdbe.c \
|
|
$(TOP)/src/vdbe.h \
|
|
$(TOP)/src/where.c
|
|
|
|
# Source code to the test files.
|
|
#
|
|
TESTSRC = \
|
|
$(TOP)/src/btree.c \
|
|
$(TOP)/src/os.c \
|
|
$(TOP)/src/pager.c \
|
|
$(TOP)/src/test1.c \
|
|
$(TOP)/src/test2.c \
|
|
$(TOP)/src/test3.c \
|
|
$(TOP)/src/md5.c
|
|
|
|
# This is the default Makefile target. The objects listed here
|
|
# are what get build when you type just "make" with no arguments.
|
|
#
|
|
all: sqlite.h libsqlite.la sqlite
|
|
|
|
# Generate the file "last_change" which contains the date of change
|
|
# of the most recently modified source code file
|
|
#
|
|
last_change: $(SRC)
|
|
cat $(SRC) | grep '$$Id: ' | sort +4 | tail -1 \
|
|
| awk '{print $$5,$$6}' >last_change
|
|
|
|
libsqlite.la: $(LIBOBJ)
|
|
$(LIBTOOL) $(TCC) -o libsqlite.la $(LIBOBJ) -rpath $(prefix)/lib
|
|
|
|
libtclsqlite.la: $(LIBOBJ) tclsqlite.lo
|
|
$(LIBTOOL) $(TCC) -o libtclsqlite.la $(LIBOBJ) tclsqlite.lo \
|
|
$(LIBTCL) -rpath $(prefix)/lib
|
|
|
|
sqlite: $(TOP)/src/shell.c libsqlite.la sqlite.h
|
|
$(LIBTOOL) $(TCC) $(READLINE_FLAGS) -o sqlite $(TOP)/src/shell.c \
|
|
libsqlite.la $(LIBREADLINE)
|
|
|
|
# Rules to build the LEMON compiler generator
|
|
#
|
|
lemon: $(TOP)/tool/lemon.c $(TOP)/tool/lempar.c
|
|
$(BCC) -o lemon $(TOP)/tool/lemon.c
|
|
cp $(TOP)/tool/lempar.c .
|
|
|
|
# Header files used by all library source files.
|
|
#
|
|
HDR = \
|
|
sqlite.h \
|
|
$(TOP)/src/btree.h \
|
|
$(TOP)/src/os.h \
|
|
$(TOP)/src/sqliteInt.h \
|
|
$(TOP)/src/vdbe.h \
|
|
parse.h
|
|
|
|
btree.lo: $(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/btree.c
|
|
|
|
build.lo: $(TOP)/src/build.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/build.c
|
|
|
|
main.lo: $(TOP)/src/main.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/main.c
|
|
|
|
pager.lo: $(TOP)/src/pager.c $(HDR) $(TOP)/src/pager.h
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/pager.c
|
|
|
|
os.lo: $(TOP)/src/os.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/os.c
|
|
|
|
parse.lo: parse.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c parse.c
|
|
|
|
parse.h: parse.c
|
|
|
|
parse.c: $(TOP)/src/parse.y lemon
|
|
cp $(TOP)/src/parse.y .
|
|
./lemon parse.y
|
|
|
|
sqlite.h: $(TOP)/src/sqlite.h.in
|
|
sed -e s/--VERS--/`cat ${TOP}/VERSION`/ \
|
|
-e s/--ENCODING--/$(ENCODING)/ \
|
|
$(TOP)/src/sqlite.h.in >sqlite.h
|
|
|
|
tokenize.lo: $(TOP)/src/tokenize.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/tokenize.c
|
|
|
|
util.lo: $(TOP)/src/util.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/util.c
|
|
|
|
vdbe.lo: $(TOP)/src/vdbe.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/vdbe.c
|
|
|
|
where.lo: $(TOP)/src/where.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/where.c
|
|
|
|
delete.lo: $(TOP)/src/delete.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/delete.c
|
|
|
|
expr.lo: $(TOP)/src/expr.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/expr.c
|
|
|
|
hash.lo: $(TOP)/src/hash.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/hash.c
|
|
|
|
insert.lo: $(TOP)/src/insert.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/insert.c
|
|
|
|
random.lo: $(TOP)/src/random.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/random.c
|
|
|
|
select.lo: $(TOP)/src/select.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/select.c
|
|
|
|
table.lo: $(TOP)/src/table.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/table.c
|
|
|
|
update.lo: $(TOP)/src/update.c $(HDR)
|
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/update.c
|
|
|
|
tclsqlite.lo: $(TOP)/src/tclsqlite.c $(HDR)
|
|
$(LIBTOOL) $(TCC) $(TCL_FLAGS) -c $(TOP)/src/tclsqlite.c
|
|
|
|
printf.lo: $(TOP)/src/printf.c $(HDR)
|
|
$(LIBTOOL) $(TCC) $(TCL_FLAGS) -c $(TOP)/src/printf.c
|
|
|
|
tclsqlite: $(TOP)/src/tclsqlite.c libsqlite.la
|
|
$(LIBTOOL) $(TCC) $(TCL_FLAGS) -DTCLSH=1 -o tclsqlite \
|
|
$(TOP)/src/tclsqlite.c libsqlite.la $(LIBTCL)
|
|
|
|
testfixture: $(TOP)/src/tclsqlite.c libtclsqlite.la $(TESTSRC)
|
|
$(LIBTOOL) $(TCC) $(TCL_FLAGS) -DTCLSH=1 -DSQLITE_TEST=1\
|
|
-o testfixture $(TESTSRC) $(TOP)/src/tclsqlite.c \
|
|
libtclsqlite.la $(LIBTCL)
|
|
|
|
fulltest: testfixture sqlite
|
|
./testfixture $(TOP)/test/all.test
|
|
|
|
test: testfixture sqlite
|
|
./testfixture $(TOP)/test/quick.test
|
|
|
|
index.html: $(TOP)/www/index.tcl last_change
|
|
tclsh $(TOP)/www/index.tcl `cat $(TOP)/VERSION` >index.html
|
|
|
|
sqlite.html: $(TOP)/www/sqlite.tcl
|
|
tclsh $(TOP)/www/sqlite.tcl >sqlite.html
|
|
|
|
c_interface.html: $(TOP)/www/c_interface.tcl
|
|
tclsh $(TOP)/www/c_interface.tcl >c_interface.html
|
|
|
|
changes.html: $(TOP)/www/changes.tcl
|
|
tclsh $(TOP)/www/changes.tcl >changes.html
|
|
|
|
lang.html: $(TOP)/www/lang.tcl
|
|
tclsh $(TOP)/www/lang.tcl >lang.html
|
|
|
|
vdbe.html: $(TOP)/www/vdbe.tcl
|
|
tclsh $(TOP)/www/vdbe.tcl >vdbe.html
|
|
|
|
arch.html: $(TOP)/www/arch.tcl
|
|
tclsh $(TOP)/www/arch.tcl >arch.html
|
|
|
|
arch.png: $(TOP)/www/arch.png
|
|
cp $(TOP)/www/arch.png .
|
|
|
|
opcode.html: $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c
|
|
tclsh $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c >opcode.html
|
|
|
|
crosscompile.html: $(TOP)/www/crosscompile.tcl
|
|
tclsh $(TOP)/www/crosscompile.tcl >crosscompile.html
|
|
|
|
mingw.html: $(TOP)/www/mingw.tcl
|
|
tclsh $(TOP)/www/mingw.tcl >mingw.html
|
|
|
|
tclsqlite.html: $(TOP)/www/tclsqlite.tcl
|
|
tclsh $(TOP)/www/tclsqlite.tcl >tclsqlite.html
|
|
|
|
speed.html: $(TOP)/www/speed.tcl
|
|
tclsh $(TOP)/www/speed.tcl >speed.html
|
|
|
|
download.html: $(TOP)/www/download.tcl
|
|
tclsh $(TOP)/www/download.tcl >download.html
|
|
|
|
|
|
# Files to be published on the website.
|
|
#
|
|
DOC = \
|
|
index.html \
|
|
sqlite.html \
|
|
changes.html \
|
|
lang.html \
|
|
opcode.html \
|
|
arch.html \
|
|
arch.png \
|
|
vdbe.html \
|
|
c_interface.html \
|
|
crosscompile.html \
|
|
mingw.html \
|
|
tclsqlite.html \
|
|
download.html \
|
|
speed.html
|
|
|
|
doc: $(DOC)
|
|
mkdir -p doc
|
|
mv $(DOC) doc
|
|
|
|
install: sqlite libsqlite.la sqlite.h
|
|
$(LIBTOOL) $(INSTALL) libsqlite.la $(prefix)/lib
|
|
$(LIBTOOL) $(INSTALL) sqlite $(prefix)/bin
|
|
$(INSTALL) sqlite.h $(prefix)/include
|
|
|
|
clean:
|
|
rm -f *.lo *.la *.o sqlite libsqlite.la sqlite.h
|
|
rm -rf .libs .deps
|
|
rm -f lemon lempar.c parse.* sqlite*.tar.gz
|
|
rm -f $(PUBLISH)
|
|
rm -f *.da *.bb *.bbg gmon.out
|
|
rm -f testfixture test.db
|