blob: 191a0a07d29c5e2b72a9018fd8f7f98b6db08070 [file] [log] [blame]
#!/bin/bash
unfinished_cells=""
physical_cells="DECAPXL DECAPX1 FILLX1 FILLX2 FILLX4 FILLX8 FILLX16 FILLX32"
test_cells="test final"
res="s/\("
for x in ${unfinished_cells}; do res="${res}${x}\\|"; done
for x in ${test_cells}; do res="${res}${x}\\|"; done
if [ $1 == "-lef_gen" ]
then
true
fi
if [ $1 == "-libchar" ]
then
for x in ${physical_cells}; do res="${res}${x}\\|"; done
fi
res="${res}nosuchfile\\)[^ ]*//g"
echo ${res}