summaryrefslogtreecommitdiffstats
path: root/bit
diff options
context:
space:
mode:
authorEric Norum <WENorum@lbl.gov>2002-11-21 19:52:25 +0000
committerEric Norum <WENorum@lbl.gov>2002-11-21 19:52:25 +0000
commit2f71e7e003da49a2b2edd4d060cba992cac6ea60 (patch)
tree7c227f498b490cfd04c937d08c69fcf67650c2c0 /bit
parent2002-11-19 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-addon-packages-2f71e7e003da49a2b2edd4d060cba992cac6ea60.tar.bz2
Add script support for additional add-ons (libtecla, BFD)
Diffstat (limited to 'bit')
-rwxr-xr-xbit8
1 files changed, 6 insertions, 2 deletions
diff --git a/bit b/bit
index 3c16885..f1e0ac0 100755
--- a/bit
+++ b/bit
@@ -1,6 +1,10 @@
#!/bin/sh
#
+# $Id$
+#
+
+#
# Build all add-on packages for the current RTEMS_MAKEFILE_PATH architecture.
#
set -ex
@@ -16,11 +20,11 @@ do
then
makefile="`echo $makefile | sed -e '/-.*/s///'`"
fi
- make -f "$makefile"
+ make -w -f "$makefile"
)
done
for p in $PACKAGES
do
- (cd $p ; make distclean)
+ (cd $p ; make clean distclean || true)
done