Trying to test weirdo get_key_rating bug...
1 # Copyright 2017, pEp Foundation
2 # This file is part of pEpEngine
3 # This file may be used under the terms of the GNU General Public License version 3
6 # See `doc/build-<your platform>.md` for documentation on how to build, and customize your build.
8 # This file sets all the make variables that allow you to customize a build.
9 # There are 3 ways in which you can customize your build:
10 # 1) Edit the variable assignments in this file (this is a tracked file, so your repository will be dirty)
11 # 2) Create `local.conf` and fill it with variable assignments.
12 # 3) Set the environment variable `BUILD_CONFIG` to an absolute path.
13 # The variable assignments found in the make file at the path indicated by `BUILD_CONFIG` will be evaluated.
14 # Customization options are applied in the order given above. Later variable assignments take precedence over earlier ones.
15 # It is possible to use multiple variants simultaniously.
16 # If nothing is changed according to these 3 methods, a default configuration for your platform (specified below) will be used for the build.
19 ######### Header #########
20 HERE:=$(dir $(lastword $(MAKEFILE_LIST)))
23 ######### General #########
24 # To use (only) system libraries, set all the *_INC and *_LIB variables to the empty string.
25 # All the *_INC and *_LIB variables are command line flags, not paths.
26 # Thus, all *_INC variables' values must start with "-I", and all *_LIB variables' values must start with "-L".
28 BUILD_ON:=$(shell uname)
30 # This variable specifies the platform that the engine should be cross-compiled for.
33 # Cross-compiling is currently not supported.
34 # Maybe you can hack something with `local.conf`.
35 ifneq ($(BUILD_ON),$(BUILD_FOR))
36 $(error I don't know how to build for $(BUILD_FOR) on $(BUILD_ON).)
39 # Installation path prefix for libraries and binaries, except for system.db
42 # Installation path for system.db
43 SYSTEM_DB=/usr/local/share/pEp/system.db
45 # Filename of the pEpEngine library
46 ifeq ($(BUILD_FOR),Linux)
47 TARGET=libpEpEngine.so
48 else ifeq ($(BUILD_FOR),Darwin)
49 TARGET=libpEpEngine.dylib
52 # If empty, create a release build.
53 # Otherwise, create a debug build.
54 # This variable is ineffective when set anywhere else but here.
57 # If empty, suppress compiler warnings.
58 # Otherwise, print warnings.
59 # This variable is ineffective when set anywhere else but here.
63 ######### C and C++ #########
66 # The following two variables will be appended to.
67 # You can thus not set them to a final, fixed value here.
68 ifeq ($(BUILD_FOR),Linux)
70 else ifeq ($(BUILD_FOR),Darwin)
71 # "-bind_at_load" helps find symbol resolution errors faster
79 ifeq ($(BUILD_FOR),Linux)
80 CC=gcc -std=c99 -pthread
81 else ifeq ($(BUILD_FOR),Darwin)
82 # clang issues a warning when "-pthread" is used for linking.
83 # So, include it in CFLAGS, and not in CC
87 ifeq ($(BUILD_FOR),Linux)
88 CFLAGS=-fPIC -fstrict-aliasing -fdiagnostics-color=always
89 else ifeq ($(BUILD_FOR),Darwin)
90 CFLAGS=-pthread -fPIC -fstrict-aliasing -fcolor-diagnostics
93 # The flag -DNDEBUG will always be removed from CFLAGS for compiling tests.
94 # The tests do not work properly, if compiled with -DNDEBUG
95 ifeq ($(BUILD_FOR),Linux)
97 CFLAGS+= -Wall -pedantic -Wstrict-aliasing=3
102 CFLAGS+= -g -ggdb -DDEBUG_ERRORSTACK
104 CFLAGS+= -O3 -DNDEBUG
106 else ifeq ($(BUILD_FOR),Darwin)
108 # FIXME Remove 'no-extended-offsetof' after ENGINE-236 is closed.
109 CFLAGS+= -Wall -pedantic -Wno-extended-offsetof
114 CFLAGS+= -O0 -g -DDEBUG_ERRORSTACK
116 CFLAGS+= -O3 -DNDEBUG
120 # Additional CFLAGS used for compiling ASN1C-generated code
121 ifeq ($(BUILD_FOR),Linux)
122 # The '_DEFAULT_SOURCE' feature test macro is required to suppress the warning
123 # _BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE
124 # otherwise printed during the compilation of every asn1c-generated C file.
125 # It's a glibc specific warning, only present in few versions around ~2.19.
126 # See https://lwn.net/Articles/590381/ for a discussion.
127 CFLAGS_GENERATED=-D_DEFAULT_SOURCE
128 else ifeq ($(BUILD_FOR),Darwin)
133 ######### C++ #########
134 ifeq ($(BUILD_FOR),Linux)
135 CXX=g++ -std=gnu++11 -pthread
136 else ifeq ($(BUILD_FOR),Darwin)
137 # clang issues a warning when "-pthread" is used for linking. So, include it in CXXFLAGS, and not in CXX
141 # The flag -DNDEBUG will always be removed from CXXFLAGS for compiling tests.
142 # The tests do not work properly, if compiled with -DNDEBUG
143 ifeq ($(BUILD_FOR),Linux)
144 CXXFLAGS=-fdiagnostics-color=always -I../src -I../asn.1 $(ETPAN_INC)
153 CXXFLAGS+= -O3 -DNDEBUG
155 else ifeq ($(BUILD_FOR),Darwin)
156 CXXFLAGS=-pthread -fcolor-diagnostics -I../src -I../asn.1 $(ETPAN_INC)
165 CXXFLAGS+= -O3 -DNDEBUG
170 ######### C and C++ #########
174 ######### YML2 #########
175 YML2_PATH=$(HOME)/yml2
177 YML2_PROC=$(YML2_PATH)/yml2proc $(YML2_OPTS)
179 YML2_OPTS=--encoding=utf8
182 ######### asn1c #########
186 # asn1c include search flag
188 #ASN1C_INC=-I$(HOME)/include
191 ######### libetpan #########
192 # libetpan library search flag
194 #ETPAN_LIB=-L$(HOME)/lib
196 # libetpan include search flag
198 #ETPAN_INC=-I$(HOME)/include
201 ######### pEp MIME #########
202 # set this to skip libetpan and use PEP_MIME instead
205 # pEp MIME library search flag
207 # pEp MIME include search flag
211 ######### sqlite3 #########
212 # If empty (or undefined), compile sqlite3 from the sources shipped with the pEp distribution.
213 # Otherwise, use an sqlite3 implementation found in the OS's include/library paths.
214 SQLITE3_FROM_OS=placeholder
217 ######### OpenPGP #########
219 # gpgconf is not available for old version of GPG, for example GPG 2.0.30. Override this variable, if you compile the engine for such an old version.
220 GPG_CMD:=$(shell gpgconf --list-components | awk -F: '/^gpg:/ { print $$3; exit 0; }')
222 # Selects OpenPGP implementation. must be either `SEQUOIA`, `GPG` or `NETPGP`
225 # Sequoia-specific variables
232 ifeq ($(BUILD_FOR),Linux)
233 LIBGPGME=libgpgme.so.11
234 else ifeq ($(BUILD_FOR),Darwin)
235 LIBGPGME=libgpgme.11.dylib
238 # libGPGME library search flag
240 #GPGME_LIB=-L$(HOME)/lib
242 # libGPGME include search flag
244 #GPGME_INC=-I$(HOME)/include
246 # NETPGP library search flag
248 #NETPGP_LIB=-L$(HOME)/lib
250 # libGPGME include search flag
252 #NETPGP_INC=-I$(HOME)/include
256 ######### CppUnit #########
257 # CppUnit library search flag
259 #CPPUNIT_LIB=-L$(HOME)/local/lib
261 # CppUnit include search flag
263 #CPPUNIT_INC=-I$(HOME)/local/inc
266 ######### Engine internals #########
267 # C macros (not environment variables) that can be overridden:
268 # DEFAULT_KEYSERVER - string with default keyserver
269 # CRASHDUMP_DEFAULT_LINES - number of log lines to deliver for crashdumps
271 # EXTRA_MACROS=-DDEFAULT_KEYSERVER=\"default-server.org\" -DCRASHDUMP_DEFAULT_LINES=23
275 ######### Misc #########
276 # FIXME Maybe include these variables here.
277 # Check how they are used throughout the project before setting them here
280 # Add this for running tests in debugger
281 #TEST_DEBUGGER=lldb --batch -o r
283 # comma-separated list of tests to exclude from gensuite (relevant for running tests only)
287 ######### Footer #########
288 -include $(HERE)/local.conf
291 include $(BUILD_CONFIG)
294 ######### Post processing assignments ########
295 # These variables are ineffective when set anywhere else but here.
296 ifeq ($(OPENPGP),SEQUOIA)
297 SEQUOIA_CFLAGS=$(shell pkg-config --cflags-only-other sequoia-openpgp)
298 SEQUOIA_LDFLAGS=$(shell pkg-config --libs-only-l --libs-only-other sequoia-openpgp)
299 SEQUOIA_LIB=$(shell pkg-config --libs-only-L sequoia-openpgp)
300 SEQUOIA_INC=$(shell pkg-config --cflags-only-I sequoia-openpgp)
301 CFLAGS+= $(SEQUOIA_CFLAGS)
302 LD_FLAGS+= $(SEQUOIA_LDFLAGS)
305 # YML_PATH is needed in the environment of every call to a program of the YML2 distribution
306 export YML_PATH=$(YML2_PATH)