-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
37 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,39 @@ | ||
default *FLAGS: | ||
cargo clean {{ FLAGS }} | ||
|
||
dir +TARGET_DIR: | ||
cargo clean --target-dir target/{{ TARGET_DIR }} | ||
|
||
backups: | ||
find {{ justfile_directory() }} -type f -name '*~' -exec rm -f {} + | ||
|
||
mod deb 'clean/deb.just' | ||
doc: | ||
find {{ justfile_directory() }} -type d -wholename "{{ justfile_directory() }}/target/doc" -exec rm -rf {} + | ||
|
||
debug: | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/target/debug' -exec rm -rf {} + | ||
|
||
release: | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/target/release' -exec rm -rf {} + | ||
|
||
aarch64-linux-android: | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/target/aarch64-linux-android' -exec rm -rf {} + | ||
|
||
alias aarch64 := aarch64-linux-android | ||
|
||
arm-linux-androideabi: | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/target/arm-linux-androideabi' -exec rm -rf {} + | ||
|
||
mod target 'clean/target.just' | ||
alias arm := arm-linux-androideabi | ||
|
||
x86_64-linux-android: | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/target/x86_64-linux-android' -exec rm -rf {} + | ||
|
||
alias x86_64 := x86_64-linux-android | ||
|
||
i686-linux-android: | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/target/i686-linux-android' -exec rm -rf {} + | ||
|
||
alias i686 := i686-linux-android | ||
|
||
mod deb 'clean/deb.just' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
default: | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/deb' -exec rm -rf {} + | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/target/deb' -exec rm -rf {} + | ||
|
||
packages: | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/deb/packages' -exec rm -rf {} + | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/target/deb/packages' -exec rm -rf {} + | ||
|
||
manifests: | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/deb/manifests' -exec rm -rf {} + | ||
find {{ justfile_directory() }} -type d -wholename '{{ justfile_directory() }}/target/deb/manifests' -exec rm -rf {} + |
This file was deleted.
Oops, something went wrong.