* Makefile.in, ar.c, bucomm.c, copy.c, cplus-dem.c, filemode.c,
i960-pinsn.c, m68k-pinsn.c, nm.c, objdump.c, size.c, sparc-pinsn.c, * strip.c: Add or update Copyright notice. * TODO: Add note on 'nm -a'. * version.c: Update version number to 1.90. * Makefile.in: Fix making of documentation for dist.
This commit is contained in:
parent
637942e4db
commit
d8474a9bc1
10 changed files with 84 additions and 23 deletions
|
@ -1,3 +1,18 @@
|
|||
Wed Oct 16 11:45:36 1991 Per Bothner (bothner at cygnus.com)
|
||||
|
||||
* Makefile.in, ar.c, bucomm.c, copy.c, cplus-dem.c, filemode.c,
|
||||
i960-pinsn.c, m68k-pinsn.c, nm.c, objdump.c, size.c, sparc-pinsn.c,
|
||||
* strip.c: Add or update Copyright notice.
|
||||
* TODO: Add note on 'nm -a'.
|
||||
* version.c: Update version number to 1.90.
|
||||
* Makefile.in: Fix making of documentation for dist.
|
||||
|
||||
Tue Oct 15 00:17:17 1991 Per Bothner (bothner at cygnus.com)
|
||||
|
||||
* README: New file.
|
||||
* Makefile.in: New kludgy rules for making a tarfile.
|
||||
* Makefile.in: Fix bindir path.
|
||||
|
||||
Mon Oct 14 17:34:29 1991 Roland H. Pesch (pesch at cygnus.com)
|
||||
|
||||
* Makefile.in: add targets binutils.mm, binutils.me
|
||||
|
|
|
@ -1,4 +1,21 @@
|
|||
### Makefile for GNU binary-file utilities
|
||||
# Makefile for GNU binary-file utilities
|
||||
# Copyright (C) 1989-1991 Free Software Foundation, Inc.
|
||||
|
||||
# This file is part of GNU binutils.
|
||||
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
#$Id$
|
||||
|
||||
|
@ -12,7 +29,7 @@ DIST_NAME=binutils-beta-${VERSION}
|
|||
|
||||
version=`$(unsubdir)/../gcc$(subdir)/gcc -dumpversion`
|
||||
prefix = $(destdir)
|
||||
bindir = $(prefix)/H-$(host_alias)/T-independent/bin
|
||||
bindir = $(prefix)/bin
|
||||
|
||||
# Where to find texinfo.tex to format docn with TeX
|
||||
TEXIDIR = $(srcdir)/../texinfo/fsf
|
||||
|
@ -206,10 +223,12 @@ install: $(PROGS)
|
|||
|
||||
dist: $(DIST_NAME).tar.Z
|
||||
|
||||
$(DIST_NAME).tar.Z: proto-dir
|
||||
ln -s proto-dir $(DIST_NAME)
|
||||
tar chf - $(DIST_NAME) | compress >$(DIST_NAME).tar.Z
|
||||
rm -rf $(DIST_NAME)
|
||||
$(DIST_NAME).tar.Z:
|
||||
cd ../..; rm -f $(DISTNAME); ln -s devo $(DIST_NAME)
|
||||
cd ..; Sanitize test
|
||||
cd binutils; make binutils.mm -f Makefile.in
|
||||
cd ../ld; make ld.mm -f Makefile.in
|
||||
cd ../..; tar chf - $(DIST_NAME) | compress >$(DIST_NAME).tar.Z
|
||||
|
||||
# These get around a bug in Sun Make in SunOS 4.1.1
|
||||
alloca.o:alloca.c
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
o 'nm -a' should print stab code names.
|
||||
|
||||
OLD:
|
||||
|
||||
o - merge:
|
||||
copy and strip
|
||||
ar and ranlib
|
||||
|
|
|
@ -1,5 +1,22 @@
|
|||
/*** copy.c -- copy object file from input to output, optionally
|
||||
massaging it */
|
||||
/* copy.c -- copy object file from input to output, optionally massaging it.
|
||||
Copyright (C) 1991 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||
|
||||
#include "bfd.h"
|
||||
#include "sysdep.h"
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 1, or (at your option)
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
/* Disassemble i80960 instructions.
|
||||
*/
|
||||
|
||||
/* Copyright (C) 1990, 1991 Free Software Foundation, Inc.
|
||||
Copyright (C) 1990, 1991 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of BFD, the Binary File Diddler.
|
||||
|
||||
BFD is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 1, or (at your option)
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
BFD is distributed in the hope that it will be useful,
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
/* Print m68k instructions for objdump
|
||||
Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
|
||||
Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
|
||||
|
||||
|
||||
This file is part of the binutils.
|
||||
|
||||
The binutils are free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 1, or (at your option)
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
The binutils are distributed in the hope that they will be useful,
|
||||
|
@ -20,9 +20,17 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||
|
||||
/* $Id$
|
||||
$Log$
|
||||
Revision 1.3 1991/10/11 11:22:00 gnu
|
||||
Include bfd.h before sysdep.h, so ansidecl and PROTO() get defined first.
|
||||
Revision 1.4 1991/10/16 18:56:56 bothner
|
||||
* Makefile.in, ar.c, bucomm.c, copy.c, cplus-dem.c, filemode.c,
|
||||
i960-pinsn.c, m68k-pinsn.c, nm.c, objdump.c, size.c, sparc-pinsn.c,
|
||||
* strip.c: Add or update Copyright notice.
|
||||
* TODO: Add note on 'nm -a'.
|
||||
* version.c: Update version number to 1.90.
|
||||
* Makefile.in: Fix making of documentation for dist.
|
||||
|
||||
* Revision 1.3 1991/10/11 11:22:00 gnu
|
||||
* Include bfd.h before sysdep.h, so ansidecl and PROTO() get defined first.
|
||||
*
|
||||
* Revision 1.2 1991/06/14 22:54:44 steve
|
||||
* *** empty log message ***
|
||||
*
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
/* disassemble sparc instructions for objdump
|
||||
Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
|
||||
Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
|
||||
|
||||
|
||||
This file is part of the binutils.
|
||||
|
||||
The binutils are free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 1, or (at your option)
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
The binutils are distributed in the hope that they will be useful,
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*** strip.c -- strip certain symbols from a rel file.
|
||||
Copyright (C) 1986, 1990 Free Software Foundation, Inc.
|
||||
/* strip.c -- strip certain symbols from a rel file.
|
||||
Copyright (C) 1986, 1990, 1991 Free Software Foundation, Inc.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 1, or (at your option)
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
They all change in lockstep -- it's easier that way
|
||||
*/
|
||||
|
||||
char *program_version = "1.10 (Cygnus BFD)";
|
||||
char *program_version = "1.90";
|
||||
|
|
Loading…
Add table
Reference in a new issue