comparison make/defs.make @ 13086:096c224171c4

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Wed, 20 Nov 2013 00:10:38 +0100
parents 359f7e70ae7f f509b8f4699b
children d8041d695d19
comparison
equal deleted inserted replaced
12782:92b7ec34ddfa 13086:096c224171c4
75 define install-file 75 define install-file
76 @$(MKDIR) -p $(@D) 76 @$(MKDIR) -p $(@D)
77 @$(RM) $@ 77 @$(RM) $@
78 $(CP) $< $@ 78 $(CP) $< $@
79 endef 79 endef
80
81 # MacOS X strongly discourages 'cp -r' and provides 'cp -R' instead.
82 # May need to have a MacOS X specific definition of install-dir
83 # sometime in the future.
84 define install-dir
85 @$(MKDIR) -p $(@D)
86 @$(RM) -r $@
87 $(CP) -r $< $@
88 endef
89
80 define prep-target 90 define prep-target
81 @$(MKDIR) -p $(@D) 91 @$(MKDIR) -p $(@D)
82 @$(RM) $@ 92 @$(RM) $@
83 endef 93 endef
84 94