diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2021-07-22 16:23:31 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2021-12-29 22:45:04 +0000 |
commit | a4e734fcdbfaee60455eeb7bc08255bb6c1e8729 (patch) | |
tree | 2b61980a68fa1b533f8bc3308572a7f1404f9627 /newlib/libc/machine | |
parent | 8e166351b3079f19154666943673604382d9ec87 (diff) | |
download | newlib-a4e734fcdbfaee60455eeb7bc08255bb6c1e8729.zip newlib-a4e734fcdbfaee60455eeb7bc08255bb6c1e8729.tar.gz newlib-a4e734fcdbfaee60455eeb7bc08255bb6c1e8729.tar.bz2 |
newlib: Remove automake option 'cygnus'
The 'cygnus' option was removed from automake 1.13 in 2012, so the
presence of this option prevents that or a later version of automake
being used.
A check-list of the effects of '--cygnus' from the automake 1.12
documentation, and steps taken (where possible) to preserve those
effects (See also this thread [1] for discussion on that):
[1] https://lists.gnu.org/archive/html/bug-automake/2012-03/msg00048.html
1. The foreign strictness is implied.
Already present in AM_INIT_AUTOMAKE in newlib/acinclude.m4
2. The options no-installinfo, no-dependencies and no-dist are implied.
Already present in AM_INIT_AUTOMAKE in newlib/acinclude.m4
Future work: Remove no-dependencies and any explicit header dependencies,
and use automatic dependency tracking instead. Are there explicit rules
which are now redundant to removing no-installinfo and no-dist?
3. The macro AM_MAINTAINER_MODE is required.
Already present in newlib/acinclude.m4
Note that maintainer-mode is still disabled by default.
4. Info files are always created in the build directory, and not in the
source directory.
This appears to be an error in the automake documentation describing
'--cygnus' [2]. newlib's info files are generated in the source
directory, and no special steps are needed to keep doing that.
[2] https://lists.gnu.org/archive/html/bug-automake/2012-04/msg00028.html
5. texinfo.tex is not required if a Texinfo source file is specified.
(The assumption is that the file will be supplied, but in a place that
automake cannot find.)
This effect is overriden by an explicit setting of the TEXINFO_TEX
variable (the directory part of which is fed into texi2X via the
TEXINPUTS environment variable).
6. Certain tools will be searched for in the build tree as well as in the
user's PATH. These tools are runtest, expect, makeinfo and texi2dvi.
For obscure automake reasons, this effect of '--cygnus' is not active
for makeinfo in newlib's configury.
However, there appears to be top-level configury which selects in-tree
runtest, expect and makeinfo, if present. So, if that works as it
appears, this effect is preserved. If not, this may cause problem if
anyone is building those tools in-tree.
This effect is not preserved for texi2dvi. This may cause problems if
anyone is building texinfo in-tree.
If needed, explicit checks for those tools looking in places relative to
$(top_srcdir)/../ as well as in PATH could be added.
7. The check target doesn't depend on all.
This effect is not preseved. The check target now depends on the all
target.
This concern seems somewhat academic given the current state of the
testsuite.
Also note that this doesn't touch libgloss.
Diffstat (limited to 'newlib/libc/machine')
61 files changed, 0 insertions, 122 deletions
diff --git a/newlib/libc/machine/Makefile.am b/newlib/libc/machine/Makefile.am index 831c0c3..5fe8aac 100644 --- a/newlib/libc/machine/Makefile.am +++ b/newlib/libc/machine/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - SUBDIRS = $(machine_dir) . if HAVE_MACHINE_DIR diff --git a/newlib/libc/machine/a29k/Makefile.am b/newlib/libc/machine/a29k/Makefile.am index 977755c..d3dd753 100644 --- a/newlib/libc/machine/a29k/Makefile.am +++ b/newlib/libc/machine/a29k/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/aarch64/Makefile.am b/newlib/libc/machine/aarch64/Makefile.am index e8b8197..ca7c790 100644 --- a/newlib/libc/machine/aarch64/Makefile.am +++ b/newlib/libc/machine/aarch64/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/amdgcn/Makefile.am b/newlib/libc/machine/amdgcn/Makefile.am index f672115..accde81 100644 --- a/newlib/libc/machine/amdgcn/Makefile.am +++ b/newlib/libc/machine/amdgcn/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/arc/Makefile.am b/newlib/libc/machine/arc/Makefile.am index 8dee84b..fe477bf 100644 --- a/newlib/libc/machine/arc/Makefile.am +++ b/newlib/libc/machine/arc/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) noinst_LIBRARIES = lib.a diff --git a/newlib/libc/machine/arm/Makefile.am b/newlib/libc/machine/arm/Makefile.am index 9bd35e7..2d55946 100644 --- a/newlib/libc/machine/arm/Makefile.am +++ b/newlib/libc/machine/arm/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/bfin/Makefile.am b/newlib/libc/machine/bfin/Makefile.am index 72d82b7..c62a35d 100644 --- a/newlib/libc/machine/bfin/Makefile.am +++ b/newlib/libc/machine/bfin/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/cr16/Makefile.am b/newlib/libc/machine/cr16/Makefile.am index eca778d..d8c0335 100644 --- a/newlib/libc/machine/cr16/Makefile.am +++ b/newlib/libc/machine/cr16/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/cris/Makefile.am b/newlib/libc/machine/cris/Makefile.am index 4e75b6e..95085a1 100644 --- a/newlib/libc/machine/cris/Makefile.am +++ b/newlib/libc/machine/cris/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/crx/Makefile.am b/newlib/libc/machine/crx/Makefile.am index eca778d..d8c0335 100644 --- a/newlib/libc/machine/crx/Makefile.am +++ b/newlib/libc/machine/crx/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/csky/Makefile.am b/newlib/libc/machine/csky/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/csky/Makefile.am +++ b/newlib/libc/machine/csky/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/d10v/Makefile.am b/newlib/libc/machine/d10v/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/d10v/Makefile.am +++ b/newlib/libc/machine/d10v/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/d30v/Makefile.am b/newlib/libc/machine/d30v/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/d30v/Makefile.am +++ b/newlib/libc/machine/d30v/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/epiphany/Makefile.am b/newlib/libc/machine/epiphany/Makefile.am index 6e95d8f..8c09470 100644 --- a/newlib/libc/machine/epiphany/Makefile.am +++ b/newlib/libc/machine/epiphany/Makefile.am @@ -26,8 +26,6 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/fr30/Makefile.am b/newlib/libc/machine/fr30/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/fr30/Makefile.am +++ b/newlib/libc/machine/fr30/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/frv/Makefile.am b/newlib/libc/machine/frv/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/frv/Makefile.am +++ b/newlib/libc/machine/frv/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/ft32/Makefile.am b/newlib/libc/machine/ft32/Makefile.am index 4aa79b0..3d9ec9c 100644 --- a/newlib/libc/machine/ft32/Makefile.am +++ b/newlib/libc/machine/ft32/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/h8300/Makefile.am b/newlib/libc/machine/h8300/Makefile.am index 378139a..2d394ae 100644 --- a/newlib/libc/machine/h8300/Makefile.am +++ b/newlib/libc/machine/h8300/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/h8500/Makefile.am b/newlib/libc/machine/h8500/Makefile.am index 9b71b89..9d65947 100644 --- a/newlib/libc/machine/h8500/Makefile.am +++ b/newlib/libc/machine/h8500/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/hppa/Makefile.am b/newlib/libc/machine/hppa/Makefile.am index 08f616a..86ce650 100644 --- a/newlib/libc/machine/hppa/Makefile.am +++ b/newlib/libc/machine/hppa/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/i386/Makefile.am b/newlib/libc/machine/i386/Makefile.am index f835fe6..6194881 100644 --- a/newlib/libc/machine/i386/Makefile.am +++ b/newlib/libc/machine/i386/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = -I $(newlib_basedir)/libm/common $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/i960/Makefile.am b/newlib/libc/machine/i960/Makefile.am index be95cc8..d0421db 100644 --- a/newlib/libc/machine/i960/Makefile.am +++ b/newlib/libc/machine/i960/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/iq2000/Makefile.am b/newlib/libc/machine/iq2000/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/iq2000/Makefile.am +++ b/newlib/libc/machine/iq2000/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/lm32/Makefile.am b/newlib/libc/machine/lm32/Makefile.am index c74adcf..20be1dd 100644 --- a/newlib/libc/machine/lm32/Makefile.am +++ b/newlib/libc/machine/lm32/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) noinst_LIBRARIES = lib.a diff --git a/newlib/libc/machine/m32c/Makefile.am b/newlib/libc/machine/m32c/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/m32c/Makefile.am +++ b/newlib/libc/machine/m32c/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/m32r/Makefile.am b/newlib/libc/machine/m32r/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/m32r/Makefile.am +++ b/newlib/libc/machine/m32r/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/m68hc11/Makefile.am b/newlib/libc/machine/m68hc11/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/m68hc11/Makefile.am +++ b/newlib/libc/machine/m68hc11/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/m68k/Makefile.am b/newlib/libc/machine/m68k/Makefile.am index b485030..08e1cf1 100644 --- a/newlib/libc/machine/m68k/Makefile.am +++ b/newlib/libc/machine/m68k/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/m88k/Makefile.am b/newlib/libc/machine/m88k/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/m88k/Makefile.am +++ b/newlib/libc/machine/m88k/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/mep/Makefile.am b/newlib/libc/machine/mep/Makefile.am index fd8b2be..68a7b15 100644 --- a/newlib/libc/machine/mep/Makefile.am +++ b/newlib/libc/machine/mep/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/microblaze/Makefile.am b/newlib/libc/machine/microblaze/Makefile.am index 335053a..4b43cd1 100644 --- a/newlib/libc/machine/microblaze/Makefile.am +++ b/newlib/libc/machine/microblaze/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/mips/Makefile.am b/newlib/libc/machine/mips/Makefile.am index 17f78aa..fd2dedd 100644 --- a/newlib/libc/machine/mips/Makefile.am +++ b/newlib/libc/machine/mips/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/mn10200/Makefile.am b/newlib/libc/machine/mn10200/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/mn10200/Makefile.am +++ b/newlib/libc/machine/mn10200/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/mn10300/Makefile.am b/newlib/libc/machine/mn10300/Makefile.am index 491775c..5dd7f63 100644 --- a/newlib/libc/machine/mn10300/Makefile.am +++ b/newlib/libc/machine/mn10300/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/moxie/Makefile.am b/newlib/libc/machine/moxie/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/moxie/Makefile.am +++ b/newlib/libc/machine/moxie/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/msp430/Makefile.am b/newlib/libc/machine/msp430/Makefile.am index fd327f5..f253402 100644 --- a/newlib/libc/machine/msp430/Makefile.am +++ b/newlib/libc/machine/msp430/Makefile.am @@ -13,8 +13,6 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/mt/Makefile.am b/newlib/libc/machine/mt/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/mt/Makefile.am +++ b/newlib/libc/machine/mt/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/nds32/Makefile.am b/newlib/libc/machine/nds32/Makefile.am index 8abd730..b75c41f 100644 --- a/newlib/libc/machine/nds32/Makefile.am +++ b/newlib/libc/machine/nds32/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/necv70/Makefile.am b/newlib/libc/machine/necv70/Makefile.am index b3f856c..ea804a1 100644 --- a/newlib/libc/machine/necv70/Makefile.am +++ b/newlib/libc/machine/necv70/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/nios2/Makefile.am b/newlib/libc/machine/nios2/Makefile.am index 6088512..805640f 100644 --- a/newlib/libc/machine/nios2/Makefile.am +++ b/newlib/libc/machine/nios2/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/nvptx/Makefile.am b/newlib/libc/machine/nvptx/Makefile.am index b0d4c78..86d8d03 100644 --- a/newlib/libc/machine/nvptx/Makefile.am +++ b/newlib/libc/machine/nvptx/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/or1k/Makefile.am b/newlib/libc/machine/or1k/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/or1k/Makefile.am +++ b/newlib/libc/machine/or1k/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/powerpc/Makefile.am b/newlib/libc/machine/powerpc/Makefile.am index e86afdf..577b7f9 100644 --- a/newlib/libc/machine/powerpc/Makefile.am +++ b/newlib/libc/machine/powerpc/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/pru/Makefile.am b/newlib/libc/machine/pru/Makefile.am index 6088512..805640f 100644 --- a/newlib/libc/machine/pru/Makefile.am +++ b/newlib/libc/machine/pru/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/riscv/Makefile.am b/newlib/libc/machine/riscv/Makefile.am index 017b4be..a35144b 100644 --- a/newlib/libc/machine/riscv/Makefile.am +++ b/newlib/libc/machine/riscv/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/rl78/Makefile.am b/newlib/libc/machine/rl78/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/rl78/Makefile.am +++ b/newlib/libc/machine/rl78/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/rx/Makefile.am b/newlib/libc/machine/rx/Makefile.am index 94f15ee..14bc7a9 100644 --- a/newlib/libc/machine/rx/Makefile.am +++ b/newlib/libc/machine/rx/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/sh/Makefile.am b/newlib/libc/machine/sh/Makefile.am index f297868..73eb60d 100644 --- a/newlib/libc/machine/sh/Makefile.am +++ b/newlib/libc/machine/sh/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/sparc/Makefile.am b/newlib/libc/machine/sparc/Makefile.am index b634718..7a93a35 100644 --- a/newlib/libc/machine/sparc/Makefile.am +++ b/newlib/libc/machine/sparc/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/spu/Makefile.am b/newlib/libc/machine/spu/Makefile.am index 98705e0..1d36daa 100644 --- a/newlib/libc/machine/spu/Makefile.am +++ b/newlib/libc/machine/spu/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) noinst_LIBRARIES = lib.a diff --git a/newlib/libc/machine/tic4x/Makefile.am b/newlib/libc/machine/tic4x/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/tic4x/Makefile.am +++ b/newlib/libc/machine/tic4x/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/tic6x/Makefile.am b/newlib/libc/machine/tic6x/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/tic6x/Makefile.am +++ b/newlib/libc/machine/tic6x/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/tic80/Makefile.am b/newlib/libc/machine/tic80/Makefile.am index 5b78bc1..20c9013 100644 --- a/newlib/libc/machine/tic80/Makefile.am +++ b/newlib/libc/machine/tic80/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/v850/Makefile.am b/newlib/libc/machine/v850/Makefile.am index d91399b..46d0cab 100644 --- a/newlib/libc/machine/v850/Makefile.am +++ b/newlib/libc/machine/v850/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/visium/Makefile.am b/newlib/libc/machine/visium/Makefile.am index 67cb313..1d9525b 100644 --- a/newlib/libc/machine/visium/Makefile.am +++ b/newlib/libc/machine/visium/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/w65/Makefile.am b/newlib/libc/machine/w65/Makefile.am index 4d497e7..e0a72c0 100644 --- a/newlib/libc/machine/w65/Makefile.am +++ b/newlib/libc/machine/w65/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/x86_64/Makefile.am b/newlib/libc/machine/x86_64/Makefile.am index 3d53cbc..890d1ca 100644 --- a/newlib/libc/machine/x86_64/Makefile.am +++ b/newlib/libc/machine/x86_64/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/xc16x/Makefile.am b/newlib/libc/machine/xc16x/Makefile.am index 53cd447..1a14b59 100644 --- a/newlib/libc/machine/xc16x/Makefile.am +++ b/newlib/libc/machine/xc16x/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/xscale/Makefile.am b/newlib/libc/machine/xscale/Makefile.am index c7d96b2..3b9812e 100644 --- a/newlib/libc/machine/xscale/Makefile.am +++ b/newlib/libc/machine/xscale/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) diff --git a/newlib/libc/machine/xstormy16/Makefile.am b/newlib/libc/machine/xstormy16/Makefile.am index 7178f6d..ee508e7 100644 --- a/newlib/libc/machine/xstormy16/Makefile.am +++ b/newlib/libc/machine/xstormy16/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - # hack: putting $(newlib_basedir)/libm/common into INCLUDES forces automake # to output a definition for newlib_basedir. INCLUDES = -I $(newlib_basedir)/libm/common $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) diff --git a/newlib/libc/machine/z8k/Makefile.am b/newlib/libc/machine/z8k/Makefile.am index 9d65011..6a4b121 100644 --- a/newlib/libc/machine/z8k/Makefile.am +++ b/newlib/libc/machine/z8k/Makefile.am @@ -1,7 +1,5 @@ ## Process this file with automake to generate Makefile.in -AUTOMAKE_OPTIONS = cygnus - INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) AM_CCASFLAGS = $(INCLUDES) |