15 lines
152 B
Bash
Executable File
15 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
|
|
clear
|
|
|
|
make -j
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "compile failed."
|
|
else
|
|
clear
|
|
echo "========================"
|
|
time ./atpg $1
|
|
fi
|
|
|