10 lines
197 B
Plaintext
10 lines
197 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
#cannot rm build because it erase software images that the make file copy there
|
||
|
#rm -rf ./build
|
||
|
|
||
|
mkdir ./build
|
||
|
|
||
|
cd ./build
|
||
|
vivado -mode batch -source ../make_vivado_project.tcl -notrace
|