16 lines
171 B
Bash
Executable File
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 4
|
|
fi
|
|
|