From 8c58e5683cbd90d529eb1ea86fce019e553b2248 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Thu, 5 Aug 2021 18:30:33 +0100 Subject: Cross compilation support --- clean | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'clean') diff --git a/clean b/clean index ae420c3..5d6fc0d 100755 --- a/clean +++ b/clean @@ -2,6 +2,7 @@ if command -v redo-targets >/dev/null 2>&1; then redo-targets | tr '\n' '\0' | xargs -r0 rm -f else - find . -type f \( -o -name '*.o' -o -name '*.inc' \) -exec rm -f {} + - rm -f .compile .link-executable .link-library .vars.rc all compile_flags.txt libpack.so test test_gen + find . -type f \( -o -name '*.o' -o -name '*.inc' -o '*.tool' \) \ + -exec rm -f {} + + rm -f .vars.rc all compile_flags.txt libpack.so test test_gen fi -- cgit v1.2.3-54-g00ecf