Browse Source

* 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.
	(DEPTC, DEPOBJ, DEP2): Use dep.sed on dependencies, sort and uniq.
	Emit multi dependencies on one line.
	* Makefile.in: Regenerate.
cgen-1_1-branch
Alan Modra 17 years ago
parent
commit
5de4cd1336
  1. 12
      gas/ChangeLog
  2. 4666
      gas/Makefile.am
  3. 5138
      gas/Makefile.in
  4. 12
      gas/dep-in.sed

12
gas/ChangeLog

@ -1,3 +1,15 @@
2009-05-26 Alan Modra <amodra@bigpond.net.au>
* 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.
(DEPTC, DEPOBJ, DEP2): Use dep.sed on dependencies, sort and uniq.
Emit multi dependencies on one line.
* Makefile.in: Regenerate.
2009-05-25 Tristan Gingold <gingold@adacore.com>
* makefile.vms: New file to compile gas on VMS.

4666
gas/Makefile.am

File diff suppressed because it is too large

5138
gas/Makefile.in

File diff suppressed because it is too large

12
gas/dep-in.sed

@ -1,6 +1,7 @@
:loop
/\\$/N
/\\$/b loop
s/\\\n */ /g
t loop
s! \.\./! !g
s! \./! !g
@ -43,11 +44,8 @@ s! symbols\.h!!g
s! tc\.h!!g
s! write\.h!!g
s/\\\n */ /g
s/ *$//
s/ */ /g
/:$/d
s/\(.\{50\}[^ ]*\) /\1 \\\
/g
s/^ */A/
s/ / \\\nB/g
$s/$/ \\/

Loading…
Cancel
Save