mirror of
https://github.com/sqlite/sqlite.git
synced 2024-11-21 19:29:09 +01:00
8c97ad8834
FossilOrigin-Name: 85b2c73ccb85d7f5830a6fac692b380c5c79e7a54ee3fc6fc37343fa23816ef8
26 lines
803 B
Makefile
26 lines
803 B
Makefile
#!/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.
|
|
#
|
|
TOP ?= .
|
|
|
|
CFLAGS += -fPIC
|
|
|
|
# You should not have to change anything below this line
|
|
###############################################################################
|
|
include $(TOP)/main.mk
|
|
|
|
sqlite_cfg.h:
|
|
touch $@
|