mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
35f74f615f
-So many modules depend on each other, so you need to ability to compile all when you make a change to a core module
13 lines
171 B
Bash
Executable File
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 ../
|
|
|