diff options
author | Roland Pesch <pesch@cygnus> | 1991-10-15 00:35:13 +0000 |
---|---|---|
committer | Roland Pesch <pesch@cygnus> | 1991-10-15 00:35:13 +0000 |
commit | 0c10ff03a55e3b3ccfbd55447a9c3da44774c0a0 (patch) | |
tree | fce1ba7fee2c297509dbe48f05e860f3a1b8e75d /binutils | |
parent | 954ac2eafd8b65dfebbd705440328c4970f03649 (diff) | |
download | gdb-0c10ff03a55e3b3ccfbd55447a9c3da44774c0a0.zip gdb-0c10ff03a55e3b3ccfbd55447a9c3da44774c0a0.tar.gz gdb-0c10ff03a55e3b3ccfbd55447a9c3da44774c0a0.tar.bz2 |
New targets binutils.mm, binutils.me
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/Makefile.in | 19 |
2 files changed, 21 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 10e90e7..d556524 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +Mon Oct 14 17:34:29 1991 Roland H. Pesch (pesch at cygnus.com) + + * Makefile.in: add targets binutils.mm, binutils.me + Fri Oct 11 22:44:21 1991 John Gilmore (gnu at cygnus.com) * Makefile.in: Avoid Sun Make VPATH bugs by adding dependencies. diff --git a/binutils/Makefile.in b/binutils/Makefile.in index fd339f4..0d6dc64 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -160,16 +160,31 @@ binutils.dvi: binutils.texinfo binutils.info: binutils.texinfo makeinfo binutils.texinfo -# roff output (-ms) -# edit instances of "ms" to "me" or "mm" to suit your preferences. +# different targets for -ms, -mm, -me # (we don't use a variable because we don't trust all makes to handle # a var in the target name right). +# roff output (-ms) binutils.ms: binutils.texinfo sed -e '/\\input texinfo/d' \ -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ binutils.texinfo | \ texi2roff -ms >binutils.ms +# roff output (-mm) +binutils.mm: binutils.texinfo + sed -e '/\\input texinfo/d' \ + -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ + binutils.texinfo | \ + texi2roff -mm >binutils.mm + +# roff output (-me) +binutils.me: binutils.texinfo + sed -e '/\\input texinfo/d' \ + -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ + binutils.texinfo | \ + texi2roff -me >binutils.me + + ###################################################################### clean: |