diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2004-01-12 12:36:13 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2004-01-12 12:36:13 +0100 |
commit | 5fb1788b9b93b88de3491894fb0a93450d1cd6db (patch) | |
tree | 115ab3b7f9d7b3d9542b89be90b51d12dbb15482 /gcc | |
parent | 9ddb66ca2c45a7b33ccabfa750292234928d6a2c (diff) | |
download | gcc-5fb1788b9b93b88de3491894fb0a93450d1cd6db.zip gcc-5fb1788b9b93b88de3491894fb0a93450d1cd6db.tar.gz gcc-5fb1788b9b93b88de3491894fb0a93450d1cd6db.tar.bz2 |
[multiple changes]
2004-01-12 Arnaud Charlet <charlet@act-europe.fr>
PR ada/13572
* bld.adb (Recursive_Process): Reference prefix/share/gnat instead of
prefix/share/make
* Makefile.generic: Update copyright.
Add license notice.
* Makefile.in (ADA_SHARE_MAKE_DIR): Set to prefix/share/gnat instead
of prefix/share/make.
* Makefile.prolog: Update copyright.
Add license notice.
2004-01-12 Bernard Banner <banner@gnat.com>
* Makefile.in: map 86numaux to a-numaux for x86_64
From-SVN: r75712
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/Makefile.generic | 19 | ||||
-rw-r--r-- | gcc/ada/Makefile.in | 6 | ||||
-rw-r--r-- | gcc/ada/Makefile.prolog | 19 | ||||
-rw-r--r-- | gcc/ada/bld.adb | 4 |
4 files changed, 42 insertions, 6 deletions
diff --git a/gcc/ada/Makefile.generic b/gcc/ada/Makefile.generic index 34e0d24..cb27f4f 100644 --- a/gcc/ada/Makefile.generic +++ b/gcc/ada/Makefile.generic @@ -1,7 +1,24 @@ # Generic Makefile to support compilation for multiple languages. # See also Makefile.prolog # -# Copyright (C) 2001-2003 ACT-Europe +# Copyright (C) 2001-2004 Free Software Foundation, Inc. + +# This file is part of GCC. + +# GCC 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, or (at your option) +# any later version. + +# GCC 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 GCC; see the file COPYING. If not, write to +# the Free Software Foundation, 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. # This Makefile provides a very generic framework of the following # functionalities: diff --git a/gcc/ada/Makefile.in b/gcc/ada/Makefile.in index 79b4fc2..df5ec60 100644 --- a/gcc/ada/Makefile.in +++ b/gcc/ada/Makefile.in @@ -1,5 +1,5 @@ # Makefile for GNU Ada Compiler (GNAT). -# Copyright (C) 1994-2003 Free Software Foundation, Inc. +# Copyright (C) 1994-2004 Free Software Foundation, Inc. #This file is part of GCC. @@ -1272,6 +1272,8 @@ endif ifeq ($(strip $(filter-out %x86_64 linux%,$(arch) $(osys))),) LIBGNAT_TARGET_PAIRS = \ a-intnam.ads<4lintnam.ads \ + a-numaux.adb<86numaux.adb \ + a-numaux.ads<86numaux.ads \ s-inmaop.adb<7sinmaop.adb \ s-intman.adb<7sintman.adb \ s-osinte.ads<5iosinte.ads \ @@ -2016,7 +2018,7 @@ b_gnatm.o : b_gnatm.c ADA_INCLUDE_DIR = $(libsubdir)/adainclude ADA_RTL_OBJ_DIR = $(libsubdir)/adalib -ADA_SHARE_MAKE_DIR = $(prefix)/share/make +ADA_SHARE_MAKE_DIR = $(prefix)/share/gnat # force no sibling call optimization on s-traceb.o so the number of stack # frames to be skipped when computing a call chain is not modified by diff --git a/gcc/ada/Makefile.prolog b/gcc/ada/Makefile.prolog index 1aaff29..cdad81f 100644 --- a/gcc/ada/Makefile.prolog +++ b/gcc/ada/Makefile.prolog @@ -2,7 +2,24 @@ # to support compilation for multiple languages. # See also Makefile.generic # -# Copyright (C) 2001-2002 ACT-Europe +# Copyright (C) 2001-2004 Free Software Foundation, Inc. + +# This file is part of GCC. + +# GCC 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, or (at your option) +# any later version. + +# GCC 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 GCC; see the file COPYING. If not, write to +# the Free Software Foundation, 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. # all reserved variables are saved in <VAR>.saved diff --git a/gcc/ada/bld.adb b/gcc/ada/bld.adb index 4cecd56..c690f63 100644 --- a/gcc/ada/bld.adb +++ b/gcc/ada/bld.adb @@ -2626,7 +2626,7 @@ package body Bld is Put_Directory_Separator; Put ("share"); Put_Directory_Separator; - Put ("make"); + Put ("gnat"); Put_Directory_Separator; Put ("Makefile.prolog"); New_Line; @@ -3347,7 +3347,7 @@ package body Bld is Put_Directory_Separator; Put ("share"); Put_Directory_Separator; - Put ("make"); + Put ("gnat"); Put_Directory_Separator; Put ("Makefile.generic"); New_Line; |