From e4cf6a9e1b767bbc8ba0f8f58e7ba868a4219367 Mon Sep 17 00:00:00 2001 From: Hay1tsme Date: Mon, 13 Feb 2023 02:53:37 -0500 Subject: [PATCH] fix zips not updating on build --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a3c4197..f39d291 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,11 @@ build: $(V)ninja -C $(BUILD_DIR_64) .PHONY: dist # Build and create a zip distribution package -dist: build zip +dist: build clean-zip zip + +.PHONY: clean-zip # Remove zip files from build dir before packaging +clean-zip: + $(V)rm -Rf $(BUILD_DIR_ZIP)/*.zip .PHONY: zip # Create a zip distribution pacakge zip: $(BUILD_DIR_ZIP)/segatools.zip