From f3fd8aa995a85b90d48807e77fc262997be6031e Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Wed, 25 Apr 2018 16:51:42 +0200 Subject: [PATCH] Makefile: add COPYREC --- makefiles/Makefile.unix.mk | 1 + makefiles/Makefile.win.mk | 1 + 2 files changed, 2 insertions(+) diff --git a/makefiles/Makefile.unix.mk b/makefiles/Makefile.unix.mk index 87c9cd3958..1d90cbe7cb 100644 --- a/makefiles/Makefile.unix.mk +++ b/makefiles/Makefile.unix.mk @@ -31,6 +31,7 @@ S = / CPSEP = : COPY = cp +COPYREC = cp -r DEL = rm -f DELREC = rm -rf GREP = grep diff --git a/makefiles/Makefile.win.mk b/makefiles/Makefile.win.mk index 3f8c72ce26..e50b471f05 100644 --- a/makefiles/Makefile.win.mk +++ b/makefiles/Makefile.win.mk @@ -41,6 +41,7 @@ S = \\ CPSEP =; COPY = copy +COPYREC = xcopy DEL = del DELREC = tools\rm.exe -rf GREP = tools\grep.exe