Updated Makefile to support recursive MKDIR operations in Windows
This commit is contained in:
parent
462fd1c302
commit
f8137f253e
4
Makefile
4
Makefile
@ -21,7 +21,7 @@ ifeq ($(OS), Windows_NT)
|
|||||||
libGenDir := src
|
libGenDir := src
|
||||||
THEN := &&
|
THEN := &&
|
||||||
PATHSEP := \$(BLANK)
|
PATHSEP := \$(BLANK)
|
||||||
MKDIR := -mkdir
|
MKDIR := -mkdir -p
|
||||||
RM := -del /q
|
RM := -del /q
|
||||||
COPY = -robocopy "$(call platformpth,$1)" "$(call platformpth,$2)" $3
|
COPY = -robocopy "$(call platformpth,$1)" "$(call platformpth,$2)" $3
|
||||||
else
|
else
|
||||||
@ -93,4 +93,4 @@ execute:
|
|||||||
|
|
||||||
# Clean up all relevant files
|
# Clean up all relevant files
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(call platformpth, $(buildDir)/*)
|
$(RM) $(call platformpth, $(buildDir)/*)
|
||||||
|
Loading…
Reference in New Issue
Block a user