28 lines
349 B
Bash
Executable File
28 lines
349 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ln -s ./build/Makefile ../Makefile
|
|
|
|
# sta and iic build
|
|
#cd -
|
|
#
|
|
if [[ $1 == "kl2" ]]; then
|
|
. env_kunlun2.sh
|
|
else
|
|
. env.sh
|
|
fi
|
|
|
|
export layout_index=1
|
|
|
|
set -o errexit
|
|
make -C .. clobber
|
|
make PLATFORM=CHIP -C ..
|
|
|
|
# clean phy lib etc.
|
|
make -C .. dtest_clean
|
|
|
|
# set env.
|
|
. env_dtest_sta.sh
|
|
|
|
# build dtest
|
|
make -C .. dtest opt_build=1
|