From 6913c88521cd8ddf2d708d717efb33bc6d3c5355 Mon Sep 17 00:00:00 2001 From: Vincent Barrilliot Date: Mon, 4 Dec 2023 19:34:48 +0100 Subject: [PATCH] Adapt fsutil invocation for Windows 10 --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 7b8a892..1977c3c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -114,7 +114,7 @@ PAD_FLASH_SIZE=524288 ifeq ($(OS),Windows_NT) export CFLAGS = -cpu=$(VBCC_CPU) +$(CFG_FILE) -I. -I$(CURDIR)/include -I$(CURDIR) export RM = cmd /C del /Q /F - PAD_CMD = fsutil seteof $@ $(PAD_FLASH_SIZE) + PAD_CMD = fsutil file setEOF $@ $(PAD_FLASH_SIZE) else export CFLAGS = -cpu=$(VBCC_CPU) +$(CFG_FILE)_linux -I. -I$(CURDIR)/include -I$(CURDIR) export RM = rm -f