summaryrefslogtreecommitdiff
path: root/win32/Makefile
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-03-23 13:20:34 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-03-23 13:20:34 +0000
commit3357b1b1dc05eb65c7266f1983048cb27893b96c (patch)
tree9568e90ba7537be2a7cb318819ff5eb50af2fbd2 /win32/Makefile
parent02ccb3c85a7cea3122c550296088fd52ce24537b (diff)
downloadperl-3357b1b1dc05eb65c7266f1983048cb27893b96c.tar.gz
Integrate Digest-1.00 and Digest-MD5-2.13, from Gisle Aas.
- bump the version to 2.14 - drop the base64 tests since they require MIME::Base64 - drop the rfc1321.txt - drop the hints/dec_osf.pl since it's only needed for pre-5.005_03 Perls Todo: - the U32 alignment testing is now removed; it needs to be reintroduced as as a Config variable (meaning also as a Configure test) - get the new EBCDIC md5sum for MD5.pm - test in Win32 to see how badly I botched the makefiles p4raw-id: //depot/perl@9308
Diffstat (limited to 'win32/Makefile')
-rw-r--r--win32/Makefile25
1 files changed, 16 insertions, 9 deletions
diff --git a/win32/Makefile b/win32/Makefile
index 9049099398..295afc46b8 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -608,7 +608,7 @@ SETARGV_OBJ = setargv$(o)
DYNAMIC_EXT = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
- Sys/Hostname Storable Filter/Util/Call Encode
+ Sys/Hostname Storable Filter/Util/Call Encode Digest/MD5
STATIC_EXT = DynaLoader
NONXS_EXT = Errno
@@ -633,6 +633,7 @@ HOSTNAME = $(EXTDIR)\Sys\Hostname\Hostname
STORABLE = $(EXTDIR)\Storable\Storable
FILTER = $(EXTDIR)\Filter\Util\Call\Call
ENCODE = $(EXTDIR)\Encode\Encode
+MD5 = $(EXTDIR)\Digest\MD5\MD5
SOCKET_DLL = $(AUTODIR)\Socket\Socket.dll
FCNTL_DLL = $(AUTODIR)\Fcntl\Fcntl.dll
@@ -653,6 +654,7 @@ HOSTNAME_DLL = $(AUTODIR)\Sys\Hostname\Hostname.dll
STORABLE_DLL = $(AUTODIR)\Storable\Storable.dll
FILTER_DLL = $(AUTODIR)\Filter\Util\Call\Call.dll
ENCODE_DLL = $(AUTODIR)\Encode\Encode.dll
+MD5_DLL = $(AUTODIR)\Digest\MD5\MD5.dll
ERRNO_PM = $(LIBDIR)\Errno.pm
@@ -675,7 +677,8 @@ EXTENSION_C = \
$(HOSTNAME).c \
$(STORABLE).c \
$(FILTER).c \
- $(ENCODE).c
+ $(ENCODE).c \
+ $(MD5).c
EXTENSION_DLL = \
$(SOCKET_DLL) \
@@ -696,7 +699,8 @@ EXTENSION_DLL = \
$(HOSTNAME_DLL) \
$(STORABLE_DLL) \
$(FILTER_DLL) \
- $(ENCODE_DLL)
+ $(ENCODE_DLL) \
+ $(MD5_DLL)
EXTENSION_PM = \
$(ERRNO_PM)
@@ -980,12 +984,6 @@ $(BYTELOADER_DLL): $(PERLEXE) $(BYTELOADER).xs
$(MAKE)
cd ..\..\win32
-$(ENCODE_DLL): $(PERLEXE) $(ENCODE).xs
- cd $(EXTDIR)\$(*B)
- ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
- $(MAKE)
- cd ..\..\win32
-
$(STORABLE_DLL): $(PERLEXE) $(STORABLE).xs
cd $(EXTDIR)\$(*B)
..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
@@ -1004,6 +1002,12 @@ $(ENCODE_DLL): $(PERLEXE) $(ENCODE).xs
$(MAKE)
cd ..\..\win32
+$(MD5_DLL): $(PERLEXE) $(MD5).xs
+ cd $(EXTDIR)\$(*B)
+ ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
+ $(MAKE)
+ cd ..\..\win32
+
$(ERRNO_PM): $(PERLEXE) $(ERRNO)_pm.PL
cd $(EXTDIR)\$(*B)
..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
@@ -1058,6 +1062,7 @@ distclean: clean
-del /f $(LIBDIR)\File\Glob.pm
-del /f $(LIBDIR)\Storable.pm
-del /f $(LIBDIR)\Filter\Util\Call\Call.pm
+ -del /f $(LIBDIR)\Digest\MD5.pm
-if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
-rmdir /s $(LIBDIR)\IO
-if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
@@ -1068,6 +1073,8 @@ distclean: clean
-rmdir /s $(LIBDIR)\Data
-if exist $(LIBDIR)\Filter\Util\Call rmdir /s /q $(LIBDIR)\Filter\Util\Call
-if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
+ -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
+ -rmdir /s $(LIBDIR)\Digest
-del /f $(PODDIR)\*.html
-del /f $(PODDIR)\*.bat
cd ..\utils