build: add clean task to all libraries

This commit is contained in:
thunderbiscuit 2024-04-19 10:45:28 -04:00
parent fa17a862ce
commit 2f7652b979
No known key found for this signature in database
GPG Key ID: 88253696EB836462
4 changed files with 21 additions and 0 deletions

View File

@ -9,3 +9,9 @@ build:
publishlocal:
./gradlew publishToMavenLocal -P localBuild
clean:
rm -rf ../bdk-ffi/target/
rm -rf ./build/
rm -rf ./lib/build/
rm -rf ./plugins/build/

View File

@ -12,3 +12,9 @@ build:
publishlocal:
./gradlew publishToMavenLocal -P localBuild
clean:
rm -rf ../bdk-ffi/target/
rm -rf ./build/
rm -rf ./lib/build/
rm -rf ./plugins/build/

View File

@ -3,3 +3,9 @@ test:
maclocalbuild:
bash ./scripts/generate-macos-arm64.sh && python3 setup.py bdist_wheel --verbose
clean:
rm -rf ../bdk-ffi/target/
rm -rf ./bdkpython.egg-info/
rm -rf ./build/
rm -rf ./dist/

View File

@ -6,3 +6,6 @@ test:
offlinetests:
swift test --skip LiveWalletTests --skip LiveTxBuilderTests
clean:
rm -rf ../bdk-ffi/target/