1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-30 02:32:53 +08:00
oh/build_all.sh
Andreas Olofsson 35f74f615f Adding build_all script
-So many modules depend on each other, so you need to ability to compile all when you make a change to a core module
2016-03-21 11:22:24 -04:00

13 lines
171 B
Bash
Executable File

#!/bin/bash
list=(accelerator elink emailbox emmu gpio mio pic spi)
for dut in ${list[*]}
do
echo "**Building $dut"
./build.sh $dut/dv/dut_$dut.v
done
cd ../