atpg-ls/crun

15 lines
152 B
Plaintext
Raw Permalink 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
2023-05-09 23:14:22 +08:00
clear
2023-02-19 19:42:50 +08:00
echo "========================"
time ./atpg $1
fi