2015-10-21 05:03:22 +02:00
|
|
|
#
|
2018-05-04 16:08:28 +02:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2015-10-21 05:03:22 +02:00
|
|
|
|
|
|
|
include manifest.mn
|
|
|
|
include $(CORE_DEPTH)/coreconf/config.mk
|
|
|
|
include config.mk
|
|
|
|
|
|
|
|
EXTRA_LIBS = \
|
|
|
|
$(DIST)/lib/$(LIB_PREFIX)nssckfw.$(LIB_SUFFIX) \
|
|
|
|
$(DIST)/lib/$(LIB_PREFIX)nssb.$(LIB_SUFFIX) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
# can't do this in manifest.mn because OS_TARGET isn't defined there.
|
|
|
|
ifeq (,$(filter-out WIN%,$(OS_TARGET)))
|
|
|
|
|
|
|
|
ifdef NS_USE_GCC
|
2018-05-04 16:08:28 +02:00
|
|
|
EXTRA_SHARED_LIBS += \
|
2015-10-21 05:03:22 +02:00
|
|
|
-L$(NSPR_LIB_DIR) \
|
|
|
|
-lplc4 \
|
|
|
|
-lplds4 \
|
|
|
|
-lnspr4 \
|
|
|
|
$(NULL)
|
|
|
|
else
|
|
|
|
EXTRA_SHARED_LIBS += \
|
|
|
|
$(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)plc4.lib \
|
|
|
|
$(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)plds4.lib \
|
|
|
|
$(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)nspr4.lib \
|
|
|
|
$(NULL)
|
|
|
|
endif # NS_USE_GCC
|
|
|
|
else
|
|
|
|
|
2018-05-04 16:08:28 +02:00
|
|
|
EXTRA_SHARED_LIBS += \
|
2015-10-21 05:03:22 +02:00
|
|
|
-L$(NSPR_LIB_DIR) \
|
|
|
|
-lplc4 \
|
|
|
|
-lplds4 \
|
|
|
|
-lnspr4 \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
include $(CORE_DEPTH)/coreconf/rules.mk
|
|
|
|
|
|
|
|
# Generate certdata.c.
|
|
|
|
|
2018-05-04 16:08:28 +02:00
|
|
|
# By default, use the unmodified certdata.txt.
|
|
|
|
ifndef NSS_CERTDATA_TXT
|
|
|
|
NSS_CERTDATA_TXT = certdata.txt
|
2015-10-21 05:03:22 +02:00
|
|
|
endif
|
|
|
|
|
2018-05-04 16:08:28 +02:00
|
|
|
$(OBJDIR)/certdata.c: $(NSS_CERTDATA_TXT) certdata.perl
|
|
|
|
@$(MAKE_OBJDIR)
|
|
|
|
$(PERL) certdata.perl < $(NSS_CERTDATA_TXT) > $@
|