From 053cab0c62095dabf358aaefc4cfd9ac4cbc4ebd Mon Sep 17 00:00:00 2001 From: Xavier Mitault Date: Wed, 29 Nov 2023 20:07:28 +0000 Subject: [PATCH] Fix args not passed in makefile PATCH --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dc2483e..1081620 100644 --- a/Makefile +++ b/Makefile @@ -23,9 +23,9 @@ all: $(TARGET) $(TARGET): ifeq ($(OS),Windows_NT) - ./scripts/Build.ps1 + ./scripts/Build.ps1 $(BIN_STACK) $(BIN_TARGET) else - ./scripts/Build.sh + ./scripts/Build.sh $(BIN_STACK) $(BIN_TARGET) endif $(CP) "$(BIN_TARGET)" "$(MARVIN_TARGET)"