summaryrefslogtreecommitdiff
path: root/win32/makefile.mk
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-07-12 06:38:27 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-07-12 06:38:27 +0000
commit8d9b2e3c6958e5856b03a00694b8ae02817ed002 (patch)
tree6b5b5a6975f7c34b624d3d8f3e27155d400cbdbc /win32/makefile.mk
parent52128c7bef3f076ac01499c67c282a95011ff34a (diff)
downloadperl-8d9b2e3c6958e5856b03a00694b8ae02817ed002.tar.gz
various tweaks for PERL_OBJECT build & test
p4raw-id: //depot/perl@1450
Diffstat (limited to 'win32/makefile.mk')
-rw-r--r--win32/makefile.mk14
1 files changed, 7 insertions, 7 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk
index 89477da9a5..32f3a3dbf0 100644
--- a/win32/makefile.mk
+++ b/win32/makefile.mk
@@ -73,8 +73,8 @@ CCTYPE *= BORLAND
#
# if you have the source for des_fcrypt(), uncomment this and make sure the
-# file exists (see README.win32). File should be located at the perl
-# top level directory.
+# file exists (see README.win32). File should be located in the same
+# directory as this file.
#
#CRYPT_SRC *= des_fcrypt.c
@@ -465,10 +465,6 @@ MICROCORE_SRC = \
..\universal.c \
..\util.c
-.IF "$(CRYPT_SRC)" != ""
-MICROCORE_SRC += ..\$(CRYPT_SRC)
-.ENDIF
-
.IF "$(PERL_MALLOC)" == "define"
EXTRACORE_SRC += ..\malloc.c
.ENDIF
@@ -485,13 +481,17 @@ WIN32_SRC = \
WIN32_SRC += .\win32thread.c
.ENDIF
+.IF "$(CRYPT_SRC)" != ""
+WIN32_SRC += .\$(CRYPT_SRC)
+.ENDIF
+
PERL95_SRC = \
perl95.c \
win32mt.c \
win32sckmt.c
.IF "$(CRYPT_SRC)" != ""
-PERL95_SRC += ..\$(CRYPT_SRC)
+PERL95_SRC += .\$(CRYPT_SRC)
.ENDIF
DLL_SRC = $(DYNALOADER).c