diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-08-17 01:03:52 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-08-17 01:03:52 +0000 |
commit | a6f858fb2719161c2b122286fdbda3043da1ded3 (patch) | |
tree | b68f3d87af4c895b35a71b92c8d6fa9b1885a073 /win32/Makefile | |
parent | c66b022d6903a8111b22ec69f0ba7b8507763e2e (diff) | |
download | perl-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/Makefile')
-rw-r--r-- | win32/Makefile | 12 |
1 files changed, 5 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 - - |