Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-11-17 22:48:34 +0300
committerRichard Levitte <levitte@openssl.org>2002-11-17 22:48:34 +0300
commitf503c2c9e6336d9dde67526c6804bb6e4e91cd91 (patch)
tree5f00373f5f3ae17772ff2c5584b7c42ea2ece332 /util
parent7656893d51a64e2fc206190ac8368babed3ddcb3 (diff)
Make it possible to build for more than one CPU.
Clarify what the CE tests do.
Diffstat (limited to 'util')
-rw-r--r--util/pl/VC-CE.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/pl/VC-CE.pl b/util/pl/VC-CE.pl
index e17896970f..907495efe4 100644
--- a/util/pl/VC-CE.pl
+++ b/util/pl/VC-CE.pl
@@ -16,8 +16,8 @@ $cflags=' /W3 /WX /Ox /O2 /Ob2 /Gs0 /GF /Gy /nologo -D$(TARGETCPU) -D_$(TARGETCP
$lflags='/nologo /subsystem:windowsce,3.00 /machine:$(TARGETCPU) /opt:ref';
$mlflags='';
-$out_def="out32";
-$tmp_def="tmp32";
+$out_def='out32_$(TARGETCPU)';
+$tmp_def='tmp32_$(TARGETCPU)';
$inc_def="inc32";
if ($debug)
@@ -63,8 +63,8 @@ if ($shlib)
$mlflags.=" $lflags /dll";
# $cflags =~ s| /MD| /MT|;
$lib_cflag=" -D_WINDLL -D_DLL";
- $out_def="out32dll";
- $tmp_def="tmp32dll";
+ $out_def='out32dll_$(TARGETCPU)';
+ $tmp_def='tmp32dll_$(TARGETCPU)';
}
$cflags.=" /Fd$out_def";