From 2b8ec7c3bc2f3dc9b8b69378b1205a4f39ab8b3d Mon Sep 17 00:00:00 2001 From: impeeza <41979604+impeeza@users.noreply.github.com> Date: Sun, 16 Nov 2025 17:19:26 -0500 Subject: [PATCH] Correct Typos on Makefiles Correct some Typos on Makefiles which avoid the complete clean of files at `make clean` --- Makefile | 1 + sysmod/Makefile | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0f3596e..e752ef4 100644 --- a/Makefile +++ b/Makefile @@ -46,6 +46,7 @@ $(TARGETS): clean: @rm -rf out + @rm -f sys-patch.zip @for i in $(TARGETS); do $(MAKE) -C $$i clean || exit 1; done; dist: all diff --git a/sysmod/Makefile b/sysmod/Makefile index 41098a7..2663479 100644 --- a/sysmod/Makefile +++ b/sysmod/Makefile @@ -180,14 +180,14 @@ else @rm -fr $(BUILD) $(TARGET).nsp $(TARGET).nso $(TARGET).npdm $(TARGET).elf endif @rm -rf out/ - @rm -f sys-patch.zip + @rm -f sys-patch-sysmodule.zip #--------------------------------------------------------------------------------- dist: all @echo making dist ... - @rm -f sys-patch-no-overlay.zip - @cd out; zip -r ../sys-patch-no-overlay.zip ./*; cd ../ + @rm -f sys-patch-sysmodule.zip + @cd out; zip -r ../sys-patch-sysmodule.zip ./*; cd ../ #--------------------------------------------------------------------------------- else .PHONY: all