summaryrefslogtreecommitdiffstats
path: root/bit
diff options
context:
space:
mode:
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