summaryrefslogtreecommitdiffstats
path: root/bit
diff options
context:
space:
mode:
Diffstat (limited to 'bit')
-rwxr-xr-xbit10
1 files changed, 8 insertions, 2 deletions
diff --git a/bit b/bit
index 1d7eac7..ec68c19 100755
--- a/bit
+++ b/bit
@@ -9,7 +9,7 @@
#
set -ex
-PACKAGES="avl-1.4.0 ncurses-5.3 readline-4.3 libtecla-1.4.1 zlib-1.1.4"
+PACKAGES="rtemsNfs-1.1 avl-1.4.0 ncurses-5.3 readline-4.3 libtecla-1.4.1 zlib-1.1.4"
for p in $PACKAGES
do
@@ -19,7 +19,13 @@ do
then
makefile="`echo $makefile | sed -e '/-.*/s///'`"
fi
- make -w -f "$makefile"
+ if [ -r "$makefile" ]
+ then
+ make -w -f "$makefile"
+ else
+ make -w
+ make -w install
+ fi
cd ..
done