atpg-ls/crun
2023-07-03 06:52:47 +00:00

16 lines
171 B
Bash
Executable File

#!/bin/bash
clear
cmake .
make -j
if [ $? -ne 0 ]; then
echo "compile failed."
else
clear
echo "========================"
time ./atpg -i $1 --lut 8
fi