OpenJDK / lambda / collections / corba
diff make/Makefile @ 113:1c130e7b7a2e
6875240: Reduce Makefile build time by limiting repeated exec's (mostly for cygwin building)
Reviewed-by: jjg, iris
author | ohair |
---|---|
date | Wed, 02 Sep 2009 09:20:17 -0700 |
parents | 5182bcc9c60c |
children | 91006f157c46 |
line wrap: on
line diff
--- a/make/Makefile Tue Sep 01 23:44:41 2009 +0100 +++ b/make/Makefile Wed Sep 02 09:20:17 2009 -0700 @@ -141,12 +141,12 @@ #----- src.zip -SRC_ZIP_FILES = $(shell $(FIND) $(SRC_CLASSES_DIR) \( -name SCCS -o -name \*-template \) -prune -o -type f -print ) +SRC_ZIP_FILES = $(shell $(FIND) $(SRC_CLASSES_DIR) \( -name \*-template \) -prune -o -type f -print ) SRC_ZIP = $(LIB_DIR)/src.zip $(SRC_ZIP): $(SRC_ZIP_FILES) abs_src_zip=`cd $(@D) ; pwd`/$(@F) ; \ - ( cd $(SRC_CLASSES_DIR) ; $(FIND) . \( -name SCCS -o -name \*-template \) -prune -o -type f -print | $(ZIP) -q $$abs_src_zip -@ ) ; \ + ( cd $(SRC_CLASSES_DIR) ; $(FIND) . \( -name \*-template \) -prune -o -type f -print | $(ZIP) -q $$abs_src_zip -@ ) ; \ ( cd $(GENSRC_DIR) ; $(FIND) . -type f -print | $(ZIP) -q $$abs_src_zip -@ ) ; #----- bin.zip