2013-01-05 04:13:26 -06:00
|
|
|
#!/bin/bash
|
2013-03-16 15:21:38 -05: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 12:21:52 -05:00
|
|
|
exec ${MAKE:-make} -f ../tools/autotest.mk *.v
|