From 13184079f31013f629ee02f62b16774b513d36c1 Mon Sep 17 00:00:00 2001 From: Sauraen Date: Fri, 24 Feb 2023 10:41:00 -0800 Subject: [PATCH] More fixes for Windows --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 973aed1..c5aaed1 100644 --- a/Makefile +++ b/Makefile @@ -122,9 +122,9 @@ define ucode_rule $$(UCODE_OUTPUT_DIR): UCODE_OUTPUT_DIR:=$$(UCODE_OUTPUT_DIR) # Directory target recipe $$(UCODE_OUTPUT_DIR): - @echo "$(INFO)Creating directory $$(UCODE_OUTPUT_DIR)$(NO_COL)" + @printf "$(INFO)Creating directory $$(UCODE_OUTPUT_DIR)$(NO_COL)\n" ifeq ($(OS),Windows_NT) - @mkdir $$(UCODE_OUTPUT_DIR) + @mkdir $$(subst /,\,$$(UCODE_OUTPUT_DIR)) else @mkdir -p $$(UCODE_OUTPUT_DIR) endif