You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2007/10/09 04:08:03 UTC

svn commit: r583036 - /apr/apr/trunk/test/Makefile.win

Author: wrowe
Date: Mon Oct  8 19:08:02 2007
New Revision: 583036

URL: http://svn.apache.org/viewvc?rev=583036&view=rev
Log:
TEST_SUBDIRS makes more sense here (used for clean and check)

Modified:
    apr/apr/trunk/test/Makefile.win

Modified: apr/apr/trunk/test/Makefile.win
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/Makefile.win?rev=583036&r1=583035&r2=583036&view=diff
==============================================================================
--- apr/apr/trunk/test/Makefile.win (original)
+++ apr/apr/trunk/test/Makefile.win Mon Oct  8 19:08:02 2007
@@ -80,7 +80,7 @@
 CLEAN_DATA = testfile.tmp lfstests\large.bin \
 	data\testputs.txt data\testbigfprintf.dat \
 	data\testwritev.txt data\testwritev_full.txt
-CLEAN_SUBDIRS = internal
+TEST_SUBDIRS = internal
 CLEAN_BUILDDIRS = Debug Release LibD LibR 9x x64
 
 PROGRAMS = $(TESTALL_COMPONENTS) $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE) $(OTHER_PROGRAMS)
@@ -159,13 +159,13 @@
 clean: cleandata
 	@if EXIST $(INTDIR)\. rmdir /s /q $(INTDIR)
 	@if EXIST $(OUTDIR)\. rmdir /s /q $(OUTDIR)
-	@for %d in ($(CLEAN_SUBDIRS)) do \
+	@for %d in ($(TEST_SUBDIRS)) do \
 	    %COMSPEC% /c "cd %%d && $(MAKE) -f Makefile.win clean" \
 
 cleanall: 
 	@for %d in ($(CLEAN_BUILDDIRS) $(INTDIR) $(OUTDIR)) do \
 	    @if EXIST %d\. rmdir /s /q %d
-	@for %d in ($(CLEAN_SUBDIRS)) do \
+	@for %d in ($(TEST_SUBDIRS)) do \
 	    %COMSPEC% /c "cd %%d & $(MAKE) -f Makefile.win cleanall" \
 
 
@@ -177,7 +177,7 @@
 	)
 
 checkall: check
-	@for %d in ($(CLEAN_SUBDIRS)) do \
+	@for %d in ($(TEST_SUBDIRS)) do \
 	    %COMSPEC% /c "cd %%d && $(MAKE) -f Makefile.win check" \
 
 # DO NOT REMOVE