9 lines
196 B
Bash
Executable file
9 lines
196 B
Bash
Executable file
#!/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
|