summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-08-17 01:03:52 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-08-17 01:03:52 +0000
commita6f858fb2719161c2b122286fdbda3043da1ded3 (patch)
treeb68f3d87af4c895b35a71b92c8d6fa9b1885a073 /win32
parentc66b022d6903a8111b22ec69f0ba7b8507763e2e (diff)
downloadperl-a6f858fb2719161c2b122286fdbda3043da1ded3.tar.gz
add "ok" targets from change#6632 in makefile.mk
p4raw-link: @6632 on //depot/perl: 017e10814b1e1d25c7506a0b0903863aee5cb0ca p4raw-id: //depot/perl@6665
Diffstat (limited to 'win32')
-rw-r--r--win32/Makefile12
-rw-r--r--win32/makefile.mk16
2 files changed, 21 insertions, 7 deletions
diff --git a/win32/Makefile b/win32/Makefile
index 30b2d487a3..b0962c12a3 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -1095,17 +1095,15 @@ clean :
# Handy way to run perlbug -ok without having to install and run the
# installed perlbug. We don't re-run the tests here - we trust the user.
# Please *don't* use this unless all tests pass.
-# If you want to report test failures, use "make nok" instead.
-ok: utils
+# If you want to report test failures, use "nmake nok" instead.
+ok: utils
$(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
-okfile: utils
+okfile: utils
$(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
-nok: utils
+nok: utils
$(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
-nokfile: utils
+nokfile: utils
$(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok
-
-
diff --git a/win32/makefile.mk b/win32/makefile.mk
index 6722a5efcf..eee98d5484 100644
--- a/win32/makefile.mk
+++ b/win32/makefile.mk
@@ -1301,3 +1301,19 @@ clean :
-@erase ..\x2p\*.exe ..\x2p\*.bat
-@erase *.ilk
-@erase *.pdb
+
+# Handy way to run perlbug -ok without having to install and run the
+# installed perlbug. We don't re-run the tests here - we trust the user.
+# Please *don't* use this unless all tests pass.
+# If you want to report test failures, use "dmake nok" instead.
+ok: utils
+ $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
+
+okfile: utils
+ $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
+
+nok: utils
+ $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
+
+nokfile: utils
+ $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok