added support for cmd.exe as a shell on make.

This commit is contained in:
kkitayam
2021-01-10 20:46:29 +09:00
parent 05728e2b18
commit 8fa083d79e
3 changed files with 29 additions and 1 deletions

View File

@@ -34,9 +34,14 @@ CXX = $(CROSS_COMPILE)g++
OBJCOPY = $(CROSS_COMPILE)objcopy
SIZE = $(CROSS_COMPILE)size
MKDIR = mkdir
ifeq ($(UNAME),Windows)
CP = copy
RM = del
else
SED = sed
CP = cp
RM = rm
endif
#-------------- Source files and compiler flags --------------