FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sqlcipher/Makefile.linux-generic at sqlite-release · sqlcipher/sqlcipher · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
sqlcipher
/
sqlcipher
Public
Notifications
You must be signed in to change notification settings
Fork
1.4k
Star
7.3k
Code
Issues
17
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
sqlcipher
/
Makefile.linux-generic
Copy path
More file actions
More file actions
Latest commit
History
History
History
64 lines (59 loc) · 1.97 KB
Breadcrumbs
sqlcipher
/
Makefile.linux-generic
Copy path
File metadata and controls
64 lines (59 loc) · 1.97 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#
!/usr/make
all
:
#
#
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".
#
#
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 "Makefile.in" and "auto.def".
#
TOP
?=
$(
realpath
$(
dir
$(
lastword
$(
MAKEFILE_LIST
)
)
)
)
#
#
$(CFLAGS) will be used when compiling the library and most
#
utilities. It must normally contain -fPIC on Linux systems,
#
but overriding CFLAGS is an easy way for users to inadvertently
#
remove -fPIC from their builds, so we generally expect to see
#
-fPIC in $(CFLAGS.core), which main.mk will integrate with
#
the CFLAGS where needed.
#
CFLAGS
=
CFLAGS.core
= -fPIC
#
#
$(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).
#
SHELL_OPT
+= -DHAVE_READLINE=1
SHELL_OPT
+= -DSQLITE_HAVE_ZLIB=1
LDFLAGS.readline
= -lreadline
#
may need -lcurses etc, depending on the system
CFLAGS.readline =
#
needs -I... if readline.h is in an unusual place.
LDFLAGS.zlib = -lz
#
#
Library's version number.
#
PACKAGE_VERSION
?=
$(
shell
cat
$(
TOP
)
/VERSION 2>/dev/null)
#
sqlite_cfg.h is typically created by the configure script. It's
#
commonly not needed but main.mk does not know that so we have to
#
create a dummy if we don't already have one.
sqlite_cfg.h
:
touch
$@
distclean-.
:
rm -f sqlite_cfg.h
#
#
With the above in place, we can now import the rules make use of
#
it...
#
include
$(
TOP
)
/main.mk
Back
|
FazBrowse Home
|
New Git URL