summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Norum <WENorum@lbl.gov>2004-09-28 18:06:29 +0000
committerEric Norum <WENorum@lbl.gov>2004-09-28 18:06:29 +0000
commit2387397d71f5ebf853952c063737c9605da4244c (patch)
tree8de2215526542d5771a8764089b48d666d77b305
parentAdd zlib compression library. (diff)
downloadrtems-addon-packages-2387397d71f5ebf853952c063737c9605da4244c.tar.bz2
Add support for packages which provide an acceptable makefile 'out of the box'.
Add Till Straumann's NFS package.
-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