Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
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 | |
michael@0 | 6 | RELEASE_LIBS = $(TARGETS) |
michael@0 | 7 | |
michael@0 | 8 | ifeq (,$(filter-out WIN%,$(OS_TARGET))) |
michael@0 | 9 | |
michael@0 | 10 | # don't want the 32 in the shared library name |
michael@0 | 11 | SHARED_LIBRARY = $(OBJDIR)/$(DLL_PREFIX)$(LIBRARY_NAME)$(LIBRARY_VERSION).$(DLL_SUFFIX) |
michael@0 | 12 | IMPORT_LIBRARY = $(OBJDIR)/$(IMPORT_LIB_PREFIX)$(LIBRARY_NAME)$(LIBRARY_VERSION)$(IMPORT_LIB_SUFFIX) |
michael@0 | 13 | |
michael@0 | 14 | RES = $(OBJDIR)/smime.res |
michael@0 | 15 | RESNAME = smime.rc |
michael@0 | 16 | |
michael@0 | 17 | ifdef NS_USE_GCC |
michael@0 | 18 | EXTRA_SHARED_LIBS += \ |
michael@0 | 19 | -L$(DIST)/lib \ |
michael@0 | 20 | -lnss3 \ |
michael@0 | 21 | -L$(NSSUTIL_LIB_DIR) \ |
michael@0 | 22 | -lnssutil3 \ |
michael@0 | 23 | -L$(NSPR_LIB_DIR) \ |
michael@0 | 24 | -lplc4 \ |
michael@0 | 25 | -lplds4 \ |
michael@0 | 26 | -lnspr4 \ |
michael@0 | 27 | $(NULL) |
michael@0 | 28 | else # ! NS_USE_GCC |
michael@0 | 29 | EXTRA_SHARED_LIBS += \ |
michael@0 | 30 | $(DIST)/lib/nss3.lib \ |
michael@0 | 31 | $(DIST)/lib/nssutil3.lib \ |
michael@0 | 32 | $(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)plc4.lib \ |
michael@0 | 33 | $(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)plds4.lib \ |
michael@0 | 34 | $(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)nspr4.lib \ |
michael@0 | 35 | $(NULL) |
michael@0 | 36 | endif # NS_USE_GCC |
michael@0 | 37 | |
michael@0 | 38 | else |
michael@0 | 39 | |
michael@0 | 40 | EXTRA_SHARED_LIBS += \ |
michael@0 | 41 | -L$(DIST)/lib \ |
michael@0 | 42 | -lnss3 \ |
michael@0 | 43 | -L$(NSSUTIL_LIB_DIR) \ |
michael@0 | 44 | -lnssutil3 \ |
michael@0 | 45 | -L$(NSPR_LIB_DIR) \ |
michael@0 | 46 | -lplc4 \ |
michael@0 | 47 | -lplds4 \ |
michael@0 | 48 | -lnspr4 \ |
michael@0 | 49 | $(NULL) |
michael@0 | 50 | |
michael@0 | 51 | endif |
michael@0 | 52 | |
michael@0 | 53 | |
michael@0 | 54 | SHARED_LIBRARY_LIBS = \ |
michael@0 | 55 | $(DIST)/lib/$(LIB_PREFIX)pkcs12.$(LIB_SUFFIX) \ |
michael@0 | 56 | $(DIST)/lib/$(LIB_PREFIX)pkcs7.$(LIB_SUFFIX) \ |
michael@0 | 57 | $(NULL) |
michael@0 | 58 | |
michael@0 | 59 | SHARED_LIBRARY_DIRS = \ |
michael@0 | 60 | ../pkcs12 \ |
michael@0 | 61 | ../pkcs7 \ |
michael@0 | 62 | $(NULL) |
michael@0 | 63 |