manifest.mn (668B)
1 # 2 # This Source Code Form is subject to the terms of the Mozilla Public 3 # License, v. 2.0. If a copy of the MPL was not distributed with this 4 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 CORE_DEPTH = ../.. 6 7 MODULE = nss 8 9 LIBRARY_NAME = sqlite 10 LIBRARY_VERSION = 3 11 MAPFILE = $(OBJDIR)/$(LIBRARY_NAME).def 12 RES = $(NULL) 13 14 DEFINES += -DSQLITE_THREADSAFE=1 15 16 PRIVATE_EXPORTS = \ 17 sqlite3.h \ 18 $(NULL) 19 20 CSRCS = \ 21 sqlite3.c \ 22 $(NULL) 23 24 # only add module debugging in opt builds if DEBUG_PKCS11 is set 25 ifdef DEBUG_PKCS11 26 DEFINES += -DDEBUG_MODULE 27 endif 28 29 # This part of the code, including all sub-dirs, can be optimized for size 30 export ALLOW_OPT_CODE_SIZE = 1