Makefile

changeset 334
3bd41d40ab97
parent 330
7e13dbf7e8af
child 340
14b8e7eee105
     1.1 --- a/Makefile	Thu Apr 14 15:21:38 2011 -0700
     1.2 +++ b/Makefile	Tue Apr 26 16:30:00 2011 -0700
     1.3 @@ -97,7 +97,7 @@
     1.4  endef
     1.5  
     1.6  # Generic build of basic repo series
     1.7 -generic_build_repo_series::
     1.8 +generic_build_repo_series:: $(SOURCE_TIPS)
     1.9  	$(MKDIR) -p $(OUTPUTDIR)
    1.10  	$(MKDIR) -p $(OUTPUTDIR)/j2sdk-image
    1.11  	@$(call StartTimer)
    1.12 @@ -243,6 +243,14 @@
    1.13  debug_build:: build_debug_image
    1.14  fastdebug_build:: build_fastdebug_image
    1.15  
    1.16 +# The source tips are stored with the relative path to the repo.
    1.17 +#   This file will be used when constructing the jdk image.
    1.18 +source_tips: $(SOURCE_TIPS)
    1.19 +	$(CAT) $<
    1.20 +$(SOURCE_TIPS): FRC
    1.21 +	@$(prep-target)
    1.22 +	@$(call GetSourceTips)
    1.23 +
    1.24  clobber:: REPORT_BUILD_TIMES=
    1.25  clobber:: 
    1.26  	$(RM) -r $(OUTPUTDIR)/*

mercurial