rebuild_tree
683 Bytes
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/sh
cd ..
BBPATH=`pwd`
dels=`ls | grep -v tests | grep -v CVS`
for i in $dels
do
rm -rf $i
done
cvs update -df
# del hw tree also
cd ../../../hw
rm -rf chip
cvs update -df
#delete lib also
cd ../lib
rm -rf lib*
cvs update -df
cd ${BBPATH}
cd ../..
./mklinks bcp
cd ${BBPATH}
# Build header files
cd ${BBPATH}/include
make headers
# Build PLI
cd ${BBPATH}/lib/libbcppli
make
# Build iosim
cd ${BBPATH}/iosim/src
make
# Build tools for dp vi and sp
cd ${BBPATH}/rspasm1201
make
cd ${BBPATH}/rspsim
make
cd ${BBPATH}/tools/data
make install
cd ${BBPATH}/rdpsim/tools
make install
cd ${BBPATH}/rdpsim/backend
make install
cd ${BBPATH}/rdpsim/pli
make