diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-11-23 02:46:35 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-11-23 02:46:35 +0000 |
commit | 7d4dff667b3dbff5222e6474141b93f65245ed09 (patch) | |
tree | 4c532aabe519c5251433714aa09d4c384939ce5f /win32/Makefile | |
parent | 32ce473141ad06fe2aa5547b7bbf3f499b3d98ff (diff) | |
download | perl-7d4dff667b3dbff5222e6474141b93f65245ed09.tar.gz |
regenerate win32/config* and fix some inconsistencies in the
makefiles; always export Perl_deb() because it is needed
by ext/re/* (whether perl itself is built with -DDEBUGGING
or not)
p4raw-id: //depot/perl@7828
Diffstat (limited to 'win32/Makefile')
-rw-r--r-- | win32/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/win32/Makefile b/win32/Makefile index fafbd2722f..c79c75b2d1 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -2,7 +2,7 @@ # Makefile to build perl on Windows NT using Microsoft NMAKE. # # This is set up to build a perl.exe that runs off a shared library -# (perl56.dll). Also makes individual DLLs for the XS extensions. +# (perl57.dll). Also makes individual DLLs for the XS extensions. # ## @@ -29,7 +29,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.6.0 +INST_VER = \5.7.0 # # Comment this out if you DON'T want your perl installation to have @@ -428,8 +428,12 @@ $(o).dll: # # various targets -PERLIMPLIB = ..\perl56.lib -PERLDLL = ..\perl56.dll + +# makedef.pl must be updated if this changes, and this should normally +# only change when there is an incompatible revision of the public API. +# XXX so why did we change it from perl56 to perl57? +PERLIMPLIB = ..\perl57.lib +PERLDLL = ..\perl57.dll MINIPERL = ..\miniperl.exe MINIDIR = .\mini @@ -1120,7 +1124,8 @@ clean : -@$(DEL) $(WPERLEXE) -@$(DEL) $(PERLDLL) -@$(DEL) $(CORE_OBJ) - -if exist $(MINIDIR) deltree /y $(MINIDIR) + -if exist $(MINIDIR) rmdir /s /q $(MINIDIR) + -rmdir /s $(MINIDIR) -@$(DEL) $(WIN32_OBJ) -@$(DEL) $(DLL_OBJ) -@$(DEL) $(X2P_OBJ) |