blob: 6531d51ae44558680c1b38a275724435dd8aea57 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# check for Icarus Verilog
if ! which iverilog > /dev/null ; then
echo "$0: Error: Icarus Verilog 'iverilog' not found."
exit 1
fi
exec ${MAKE:-make} -f ../tools/autotest.mk *.v
|