comparison make/defs.make @ 12859:f509b8f4699b

7165611: implement Full Debug Symbols on MacOS X hotspot Summary: Add MacOS X FDS support to hotspot; add minimal MacOS X FDS import support to jdk; add MacOS X FDS support to install; add MacOS X FDS support to root. Reviewed-by: erikj, sla, dholmes, rdurbin, tbell, ihse
author dcubed
date Tue, 15 Oct 2013 08:25:43 -0700
parents f2110083203d
children 096c224171c4 2b8e28fdf503
comparison
equal deleted inserted replaced
12858:2f8728d92483 12859:f509b8f4699b
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