-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
None
-
beta
-
generic
-
generic
Name: dm26566 Date: 02/09/2001
This macro is in Defs.gmk; similar ones are in Resources.gmk and maybe
elsewhere:
define install-file
@$(ECHO) Installing $@
@$(MKDIR) -p $(@D)
@$(RM) $@
@$(CP) $< $@
endef
Scott Seligman says:
A pet peeve of mine: I don't like the way this makes a speech telling
approximately what it's doing, rather than printing the actual
command. The $(MKDIR) and $(RM) and parts are reasonably muffled, but
what would you think about deleting the $(ECHO) line and changing
@$(CP) to $(CP) ?
======================================================================