From: Nikola Knezevic Date: Tue, 19 Mar 2002 00:42:22 +0000 (+0100) Subject: Add targer _test to win32 makefiles X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b4a93add75df748f48998eef262a4df0db186872;p=p5sagit%2Fp5-mst-13.2.git Add targer _test to win32 makefiles Message-ID: <1199171923.20020319004222@tesla.rcub.bg.ac.yu> p4raw-id: //depot/perl@15331 --- diff --git a/win32/Makefile b/win32/Makefile index 2734229..eea51dc 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1077,6 +1077,14 @@ test-wide-notty : test-prep $(PERLEXE) -I..\lib harness cd ..\win32 +_test : + $(XCOPY) $(PERLEXE) ..\t\$(NULL) + $(XCOPY) $(PERLDLL) ..\t\$(NULL) + $(XCOPY) $(GLOBEXE) ..\t\$(NULL) + cd ..\t + $(PERLEXE) -I..\lib harness + cd ..\win32 + clean : Extensions_clean -@$(DEL) miniperlmain$(o) -@$(DEL) $(MINIPERL) diff --git a/win32/Makefile.win64 b/win32/Makefile.win64 index 86100bb..92d047b 100644 --- a/win32/Makefile.win64 +++ b/win32/Makefile.win64 @@ -1133,6 +1133,14 @@ test-wide-notty : test-prep cd ..\t $(PERLEXE) -I..\lib harness cd ..\win32 + +_test : + $(XCOPY) $(PERLEXE) ..\t\$(NULL) + $(XCOPY) $(PERLDLL) ..\t\$(NULL) + $(XCOPY) $(GLOBEXE) ..\t\$(NULL) + cd ..\t + $(PERLEXE) -I..\lib harness + cd ..\win32 clean : -@erase miniperlmain$(o) diff --git a/win32/makefile.mk b/win32/makefile.mk index 23717c4..cfcdd73 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1216,6 +1216,16 @@ test-wide-notty : test-prep set HARNESS_PERL_SWITCHES=-C && \ cd ..\t && $(PERLEXE) -I..\lib harness +_test : $(RIGHTMAKE) + $(XCOPY) $(PERLEXE) ..\t\$(NULL) + $(XCOPY) $(PERLDLL) ..\t\$(NULL) +.IF "$(CCTYPE)" == "BORLAND" + $(XCOPY) $(GLOBBAT) ..\t\$(NULL) +.ELSE + $(XCOPY) $(GLOBEXE) ..\t\$(NULL) +.ENDIF + cd ..\t && $(PERLEXE) -I..\lib harness + clean : Extensions_clean -@erase miniperlmain$(o) -@erase $(MINIPERL)