2013-01-05 11:13:26 +01:00
|
|
|
#!/bin/bash
|
2013-03-16 21:21:38 +01:00
|
|
|
|
|
|
|
|
# check for Icarus Verilog
|
|
|
|
|
if ! which iverilog > /dev/null ; then
|
|
|
|
|
echo "$0: Error: Icarus Verilog 'iverilog' not found."
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
2014-07-30 19:21:52 +02:00
|
|
|
exec ${MAKE:-make} -f ../tools/autotest.mk *.v
|