From a7b84bbc20112d6e139bfd3dabb5b89d1bdbc2c8 Mon Sep 17 00:00:00 2001 From: Magesh K <47920326+mahee96@users.noreply.github.com> Date: Tue, 24 Dec 2024 00:02:35 +0530 Subject: [PATCH] [makefile]: added target for 'clean' --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a28b4b58..56e63806 100755 --- a/Makefile +++ b/Makefile @@ -299,4 +299,9 @@ ipa-altbackup: checkPaths copy-altbackup @cp -R -f "$(ALT_APP_SRC)/" "$(ALT_APP_PAYLOAD_DST)/$(TARGET_NAME)" @pushd "$(ALT_APP_DST_ARCHIVE)" && zip -r "../../$(ALT_APP_IPA_DST)" Payload && popd @cp -f "$(ALT_APP_IPA_DST)" AltStore/Resources - @echo " IPA created: AltStore/Resources/AltBackup.ipa" \ No newline at end of file + @echo " IPA created: AltStore/Resources/AltBackup.ipa" + +clean: + @rm -rf *.xcarchive/ + @rm -rf *.dSYM/ + @rm -rf build/ \ No newline at end of file