summaryrefslogtreecommitdiffstats
path: root/release/picobsd/build/clean
blob: dc1d16b463e4cba3a087c0efba1d256ae43c795c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#! /bin/sh -

#
#	$Id: clean,v 1.9 1999/08/22 21:42:30 dwhite Exp $
#
set -e

TARGETS="dial net isp router"
if [ $# -lt 1 ]; then
    echo "What to clean? Possible targets are ${TARGETS} or 'all'"
    exit 1
fi

if [ "$1" = "all" ]; then
    list=${TARGETS}
    old="old"
else
    list=$1
    old=$1
fi
if [ -f picobsd.bin ]; then
    mv -f picobsd.bin picobsd.bin.${old}
fi

rm -f kernel kernel.gz fs.PICOBSD *.o *core *.db \
	.build.reply stage1.out build.status
cd ..
rm -rf help/tmp_hlp
echo "===================== $0 tools started ===================="
for i in `ls -d tinyware/[a-z]*` tools/write_mfs_in_kernel ; do
	(cd ${i}; \
	if [ -f Makefile ]; then \
	     make clean && make cleandepend;\
	fi)
done
for j in $list ; do
	echo "===================== $0 $j started ======================"
	(cd ${j}/crunch1; \
	if [ -f Makefile ]; then \
	     make clean ; \
	fi)
	echo "=============== $0 $j completed successfuly =============="
done
OpenPOWER on IntegriCloud