rockbox/tools/checkwps/parse_configure.awk

12 lines
191 B
Awk
Raw Normal View History

BEGIN { FS="[|)]" }
/^[ \t]*([0-9]+)\|([^)]+)\)$/ {
model=$2
}
/^[ \t]*target="[^"]+"$/ {
match($0, "-D[^\"]+")
target=substr($0, RSTART+2, RLENGTH-2)
print target, model
}