Differences From Artifact [61a9f12cd8]:
- Executable file clean.sh — part of check-in [26c340d29e] at 2019-08-19 04:51:01 on branch trunk — begin move away from legacy build system (user: lexi, size: 139) [annotate] [blame] [check-ins using]
To Artifact [67375a0380]:
- Executable file clean.sh — part of check-in [34c625a47b] at 2019-08-19 05:42:02 on branch trunk — switch over to new build mechanism and formally deprecate makefiles (user: lexi, size: 138) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 |
#!/usr/bin/env bash
. global/common.sh
out=${out:-out}
gen=${gen:-gen}
say "cleaning libk build artifacts"
set -x
rm -r $out
rm -r $gen
|
< < > |
1 2 3 4 5 6 7 8 9 10 |
#!/usr/bin/env bash
out=${out:-out}
gen=${gen:-gen}
. global/common.sh
say "cleaning libk build artifacts"
set -x
rm -r $out
rm -r $gen
|