1#!/usr/bin/awk -f
2
3/^  [*]( libmaa\/[^ :]+)+:/ {
4	skip = 1
5	next
6}
7
8/^  [*]/ {
9	skip = 0
10	print
11	next
12}
13
14!skip {
15	print
16}
17