summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--security/nss/lib/ckfw/builtins/Makefile5
-rw-r--r--security/nss/lib/ckfw/builtins/config.mk14
-rw-r--r--security/nss/lib/fortcrypt/config.mk13
-rw-r--r--security/nss/lib/fortcrypt/swfort/pkcs11/config.mk13
4 files changed, 18 insertions, 27 deletions
diff --git a/security/nss/lib/ckfw/builtins/Makefile b/security/nss/lib/ckfw/builtins/Makefile
index 54e92cc82..3ab0e9dcf 100644
--- a/security/nss/lib/ckfw/builtins/Makefile
+++ b/security/nss/lib/ckfw/builtins/Makefile
@@ -67,11 +67,6 @@ EXTRA_LIBS += \
endif
-ifeq ($(OS_ARCH), WINNT)
- SHARED_LIBRARY = $(OBJDIR)/$(LIBRARY_NAME)$(LIBRARY_VERSION).dll
- IMPORT_LIBRARY = $(OBJDIR)/$(LIBRARY_NAME)$(LIBRARY_VERSION).lib
-endif
-
include $(CORE_DEPTH)/coreconf/rules.mk
diff --git a/security/nss/lib/ckfw/builtins/config.mk b/security/nss/lib/ckfw/builtins/config.mk
index 80b3135f4..9ee0fb0b2 100644
--- a/security/nss/lib/ckfw/builtins/config.mk
+++ b/security/nss/lib/ckfw/builtins/config.mk
@@ -32,6 +32,20 @@
#
CONFIG_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$ $Name$"
+#
+# Override TARGETS variable so that only shared libraries
+# are specifed as dependencies within rules.mk.
+#
+
+TARGETS = $(SHARED_LIBRARY)
+LIBRARY =
+IMPORT_LIBRARY =
+PROGRAM =
+
+ifeq ($(OS_ARCH), WINNT)
+ SHARED_LIBRARY = $(OBJDIR)/$(LIBRARY_NAME)$(LIBRARY_VERSION).dll
+endif
+
ifdef BUILD_IDG
DEFINES += -DNSSDEBUG
endif
diff --git a/security/nss/lib/fortcrypt/config.mk b/security/nss/lib/fortcrypt/config.mk
index 1e8237ff2..d54a9dfc0 100644
--- a/security/nss/lib/fortcrypt/config.mk
+++ b/security/nss/lib/fortcrypt/config.mk
@@ -32,21 +32,12 @@
#
#
-# Override TARGETS variable so that only static libraries
+# Override TARGETS variable so that only shared libraries
# are specifed as dependencies within rules.mk.
#
-ifeq ($(OS_TARGET), WIN16)
-TARGETS = all
-else
TARGETS = $(SHARED_LIBRARY)
-endif
LIBRARY =
-PURE_LIBRARY =
+IMPORT_LIBRARY =
PROGRAM =
-
-ifeq ($(OS_TARGET), WIN16)
-dummy:
- @echo $(TARGETS)
-endif
diff --git a/security/nss/lib/fortcrypt/swfort/pkcs11/config.mk b/security/nss/lib/fortcrypt/swfort/pkcs11/config.mk
index 9b1a488d2..960774691 100644
--- a/security/nss/lib/fortcrypt/swfort/pkcs11/config.mk
+++ b/security/nss/lib/fortcrypt/swfort/pkcs11/config.mk
@@ -32,21 +32,12 @@
#
#
-# Override TARGETS variable so that only static libraries
+# Override TARGETS variable so that only shared libraries
# are specifed as dependencies within rules.mk.
#
-ifeq ($(OS_TARGET), WIN16)
-TARGETS = all
-else
TARGETS = $(SHARED_LIBRARY) $(SHARED_SW_LIBRARY) $(LIBCI_JAR) $(LIBCI_SW_JAR)
-endif
LIBRARY =
-PURE_LIBRARY =
+IMPORT_LIBRARY =
PROGRAM =
-
-ifeq ($(OS_TARGET), WIN16)
-dummy:
- @echo $(TARGETS)
-endif