atpg-ls/crun
2023-05-07 04:48:44 +00:00

14 lines
142 B
Bash
Executable File

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