diff options
author | Alan Modra <amodra@gmail.com> | 2009-05-26 03:20:10 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-05-26 03:20:10 +0000 |
commit | 00f3247a62aa73c2cd8f80d8d8614a89bc417301 (patch) | |
tree | 45593758fa23bf957546b1c7858a943842d8215f /ld/dep-in.sed | |
parent | 5de4cd1336d5bc50c1cd281eaacf62058e8a905b (diff) | |
download | gdb-00f3247a62aa73c2cd8f80d8d8614a89bc417301.zip gdb-00f3247a62aa73c2cd8f80d8d8614a89bc417301.tar.gz gdb-00f3247a62aa73c2cd8f80d8d8614a89bc417301.tar.bz2 |
* dep-in.sed: Output one filename per line with all lines having
continuation backslash. Prefix first line with "A", following
lines with "B".
* Makefile.am (DEP): Don't use dep.sed here.
(DEP1): Run $MKDEP on single files, use dep.sed here on dependencies,
sort and uniq.
* Makefile.in: Regenerate.
Diffstat (limited to 'ld/dep-in.sed')
-rw-r--r-- | ld/dep-in.sed | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/ld/dep-in.sed b/ld/dep-in.sed index 0bf6ffe..e51593b 100644 --- a/ld/dep-in.sed +++ b/ld/dep-in.sed @@ -1,6 +1,7 @@ :loop /\\$/N -/\\$/b loop +s/\\\n */ /g +t loop s! \./! !g s!@INCDIR@!$(INCDIR)!g @@ -11,11 +12,8 @@ s!@SRCDIR@/!!g s! \.\./bfd/hosts/[^ ]*\.h! !g s! \.\./intl/libintl\.h!!g -s/\\\n */ /g - s/ *$// s/ */ /g -/:$/d - -s/\(.\{50\}[^ ]*\) /\1 \\\ - /g +s/^ */A/ +s/ / \\\nB/g +$s/$/ \\/ |