atpg-ls/crun

14 lines
142 B
Plaintext
Raw Normal View History

2023-02-19 19:42:50 +08:00
#!/bin/bash
clear
2023-05-07 04:48:44 +00:00
make -j
2023-02-19 19:42:50 +08:00
if [ $? -ne 0 ]; then
echo "compile failed."
else
echo "========================"
time ./atpg $1
fi