summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-03-17 23:30:39 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-03-17 23:30:39 +0000
commite2e044faa1eba415459d1844712aefd0d5bad842 (patch)
tree69ed03e05f2ca27a1820c88dccba61b1c7f4c978 /util
parent0b415fb0ed560eb52f77f9239cc1e9393ed65173 (diff)
Comment out the lines that generated by mk1mf.pl include three separate rules
that are equivalent to $(OUT_D). This was what was causing the 'too many rules' warning under VC++.
Diffstat (limited to 'util')
-rwxr-xr-xutil/mk1mf.pl15
1 files changed, 9 insertions, 6 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 18e9b04175..80381e694b 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -333,6 +333,9 @@ RSAGLUE=$RSAglue
# BIN_D - Binary output directory
# TEST_D - Binary test file output directory
# LIB_D - library output directory
+# Note: if you change these point to different directories then uncomment out
+# the lines around the 'NB' comment below.
+#
BIN_D=\$(OUT_D)
TEST_D=\$(OUT_D)
LIB_D=\$(OUT_D)
@@ -374,12 +377,12 @@ $banner
\$(TMP_D):
\$(MKDIR) \$(TMP_D)
-
-\$(BIN_D):
- \$(MKDIR) \$(BIN_D)
-
-\$(TEST_D):
- \$(MKDIR) \$(TEST_D)
+# NB: uncomment out these lines if BIN_D, TEST_D and LIB_D are different
+#\$(BIN_D):
+# \$(MKDIR) \$(BIN_D)
+#
+#\$(TEST_D):
+# \$(MKDIR) \$(TEST_D)
\$(LIB_D):
\$(MKDIR) \$(LIB_D)