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".
|
|
|
|
#
|
|
|
|
#### The toplevel directory of the source tree. This is the directory
|
|
|
|
# that contains this "Makefile.in" and the "configure.in" script.
|
|
|
|
#
|
2024-10-24 05:14:40 +02:00
|
|
|
TOP ?= .
|
2002-08-13 22:45:39 +02:00
|
|
|
|
2024-10-24 05:14:40 +02:00
|
|
|
CFLAGS += -fPIC
|
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 $@
|