8010267: Add test-clean for cleaning of testoutput directory from output directory. Add depedency on test-clean to clean

Mon, 01 Apr 2013 11:48:01 -0700

author
mduigou
date
Mon, 01 Apr 2013 11:48:01 -0700
changeset 677
fc1e08c2bb27
parent 661
4984ac509993
child 678
26a4456cb19e

8010267: Add test-clean for cleaning of testoutput directory from output directory. Add depedency on test-clean to clean
Reviewed-by: mchung, tbell

common/makefiles/Main.gmk file | annotate | diff | comparison | revisions
     1.1 --- a/common/makefiles/Main.gmk	Fri Mar 15 23:08:07 2013 -0700
     1.2 +++ b/common/makefiles/Main.gmk	Mon Apr 01 11:48:01 2013 -0700
     1.3 @@ -197,7 +197,7 @@
     1.4  
     1.5  
     1.6  # Remove everything, except the output from configure.
     1.7 -clean: clean-langtools clean-corba clean-jaxp clean-jaxws clean-hotspot clean-jdk clean-nashorn clean-images clean-overlay-images clean-bootcycle-build clean-docs
     1.8 +clean: clean-langtools clean-corba clean-jaxp clean-jaxws clean-hotspot clean-jdk clean-nashorn clean-images clean-overlay-images clean-bootcycle-build clean-docs clean-test
     1.9  	@($(CD) $(OUTPUT_ROOT) && $(RM) -r tmp source_tips build.log* build-trace*.log*)
    1.10  	@$(ECHO) Cleaned all build artifacts.
    1.11  
    1.12 @@ -238,6 +238,8 @@
    1.13  clean-docs:
    1.14  	$(call CleanComponent,docs)
    1.15  	$(call CleanComponent,docstemp)
    1.16 +clean-test:
    1.17 +	$(call CleanComponent,testoutput)
    1.18  
    1.19  .PHONY: langtools corba jaxp jaxws hotspot jdk nashorn images overlay-images install
    1.20  .PHONY: langtools-only corba-only jaxp-only jaxws-only hotspot-only jdk-only nashorn-only images-only overlay-images-only install-only

mercurial