Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | # |
michael@0 | 2 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 5 | CORE_DEPTH = ../.. |
michael@0 | 6 | |
michael@0 | 7 | EXPORTS = \ |
michael@0 | 8 | secmod.h \ |
michael@0 | 9 | secmodt.h \ |
michael@0 | 10 | secpkcs5.h \ |
michael@0 | 11 | pk11func.h \ |
michael@0 | 12 | pk11pub.h \ |
michael@0 | 13 | pk11priv.h \ |
michael@0 | 14 | pk11sdr.h \ |
michael@0 | 15 | pk11pqg.h \ |
michael@0 | 16 | $(NULL) |
michael@0 | 17 | |
michael@0 | 18 | PRIVATE_EXPORTS = \ |
michael@0 | 19 | secmodi.h \ |
michael@0 | 20 | dev3hack.h \ |
michael@0 | 21 | $(NULL) |
michael@0 | 22 | |
michael@0 | 23 | MODULE = nss |
michael@0 | 24 | |
michael@0 | 25 | CSRCS = \ |
michael@0 | 26 | dev3hack.c \ |
michael@0 | 27 | pk11akey.c \ |
michael@0 | 28 | pk11auth.c \ |
michael@0 | 29 | pk11cert.c \ |
michael@0 | 30 | pk11cxt.c \ |
michael@0 | 31 | pk11err.c \ |
michael@0 | 32 | pk11kea.c \ |
michael@0 | 33 | pk11list.c \ |
michael@0 | 34 | pk11load.c \ |
michael@0 | 35 | pk11mech.c \ |
michael@0 | 36 | pk11merge.c \ |
michael@0 | 37 | pk11nobj.c \ |
michael@0 | 38 | pk11obj.c \ |
michael@0 | 39 | pk11pars.c \ |
michael@0 | 40 | pk11pbe.c \ |
michael@0 | 41 | pk11pk12.c \ |
michael@0 | 42 | pk11pqg.c \ |
michael@0 | 43 | pk11sdr.c \ |
michael@0 | 44 | pk11skey.c \ |
michael@0 | 45 | pk11slot.c \ |
michael@0 | 46 | pk11util.c \ |
michael@0 | 47 | $(NULL) |
michael@0 | 48 | |
michael@0 | 49 | LIBRARY_NAME = pk11wrap |
michael@0 | 50 | |
michael@0 | 51 | LIBRARY_VERSION = 3 |
michael@0 | 52 | SOFTOKEN_LIBRARY_VERSION = 3 |
michael@0 | 53 | DEFINES += -DSHLIB_SUFFIX=\"$(DLL_SUFFIX)\" -DSHLIB_PREFIX=\"$(DLL_PREFIX)\" \ |
michael@0 | 54 | -DSHLIB_VERSION=\"$(LIBRARY_VERSION)\" \ |
michael@0 | 55 | -DSOFTOKEN_SHLIB_VERSION=\"$(SOFTOKEN_LIBRARY_VERSION)\" |
michael@0 | 56 | |
michael@0 | 57 | # only add module debugging in opt builds if DEBUG_PKCS11 is set |
michael@0 | 58 | ifdef DEBUG_PKCS11 |
michael@0 | 59 | DEFINES += -DDEBUG_MODULE -DFORCE_PR_LOG |
michael@0 | 60 | endif |
michael@0 | 61 | |
michael@0 | 62 | # This part of the code, including all sub-dirs, can be optimized for size |
michael@0 | 63 | export ALLOW_OPT_CODE_SIZE = 1 |