Make copying update the time on Windows.

This commit is contained in:
ccd0 2016-04-18 06:37:27 -07:00
parent c9934d69fa
commit 889bfe0803

View File

@ -2,8 +2,8 @@ ifdef ComSpec
BIN := $(subst /,\,node_modules/.bin/)
RMDIR := -rmdir /s /q
RM := -del
CP = copy /y $(subst /,\,$<) $(subst /,\,$@)
CP2 = copy /y $(subst /,\,$1) $(subst /,\,$2)
CP = copy /y $(subst /,\,$<)+ $(subst /,\,$@)
CP2 = copy /y $(subst /,\,$1)+ $(subst /,\,$2)
MKDIR = -mkdir $(subst /,\,$@)
ESC_DOLLAR = $$
else