diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-14 08:48:28 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-14 08:48:28 +0000 |
commit | b83ac84c2fbc01a334f3e39ae42527298ccd0b11 (patch) | |
tree | 663f7860faa7e90a3f6317d97f823edb3d54c05f /win32/Makefile | |
parent | d7f63761d678aaab033d0df636b0ec3c47e250a7 (diff) | |
download | perl-b83ac84c2fbc01a334f3e39ae42527298ccd0b11.tar.gz |
up patchlevel to 74; introduce distinct archname for PERL_OBJECT
p4raw-id: //depot/perl@1491
Diffstat (limited to 'win32/Makefile')
-rw-r--r-- | win32/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/win32/Makefile b/win32/Makefile index 23a8b8811d..e144f7afe5 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -25,7 +25,7 @@ INST_TOP = $(INST_DRV)\perl # versioned installation can be obtained by setting INST_TOP above to a # path that includes an arbitrary version string. # -INST_VER = \5.00473 +INST_VER = \5.00474 # # uncomment to enable threads-capabilities @@ -139,11 +139,15 @@ USE_THREADS = undef PROCESSOR_ARCHITECTURE = x86 !ENDIF +!IF "$(OBJECT)" != "" +ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-object +!ELSE !IF "$(USE_THREADS)" == "define" ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-thread !ELSE ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE) !ENDIF +!ENDIF ARCHDIR = ..\lib\$(ARCHNAME) COREDIR = ..\lib\CORE |