summaryrefslogtreecommitdiffstats
path: root/bit
blob: a1aef702924769c8d29ccd34681cb09dd568a7ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -ex

PACKAGES="avl-1.4.0 ncurses-5.2 readline-4.2"

for p in $PACKAGES
do
	pname=`echo $p | sed -e '/-.*/s///'`
	(cd $p ; make -f ../RTEMS_Makefiles/Makefile.$pname)
done

for p in $PACKAGES
do
	(cd $p ; make distclean)
done