diff options
Diffstat (limited to 'newlib')
144 files changed, 423 insertions, 568 deletions
diff --git a/newlib/Makefile.am b/newlib/Makefile.am index 3befb21..5767f85 100644 --- a/newlib/Makefile.am +++ b/newlib/Makefile.am @@ -84,19 +84,19 @@ toollib_DATA = $(CRT0) $(CRT1) # both libc.a and libm.a. We build them in libm.a and copy them over, # along with some required supporting routines. MATHOBJS_IN_LIBC = \ - $(lpfx)s_fpclassify.$(oext) $(lpfx)sf_fpclassify.$(oext) \ - $(lpfx)s_isinf.$(oext) $(lpfx)sf_isinf.$(oext) \ - $(lpfx)s_isnan.$(oext) $(lpfx)sf_isnan.$(oext) \ - $(lpfx)s_isinfd.$(oext) $(lpfx)sf_isinff.$(oext) \ - $(lpfx)s_isnand.$(oext) $(lpfx)sf_isnanf.$(oext) \ - $(lpfx)s_nan.$(oext) $(lpfx)sf_nan.$(oext) \ - $(lpfx)s_ldexp.$(oext) $(lpfx)sf_ldexp.$(oext) \ - $(lpfx)s_frexp.$(oext) $(lpfx)sf_frexp.$(oext) $(lpfx)frexpl.$(oext) \ - $(lpfx)s_modf.$(oext) \ - $(lpfx)sf_modf.$(oext) $(lpfx)s_scalbn.$(oext) \ - $(lpfx)sf_scalbn.$(oext) \ - $(lpfx)s_finite.$(oext) $(lpfx)sf_finite.$(oext) \ - $(lpfx)s_copysign.$(oext) $(lpfx)sf_copysign.$(oext) + $(lpfx)s_fpclassify.o $(lpfx)sf_fpclassify.o \ + $(lpfx)s_isinf.o $(lpfx)sf_isinf.o \ + $(lpfx)s_isnan.o $(lpfx)sf_isnan.o \ + $(lpfx)s_isinfd.o $(lpfx)sf_isinff.o \ + $(lpfx)s_isnand.o $(lpfx)sf_isnanf.o \ + $(lpfx)s_nan.o $(lpfx)sf_nan.o \ + $(lpfx)s_ldexp.o $(lpfx)sf_ldexp.o \ + $(lpfx)s_frexp.o $(lpfx)sf_frexp.o $(lpfx)frexpl.o \ + $(lpfx)s_modf.o \ + $(lpfx)sf_modf.o $(lpfx)s_scalbn.o \ + $(lpfx)sf_scalbn.o \ + $(lpfx)s_finite.o $(lpfx)sf_finite.o \ + $(lpfx)s_copysign.o $(lpfx)sf_copysign.o libc.a: libc/libc.a libm.a rm -rf libc.a libg.a tmp diff --git a/newlib/Makefile.in b/newlib/Makefile.in index b78e320..375a225 100644 --- a/newlib/Makefile.in +++ b/newlib/Makefile.in @@ -418,7 +418,6 @@ mandir = @mandir@ mkdir_p = @mkdir_p@ multi_basedir = @multi_basedir@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ @@ -505,19 +504,19 @@ toollib_DATA = $(CRT0) $(CRT1) # both libc.a and libm.a. We build them in libm.a and copy them over, # along with some required supporting routines. MATHOBJS_IN_LIBC = \ - $(lpfx)s_fpclassify.$(oext) $(lpfx)sf_fpclassify.$(oext) \ - $(lpfx)s_isinf.$(oext) $(lpfx)sf_isinf.$(oext) \ - $(lpfx)s_isnan.$(oext) $(lpfx)sf_isnan.$(oext) \ - $(lpfx)s_isinfd.$(oext) $(lpfx)sf_isinff.$(oext) \ - $(lpfx)s_isnand.$(oext) $(lpfx)sf_isnanf.$(oext) \ - $(lpfx)s_nan.$(oext) $(lpfx)sf_nan.$(oext) \ - $(lpfx)s_ldexp.$(oext) $(lpfx)sf_ldexp.$(oext) \ - $(lpfx)s_frexp.$(oext) $(lpfx)sf_frexp.$(oext) $(lpfx)frexpl.$(oext) \ - $(lpfx)s_modf.$(oext) \ - $(lpfx)sf_modf.$(oext) $(lpfx)s_scalbn.$(oext) \ - $(lpfx)sf_scalbn.$(oext) \ - $(lpfx)s_finite.$(oext) $(lpfx)sf_finite.$(oext) \ - $(lpfx)s_copysign.$(oext) $(lpfx)sf_copysign.$(oext) + $(lpfx)s_fpclassify.o $(lpfx)sf_fpclassify.o \ + $(lpfx)s_isinf.o $(lpfx)sf_isinf.o \ + $(lpfx)s_isnan.o $(lpfx)sf_isnan.o \ + $(lpfx)s_isinfd.o $(lpfx)sf_isinff.o \ + $(lpfx)s_isnand.o $(lpfx)sf_isnanf.o \ + $(lpfx)s_nan.o $(lpfx)sf_nan.o \ + $(lpfx)s_ldexp.o $(lpfx)sf_ldexp.o \ + $(lpfx)s_frexp.o $(lpfx)sf_frexp.o $(lpfx)frexpl.o \ + $(lpfx)s_modf.o \ + $(lpfx)sf_modf.o $(lpfx)s_scalbn.o \ + $(lpfx)sf_scalbn.o \ + $(lpfx)s_finite.o $(lpfx)sf_finite.o \ + $(lpfx)s_copysign.o $(lpfx)sf_copysign.o CLEANFILES = stmp-targ-include libc/targetdep.tex \ libc/targetdep.tex.stamp $(LIBC_CHEWOUT_FILES) \ diff --git a/newlib/acinclude.m4 b/newlib/acinclude.m4 index c5b4ce7..60fe6ca 100644 --- a/newlib/acinclude.m4 +++ b/newlib/acinclude.m4 @@ -155,10 +155,9 @@ fi # Hard-code OBJEXT. Normally it is set by AC_OBJEXT, but we # use oext, which is set in configure.host based on the target platform. -OBJEXT=${oext} +OBJEXT=o AC_SUBST(OBJEXT) -AC_SUBST(oext) AC_SUBST(lpfx) AC_SUBST(libm_machine_dir) diff --git a/newlib/configure b/newlib/configure index e4c772b..01aba8c 100755 --- a/newlib/configure +++ b/newlib/configure @@ -615,7 +615,6 @@ shared_machine_dir machine_dir libm_machine_dir lpfx -oext ELIX_LEVEL_4_FALSE ELIX_LEVEL_4_TRUE ELIX_LEVEL_3_FALSE @@ -4667,8 +4666,7 @@ fi # Hard-code OBJEXT. Normally it is set by AC_OBJEXT, but we # use oext, which is set in configure.host based on the target platform. -OBJEXT=${oext} - +OBJEXT=o diff --git a/newlib/configure.host b/newlib/configure.host index 22023f9..3c5df5a 100644 --- a/newlib/configure.host +++ b/newlib/configure.host @@ -43,7 +43,6 @@ # stdio64_dir "stdio64" to build libc/stdio64, "" otherwise # syscall_dir "syscalls" to build libc/syscalls, "" otherwise # unix_dir "unix" to build libc/unix, "" otherwise -# oext object file extension - needed for libtool support # lpfx library object prefix - generated when no libtool # crt1 name of crt1 object if one is provided # crt1_dir directory where crt1 object is found @@ -77,7 +76,6 @@ default_newlib_io_pos_args=no default_newlib_atexit_dynamic_alloc=yes default_newlib_nano_malloc=no default_newlib_reent_check_verify=yes -oext=o lpfx="lib_a-" newlib_msg_warn= diff --git a/newlib/libc/Makefile.in b/newlib/libc/Makefile.in index 8c23ca8..e77b654 100644 --- a/newlib/libc/Makefile.in +++ b/newlib/libc/Makefile.in @@ -295,7 +295,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/argz/Makefile.in b/newlib/libc/argz/Makefile.in index cc9b9ea..9a8cbea 100644 --- a/newlib/libc/argz/Makefile.in +++ b/newlib/libc/argz/Makefile.in @@ -291,7 +291,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/configure b/newlib/libc/configure index e1cb462..f2e6ca9 100755 --- a/newlib/libc/configure +++ b/newlib/libc/configure @@ -642,7 +642,6 @@ shared_machine_dir machine_dir libm_machine_dir lpfx -oext ELIX_LEVEL_4_FALSE ELIX_LEVEL_4_TRUE ELIX_LEVEL_3_FALSE @@ -4372,8 +4371,7 @@ fi # Hard-code OBJEXT. Normally it is set by AC_OBJEXT, but we # use oext, which is set in configure.host based on the target platform. -OBJEXT=${oext} - +OBJEXT=o diff --git a/newlib/libc/ctype/Makefile.am b/newlib/libc/ctype/Makefile.am index c7bdf2d..5c4269f 100644 --- a/newlib/libc/ctype/Makefile.am +++ b/newlib/libc/ctype/Makefile.am @@ -84,4 +84,4 @@ noinst_LIBRARIES = lib.a lib_a_SOURCES = $(GENERAL_SOURCES) $(ELIX_SOURCES) lib_a_CFLAGS = $(AM_CFLAGS) -$(lpfx)ctype_.$(oext): ctype_.c ctype_iso.h ctype_cp.h +$(lpfx)ctype_.o: ctype_.c ctype_iso.h ctype_cp.h diff --git a/newlib/libc/ctype/Makefile.in b/newlib/libc/ctype/Makefile.in index f637ec3..243858a 100644 --- a/newlib/libc/ctype/Makefile.in +++ b/newlib/libc/ctype/Makefile.in @@ -335,7 +335,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ @@ -1068,7 +1067,7 @@ uninstall-am: .PRECIOUS: Makefile -$(lpfx)ctype_.$(oext): ctype_.c ctype_iso.h ctype_cp.h +$(lpfx)ctype_.o: ctype_.c ctype_iso.h ctype_cp.h # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/newlib/libc/errno/Makefile.in b/newlib/libc/errno/Makefile.in index 4d15448..dfb7100 100644 --- a/newlib/libc/errno/Makefile.in +++ b/newlib/libc/errno/Makefile.in @@ -273,7 +273,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/iconv/Makefile.in b/newlib/libc/iconv/Makefile.in index 926fd49..c8928cb 100644 --- a/newlib/libc/iconv/Makefile.in +++ b/newlib/libc/iconv/Makefile.in @@ -290,7 +290,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/iconv/ccs/Makefile.in b/newlib/libc/iconv/ccs/Makefile.in index 01e06f0..5cf3fb4 100644 --- a/newlib/libc/iconv/ccs/Makefile.in +++ b/newlib/libc/iconv/ccs/Makefile.in @@ -351,7 +351,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/iconv/ccs/binary/Makefile.in b/newlib/libc/iconv/ccs/binary/Makefile.in index 550dd09..43d3cfe 100644 --- a/newlib/libc/iconv/ccs/binary/Makefile.in +++ b/newlib/libc/iconv/ccs/binary/Makefile.in @@ -256,7 +256,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/iconv/ces/Makefile.in b/newlib/libc/iconv/ces/Makefile.in index 43e9010..a09d466 100644 --- a/newlib/libc/iconv/ces/Makefile.in +++ b/newlib/libc/iconv/ces/Makefile.in @@ -288,7 +288,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/iconv/lib/Makefile.in b/newlib/libc/iconv/lib/Makefile.in index d640617..e2bcaa6 100644 --- a/newlib/libc/iconv/lib/Makefile.in +++ b/newlib/libc/iconv/lib/Makefile.in @@ -281,7 +281,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/locale/Makefile.in b/newlib/libc/locale/Makefile.in index cbd2415..4d4bbd1 100644 --- a/newlib/libc/locale/Makefile.in +++ b/newlib/libc/locale/Makefile.in @@ -283,7 +283,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/a29k/Makefile.in b/newlib/libc/machine/a29k/Makefile.in index 84ca9dd..55c81e8 100644 --- a/newlib/libc/machine/a29k/Makefile.in +++ b/newlib/libc/machine/a29k/Makefile.in @@ -250,7 +250,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/aarch64/Makefile.in b/newlib/libc/machine/aarch64/Makefile.in index 691b9d2..77def15 100644 --- a/newlib/libc/machine/aarch64/Makefile.in +++ b/newlib/libc/machine/aarch64/Makefile.in @@ -292,7 +292,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/amdgcn/Makefile.in b/newlib/libc/machine/amdgcn/Makefile.in index dc1a4dd..caedf71 100644 --- a/newlib/libc/machine/amdgcn/Makefile.in +++ b/newlib/libc/machine/amdgcn/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/arc/Makefile.in b/newlib/libc/machine/arc/Makefile.in index 92a5db7..c1af5f9 100644 --- a/newlib/libc/machine/arc/Makefile.in +++ b/newlib/libc/machine/arc/Makefile.in @@ -291,7 +291,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/arm/Makefile.in b/newlib/libc/machine/arm/Makefile.in index fb8850b..6ae7f72 100644 --- a/newlib/libc/machine/arm/Makefile.in +++ b/newlib/libc/machine/arm/Makefile.in @@ -285,7 +285,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/bfin/Makefile.in b/newlib/libc/machine/bfin/Makefile.in index e288b67..414bf79 100644 --- a/newlib/libc/machine/bfin/Makefile.in +++ b/newlib/libc/machine/bfin/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/cr16/Makefile.in b/newlib/libc/machine/cr16/Makefile.in index 184e508..37e47f8 100644 --- a/newlib/libc/machine/cr16/Makefile.in +++ b/newlib/libc/machine/cr16/Makefile.in @@ -278,7 +278,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/cris/Makefile.in b/newlib/libc/machine/cris/Makefile.in index 97a4637..f3d8829 100644 --- a/newlib/libc/machine/cris/Makefile.in +++ b/newlib/libc/machine/cris/Makefile.in @@ -308,7 +308,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/crx/Makefile.in b/newlib/libc/machine/crx/Makefile.in index 73f8e58..7c47937 100644 --- a/newlib/libc/machine/crx/Makefile.in +++ b/newlib/libc/machine/crx/Makefile.in @@ -278,7 +278,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/csky/Makefile.in b/newlib/libc/machine/csky/Makefile.in index 0243a9a..b25c928 100644 --- a/newlib/libc/machine/csky/Makefile.in +++ b/newlib/libc/machine/csky/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/d10v/Makefile.in b/newlib/libc/machine/d10v/Makefile.in index eb0a808..5c0f387 100644 --- a/newlib/libc/machine/d10v/Makefile.in +++ b/newlib/libc/machine/d10v/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/d30v/Makefile.in b/newlib/libc/machine/d30v/Makefile.in index 612e75a..84582e7 100644 --- a/newlib/libc/machine/d30v/Makefile.in +++ b/newlib/libc/machine/d30v/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/epiphany/Makefile.in b/newlib/libc/machine/epiphany/Makefile.in index a9a3291..8369a86 100644 --- a/newlib/libc/machine/epiphany/Makefile.in +++ b/newlib/libc/machine/epiphany/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/fr30/Makefile.in b/newlib/libc/machine/fr30/Makefile.in index 4a70f9b..47aebc6 100644 --- a/newlib/libc/machine/fr30/Makefile.in +++ b/newlib/libc/machine/fr30/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/frv/Makefile.in b/newlib/libc/machine/frv/Makefile.in index c3a265e..86e833c 100644 --- a/newlib/libc/machine/frv/Makefile.in +++ b/newlib/libc/machine/frv/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/ft32/Makefile.in b/newlib/libc/machine/ft32/Makefile.in index f6b3de1..22050f8 100644 --- a/newlib/libc/machine/ft32/Makefile.in +++ b/newlib/libc/machine/ft32/Makefile.in @@ -275,7 +275,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/h8300/Makefile.in b/newlib/libc/machine/h8300/Makefile.in index b94592e..55c7915 100644 --- a/newlib/libc/machine/h8300/Makefile.in +++ b/newlib/libc/machine/h8300/Makefile.in @@ -275,7 +275,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/h8500/Makefile.in b/newlib/libc/machine/h8500/Makefile.in index dc0bf8f..dbbd189 100644 --- a/newlib/libc/machine/h8500/Makefile.in +++ b/newlib/libc/machine/h8500/Makefile.in @@ -280,7 +280,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/hppa/Makefile.in b/newlib/libc/machine/hppa/Makefile.in index 0000006..1519f34 100644 --- a/newlib/libc/machine/hppa/Makefile.in +++ b/newlib/libc/machine/hppa/Makefile.in @@ -277,7 +277,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/i386/Makefile.in b/newlib/libc/machine/i386/Makefile.in index fc5d8b8..f2c918f 100644 --- a/newlib/libc/machine/i386/Makefile.in +++ b/newlib/libc/machine/i386/Makefile.in @@ -283,7 +283,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/i960/Makefile.in b/newlib/libc/machine/i960/Makefile.in index 4cd2efa..b3296d9 100644 --- a/newlib/libc/machine/i960/Makefile.in +++ b/newlib/libc/machine/i960/Makefile.in @@ -250,7 +250,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/iq2000/Makefile.in b/newlib/libc/machine/iq2000/Makefile.in index 9606b22..fa96e34 100644 --- a/newlib/libc/machine/iq2000/Makefile.in +++ b/newlib/libc/machine/iq2000/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/lm32/Makefile.in b/newlib/libc/machine/lm32/Makefile.in index c51ced5..4b8569a 100644 --- a/newlib/libc/machine/lm32/Makefile.in +++ b/newlib/libc/machine/lm32/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/m32c/Makefile.in b/newlib/libc/machine/m32c/Makefile.in index 7ee251d..3468966 100644 --- a/newlib/libc/machine/m32c/Makefile.in +++ b/newlib/libc/machine/m32c/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/m32r/Makefile.in b/newlib/libc/machine/m32r/Makefile.in index 57f13b6..cde6852 100644 --- a/newlib/libc/machine/m32r/Makefile.in +++ b/newlib/libc/machine/m32r/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/m68hc11/Makefile.in b/newlib/libc/machine/m68hc11/Makefile.in index f81dda9..a9884b4 100644 --- a/newlib/libc/machine/m68hc11/Makefile.in +++ b/newlib/libc/machine/m68hc11/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/m68k/Makefile.in b/newlib/libc/machine/m68k/Makefile.in index 02a0106..50474fc 100644 --- a/newlib/libc/machine/m68k/Makefile.in +++ b/newlib/libc/machine/m68k/Makefile.in @@ -279,7 +279,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/m88k/Makefile.in b/newlib/libc/machine/m88k/Makefile.in index 72fb5aa..b810bd3 100644 --- a/newlib/libc/machine/m88k/Makefile.in +++ b/newlib/libc/machine/m88k/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/mep/Makefile.in b/newlib/libc/machine/mep/Makefile.in index 34712b9..70ed138 100644 --- a/newlib/libc/machine/mep/Makefile.in +++ b/newlib/libc/machine/mep/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/microblaze/Makefile.in b/newlib/libc/machine/microblaze/Makefile.in index 22991cd..21bf4dd 100644 --- a/newlib/libc/machine/microblaze/Makefile.in +++ b/newlib/libc/machine/microblaze/Makefile.in @@ -279,7 +279,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/mips/Makefile.in b/newlib/libc/machine/mips/Makefile.in index 7176507..cbe8831 100644 --- a/newlib/libc/machine/mips/Makefile.in +++ b/newlib/libc/machine/mips/Makefile.in @@ -275,7 +275,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/mn10200/Makefile.in b/newlib/libc/machine/mn10200/Makefile.in index 965bc1f..535722d 100644 --- a/newlib/libc/machine/mn10200/Makefile.in +++ b/newlib/libc/machine/mn10200/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/mn10300/Makefile.in b/newlib/libc/machine/mn10300/Makefile.in index 2cc977d..f17c335 100644 --- a/newlib/libc/machine/mn10300/Makefile.in +++ b/newlib/libc/machine/mn10300/Makefile.in @@ -276,7 +276,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/moxie/Makefile.in b/newlib/libc/machine/moxie/Makefile.in index c9f48c1..e9056bd 100644 --- a/newlib/libc/machine/moxie/Makefile.in +++ b/newlib/libc/machine/moxie/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/msp430/Makefile.in b/newlib/libc/machine/msp430/Makefile.in index 7f01801..1dacdb9 100644 --- a/newlib/libc/machine/msp430/Makefile.in +++ b/newlib/libc/machine/msp430/Makefile.in @@ -294,7 +294,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/mt/Makefile.in b/newlib/libc/machine/mt/Makefile.in index 8d6c9c6..359f998 100644 --- a/newlib/libc/machine/mt/Makefile.in +++ b/newlib/libc/machine/mt/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/nds32/Makefile.in b/newlib/libc/machine/nds32/Makefile.in index 327205f..2bddb3c 100644 --- a/newlib/libc/machine/nds32/Makefile.in +++ b/newlib/libc/machine/nds32/Makefile.in @@ -284,7 +284,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/necv70/Makefile.in b/newlib/libc/machine/necv70/Makefile.in index 42ee64c..6f643ee 100644 --- a/newlib/libc/machine/necv70/Makefile.in +++ b/newlib/libc/machine/necv70/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/nios2/Makefile.in b/newlib/libc/machine/nios2/Makefile.in index 3217726..92c15b4 100644 --- a/newlib/libc/machine/nios2/Makefile.in +++ b/newlib/libc/machine/nios2/Makefile.in @@ -273,7 +273,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/nvptx/Makefile.in b/newlib/libc/machine/nvptx/Makefile.in index 05d47d2..7a9fb58 100644 --- a/newlib/libc/machine/nvptx/Makefile.in +++ b/newlib/libc/machine/nvptx/Makefile.in @@ -279,7 +279,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/or1k/Makefile.in b/newlib/libc/machine/or1k/Makefile.in index 13f8fb4..4539a83 100644 --- a/newlib/libc/machine/or1k/Makefile.in +++ b/newlib/libc/machine/or1k/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/powerpc/Makefile.in b/newlib/libc/machine/powerpc/Makefile.in index 53a3cad..f967e4a 100644 --- a/newlib/libc/machine/powerpc/Makefile.in +++ b/newlib/libc/machine/powerpc/Makefile.in @@ -306,7 +306,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/pru/Makefile.in b/newlib/libc/machine/pru/Makefile.in index 5f7bef6..78d48ea 100644 --- a/newlib/libc/machine/pru/Makefile.in +++ b/newlib/libc/machine/pru/Makefile.in @@ -273,7 +273,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/riscv/Makefile.in b/newlib/libc/machine/riscv/Makefile.in index dbb8afc..6720245 100644 --- a/newlib/libc/machine/riscv/Makefile.in +++ b/newlib/libc/machine/riscv/Makefile.in @@ -281,7 +281,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/rl78/Makefile.in b/newlib/libc/machine/rl78/Makefile.in index e733870..28830c5 100644 --- a/newlib/libc/machine/rl78/Makefile.in +++ b/newlib/libc/machine/rl78/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/rx/Makefile.in b/newlib/libc/machine/rx/Makefile.in index 6cd19c3..35665ff 100644 --- a/newlib/libc/machine/rx/Makefile.in +++ b/newlib/libc/machine/rx/Makefile.in @@ -278,7 +278,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/sh/Makefile.in b/newlib/libc/machine/sh/Makefile.in index e3b546a..6f7378d 100644 --- a/newlib/libc/machine/sh/Makefile.in +++ b/newlib/libc/machine/sh/Makefile.in @@ -279,7 +279,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/sparc/Makefile.in b/newlib/libc/machine/sparc/Makefile.in index 1e3379b..40f8445 100644 --- a/newlib/libc/machine/sparc/Makefile.in +++ b/newlib/libc/machine/sparc/Makefile.in @@ -279,7 +279,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/spu/Makefile.in b/newlib/libc/machine/spu/Makefile.in index badacc6..0305f38 100644 --- a/newlib/libc/machine/spu/Makefile.in +++ b/newlib/libc/machine/spu/Makefile.in @@ -364,7 +364,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/tic4x/Makefile.in b/newlib/libc/machine/tic4x/Makefile.in index 360035a..82d1c3a 100644 --- a/newlib/libc/machine/tic4x/Makefile.in +++ b/newlib/libc/machine/tic4x/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/tic6x/Makefile.in b/newlib/libc/machine/tic6x/Makefile.in index 9245a07..d74c1d3 100644 --- a/newlib/libc/machine/tic6x/Makefile.in +++ b/newlib/libc/machine/tic6x/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/tic80/Makefile.in b/newlib/libc/machine/tic80/Makefile.in index ef584ad..f165ed3 100644 --- a/newlib/libc/machine/tic80/Makefile.in +++ b/newlib/libc/machine/tic80/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/v850/Makefile.in b/newlib/libc/machine/v850/Makefile.in index eb3e8ef..6ca18ae 100644 --- a/newlib/libc/machine/v850/Makefile.in +++ b/newlib/libc/machine/v850/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/visium/Makefile.in b/newlib/libc/machine/visium/Makefile.in index ee613ee..2df5d2d 100644 --- a/newlib/libc/machine/visium/Makefile.in +++ b/newlib/libc/machine/visium/Makefile.in @@ -279,7 +279,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/w65/Makefile.in b/newlib/libc/machine/w65/Makefile.in index ebbb19f..c1c855d 100644 --- a/newlib/libc/machine/w65/Makefile.in +++ b/newlib/libc/machine/w65/Makefile.in @@ -281,7 +281,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/x86_64/Makefile.in b/newlib/libc/machine/x86_64/Makefile.in index 0667312..6725d62 100644 --- a/newlib/libc/machine/x86_64/Makefile.in +++ b/newlib/libc/machine/x86_64/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/xc16x/Makefile.in b/newlib/libc/machine/xc16x/Makefile.in index d0887a2..cefe742 100644 --- a/newlib/libc/machine/xc16x/Makefile.in +++ b/newlib/libc/machine/xc16x/Makefile.in @@ -279,7 +279,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/xstormy16/Makefile.in b/newlib/libc/machine/xstormy16/Makefile.in index 9784b8e..d0eb0d0 100644 --- a/newlib/libc/machine/xstormy16/Makefile.in +++ b/newlib/libc/machine/xstormy16/Makefile.in @@ -273,7 +273,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/machine/z8k/Makefile.in b/newlib/libc/machine/z8k/Makefile.in index 9477513..7886dbb 100644 --- a/newlib/libc/machine/z8k/Makefile.in +++ b/newlib/libc/machine/z8k/Makefile.in @@ -275,7 +275,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/misc/Makefile.in b/newlib/libc/misc/Makefile.in index 6e1402a..e4adeb2 100644 --- a/newlib/libc/misc/Makefile.in +++ b/newlib/libc/misc/Makefile.in @@ -280,7 +280,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/posix/Makefile.in b/newlib/libc/posix/Makefile.in index 91e3c5e..6a0e06f 100644 --- a/newlib/libc/posix/Makefile.in +++ b/newlib/libc/posix/Makefile.in @@ -296,7 +296,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/reent/Makefile.am b/newlib/libc/reent/Makefile.am index 10fc473..e645665 100644 --- a/newlib/libc/reent/Makefile.am +++ b/newlib/libc/reent/Makefile.am @@ -50,4 +50,4 @@ noinst_LIBRARIES = lib.a lib_a_SOURCES = $(GENERAL_SOURCES) $(ELIX_SOURCES) lib_a_CFLAGS = $(AM_CFLAGS) -$(lpfx)impure.$(oext): $(srcdir)/impure.c $(srcdir)/../include/sys/reent.h +$(lpfx)impure.o: $(srcdir)/impure.c $(srcdir)/../include/sys/reent.h diff --git a/newlib/libc/reent/Makefile.in b/newlib/libc/reent/Makefile.in index 3873f02..1b18b39 100644 --- a/newlib/libc/reent/Makefile.in +++ b/newlib/libc/reent/Makefile.in @@ -294,7 +294,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ @@ -729,7 +728,7 @@ uninstall-am: .PRECIOUS: Makefile -$(lpfx)impure.$(oext): $(srcdir)/impure.c $(srcdir)/../include/sys/reent.h +$(lpfx)impure.o: $(srcdir)/impure.c $(srcdir)/../include/sys/reent.h # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/newlib/libc/search/Makefile.in b/newlib/libc/search/Makefile.in index bdd3988..3b1fa09 100644 --- a/newlib/libc/search/Makefile.in +++ b/newlib/libc/search/Makefile.in @@ -289,7 +289,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/signal/Makefile.in b/newlib/libc/signal/Makefile.in index 7a83aff..7d711ec 100644 --- a/newlib/libc/signal/Makefile.in +++ b/newlib/libc/signal/Makefile.in @@ -274,7 +274,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/ssp/Makefile.in b/newlib/libc/ssp/Makefile.in index 282abf9..0ff2efc 100644 --- a/newlib/libc/ssp/Makefile.in +++ b/newlib/libc/ssp/Makefile.in @@ -287,7 +287,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/stdio/Makefile.am b/newlib/libc/stdio/Makefile.am index 40c0d89..a2c688c 100644 --- a/newlib/libc/stdio/Makefile.am +++ b/newlib/libc/stdio/Makefile.am @@ -193,31 +193,31 @@ endif !ELIX_LEVEL_1 if NEWLIB_NANO_FORMATTED_IO LIBADD_OBJS = \ - %D%/$(lpfx)nano-vfprintf_float.$(oext) \ - %D%/$(lpfx)nano-svfprintf.$(oext) \ - %D%/$(lpfx)nano-svfscanf.$(oext) \ - %D%/$(lpfx)nano-vfprintf.$(oext) \ - %D%/$(lpfx)nano-vfprintf_i.$(oext) \ - %D%/$(lpfx)nano-vfscanf.$(oext) \ - %D%/$(lpfx)nano-vfscanf_i.$(oext) \ - %D%/$(lpfx)nano-vfscanf_float.$(oext) \ - %D%/$(lpfx)svfiwprintf.$(oext) \ - %D%/$(lpfx)svfwprintf.$(oext) \ - %D%/$(lpfx)vfiwprintf.$(oext) \ - %D%/$(lpfx)svfiwscanf.$(oext) \ - %D%/$(lpfx)svfwscanf.$(oext) \ - %D%/$(lpfx)vfiwscanf.$(oext) \ - %D%/$(lpfx)vfwscanf.$(oext) + %D%/$(lpfx)nano-vfprintf_float.o \ + %D%/$(lpfx)nano-svfprintf.o \ + %D%/$(lpfx)nano-svfscanf.o \ + %D%/$(lpfx)nano-vfprintf.o \ + %D%/$(lpfx)nano-vfprintf_i.o \ + %D%/$(lpfx)nano-vfscanf.o \ + %D%/$(lpfx)nano-vfscanf_i.o \ + %D%/$(lpfx)nano-vfscanf_float.o \ + %D%/$(lpfx)svfiwprintf.o \ + %D%/$(lpfx)svfwprintf.o \ + %D%/$(lpfx)vfiwprintf.o \ + %D%/$(lpfx)svfiwscanf.o \ + %D%/$(lpfx)svfwscanf.o \ + %D%/$(lpfx)vfiwscanf.o \ + %D%/$(lpfx)vfwscanf.o else LIBADD_OBJS = \ - %D%/$(lpfx)svfiprintf.$(oext) $(lpfx)svfprintf.$(oext) \ - %D%/$(lpfx)svfiscanf.$(oext) $(lpfx)svfscanf.$(oext) \ - %D%/$(lpfx)vfiprintf.$(oext) \ - %D%/$(lpfx)vfscanf.$(oext) $(lpfx)vfiscanf.$(oext) \ - %D%/$(lpfx)svfiwprintf.$(oext) $(lpfx)svfwprintf.$(oext) \ - %D%/$(lpfx)vfiwprintf.$(oext) \ - %D%/$(lpfx)svfiwscanf.$(oext) $(lpfx)svfwscanf.$(oext) \ - %D%/$(lpfx)vfiwscanf.$(oext) $(lpfx)vfwscanf.$(oext) + %D%/$(lpfx)svfiprintf.o $(lpfx)svfprintf.o \ + %D%/$(lpfx)svfiscanf.o $(lpfx)svfscanf.o \ + %D%/$(lpfx)vfiprintf.o \ + %D%/$(lpfx)vfscanf.o $(lpfx)vfiscanf.o \ + %D%/$(lpfx)svfiwprintf.o $(lpfx)svfwprintf.o \ + %D%/$(lpfx)vfiwprintf.o \ + %D%/$(lpfx)svfiwscanf.o $(lpfx)svfwscanf.o \ + %D%/$(lpfx)vfiwscanf.o $(lpfx)vfwscanf.o endif noinst_LIBRARIES = lib.a @@ -236,184 +236,184 @@ LIB_COMPILE = $(AM_V_CC)$(COMPILE) if NEWLIB_NANO_FORMATTED_IO # Rules compiling small-footprint nano-formatted-io implementation. -$(lpfx)nano-vfprintf.$(oext): nano-vfprintf.c +$(lpfx)nano-vfprintf.o: nano-vfprintf.c %D%/$(LIB_COMPILE) -c $(srcdir)/nano-vfprintf.c -o $@ -$(lpfx)nano-vfprintf_i.$(oext): nano-vfprintf_i.c +$(lpfx)nano-vfprintf_i.o: nano-vfprintf_i.c %D%/$(LIB_COMPILE) -c $(srcdir)/nano-vfprintf_i.c -o $@ -$(lpfx)nano-vfprintf_float.$(oext): nano-vfprintf_float.c +$(lpfx)nano-vfprintf_float.o: nano-vfprintf_float.c %D%/$(LIB_COMPILE) -c $(srcdir)/nano-vfprintf_float.c -o $@ -$(lpfx)nano-svfprintf.$(oext): nano-vfprintf.c +$(lpfx)nano-svfprintf.o: nano-vfprintf.c %D%/$(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/nano-vfprintf.c -o $@ endif # This rule is needed so that libtool compiles vfiprintf before vfprintf. # Otherwise libtool moves vfprintf.o and subsequently can't find it. -$(lpfx)vfiprintf.$(oext): vfprintf.c +$(lpfx)vfiprintf.o: vfprintf.c %D%/$(LIB_COMPILE) -DINTEGER_ONLY -c $(srcdir)/vfprintf.c -o $@ -$(lpfx)svfprintf.$(oext): vfprintf.c +$(lpfx)svfprintf.o: vfprintf.c %D%/$(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/vfprintf.c -o $@ -$(lpfx)svfiprintf.$(oext): vfprintf.c +$(lpfx)svfiprintf.o: vfprintf.c %D%/$(LIB_COMPILE) -DINTEGER_ONLY -DSTRING_ONLY -c $(srcdir)/vfprintf.c -o $@ -$(lpfx)vfiwprintf.$(oext): vfwprintf.c +$(lpfx)vfiwprintf.o: vfwprintf.c %D%/$(LIB_COMPILE) -DINTEGER_ONLY -c $(srcdir)/vfwprintf.c -o $@ -$(lpfx)svfwprintf.$(oext): vfwprintf.c +$(lpfx)svfwprintf.o: vfwprintf.c %D%/$(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/vfwprintf.c -o $@ -$(lpfx)svfiwprintf.$(oext): vfwprintf.c +$(lpfx)svfiwprintf.o: vfwprintf.c %D%/$(LIB_COMPILE) -DINTEGER_ONLY -DSTRING_ONLY -c $(srcdir)/vfwprintf.c -o $@ if NEWLIB_NANO_FORMATTED_IO # Rules compiling small-footprint nano-formatted-io implementation. -$(lpfx)nano-vfscanf.$(oext): nano-vfscanf.c +$(lpfx)nano-vfscanf.o: nano-vfscanf.c %D%/$(LIB_COMPILE) -c $(srcdir)/nano-vfscanf.c -o $@ -$(lpfx)nano-vfscanf_i.$(oext): nano-vfscanf_i.c +$(lpfx)nano-vfscanf_i.o: nano-vfscanf_i.c %D%/$(LIB_COMPILE) -c $(srcdir)/nano-vfscanf_i.c -o $@ -$(lpfx)nano-vfscanf_float.$(oext): nano-vfscanf_float.c +$(lpfx)nano-vfscanf_float.o: nano-vfscanf_float.c %D%/$(LIB_COMPILE) -c $(srcdir)/nano-vfscanf_float.c -o $@ -$(lpfx)nano-svfscanf.$(oext): nano-vfscanf.c +$(lpfx)nano-svfscanf.o: nano-vfscanf.c %D%/$(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/nano-vfscanf.c -o $@ endif -$(lpfx)vfscanf.$(oext): vfscanf.c +$(lpfx)vfscanf.o: vfscanf.c %D%/$(LIB_COMPILE) -c $(srcdir)/vfscanf.c -o $@ -$(lpfx)vfiscanf.$(oext): vfscanf.c +$(lpfx)vfiscanf.o: vfscanf.c %D%/$(LIB_COMPILE) -DINTEGER_ONLY -c $(srcdir)/vfscanf.c -o $@ -$(lpfx)svfscanf.$(oext): vfscanf.c +$(lpfx)svfscanf.o: vfscanf.c %D%/$(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/vfscanf.c -o $@ -$(lpfx)svfiscanf.$(oext): vfscanf.c +$(lpfx)svfiscanf.o: vfscanf.c %D%/$(LIB_COMPILE) -DINTEGER_ONLY -DSTRING_ONLY -c $(srcdir)/vfscanf.c -o $@ -$(lpfx)vfwscanf.$(oext): vfwscanf.c +$(lpfx)vfwscanf.o: vfwscanf.c %D%/$(LIB_COMPILE) -c $(srcdir)/vfwscanf.c -o $@ -$(lpfx)vfiwscanf.$(oext): vfwscanf.c +$(lpfx)vfiwscanf.o: vfwscanf.c %D%/$(LIB_COMPILE) -DINTEGER_ONLY -c $(srcdir)/vfwscanf.c -o $@ -$(lpfx)svfwscanf.$(oext): vfwscanf.c +$(lpfx)svfwscanf.o: vfwscanf.c %D%/$(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/vfwscanf.c -o $@ -$(lpfx)svfiwscanf.$(oext): vfwscanf.c +$(lpfx)svfiwscanf.o: vfwscanf.c %D%/$(LIB_COMPILE) -DINTEGER_ONLY -DSTRING_ONLY -c $(srcdir)/vfwscanf.c -o $@ -$(lpfx)clearerr.$(oext): local.h -$(lpfx)clearerr_u.$(oext): local.h -$(lpfx)fclose.$(oext): local.h -$(lpfx)fdopen.$(oext): local.h -$(lpfx)feof.$(oext): local.h -$(lpfx)feof_u.$(oext): local.h -$(lpfx)ferror.$(oext): local.h -$(lpfx)ferror_u.$(oext): local.h -$(lpfx)fflush.$(oext): local.h -$(lpfx)fflush_u.$(oext): fflush.c -$(lpfx)fgetc.$(oext): local.h -$(lpfx)fgetc_u.$(oext): local.h -$(lpfx)fgets.$(oext): local.h -$(lpfx)fgets_u.$(oext): fgets.c -$(lpfx)fgetwc.$(oext): local.h -$(lpfx)fgetwc_u.$(oext): local.h -$(lpfx)fgetws.$(oext): local.h -$(lpfx)fgetws_u.$(oext): fgetws.c -$(lpfx)fileno.$(oext): local.h -$(lpfx)fileno_u.$(oext): local.h -$(lpfx)findfp.$(oext): local.h -$(lpfx)fmemopen.$(oext): local.h -$(lpfx)fopen.$(oext): local.h -$(lpfx)fopencookie.$(oext): local.h -$(lpfx)fpurge.$(oext): local.h -$(lpfx)fputc.$(oext): local.h -$(lpfx)fputc_u.$(oext): local.h -$(lpfx)fputs.$(oext): fvwrite.h -$(lpfx)fputs_u.$(oext): fputs.c -$(lpfx)fputwc.$(oext): local.h -$(lpfx)fputwc_u.$(oext): local.h -$(lpfx)fputws.$(oext): local.h fvwrite.h -$(lpfx)fputws_u.$(oext): fputws.c -$(lpfx)fread.$(oext): local.h -$(lpfx)fread_u.$(oext): fread.c -$(lpfx)freopen.$(oext): local.h -$(lpfx)fseek.$(oext): local.h -$(lpfx)fsetlocking.$(oext): local.h -$(lpfx)ftell.$(oext): local.h -$(lpfx)funopen.$(oext): local.h -$(lpfx)fvwrite.$(oext): local.h fvwrite.h -$(lpfx)fwalk.$(oext): local.h -$(lpfx)fwide.$(oext): local.h -$(lpfx)fwprintf.$(oext): local.h -$(lpfx)fwrite.$(oext): local.h fvwrite.h -$(lpfx)fwrite_u.$(oext): fwrite.c -$(lpfx)fwscanf.$(oext): local.h -$(lpfx)getwc.$(oext): local.h -$(lpfx)getwc_u.$(oext): local.h -$(lpfx)getwchar.$(oext): local.h -$(lpfx)getwchar_u.$(oext): local.h -$(lpfx)iscanf.$(oext): local.h -$(lpfx)makebuf.$(oext): local.h -$(lpfx)open_memstream.$(oext): local.h -$(lpfx)puts.$(oext): fvwrite.h -$(lpfx)putwc.$(oext): local.h -$(lpfx)putwc_u.$(oext): local.h -$(lpfx)putwchar.$(oext): local.h -$(lpfx)putwchar_u.$(oext): local.h -$(lpfx)refill.$(oext): local.h -$(lpfx)scanf.$(oext): local.h -$(lpfx)setbuf.$(oext): local.h -$(lpfx)setvbuf.$(oext): local.h -$(lpfx)siprintf.$(oext): local.h -$(lpfx)siscanf.$(oext): local.h -$(lpfx)sniprintf.$(oext): local.h -$(lpfx)sprintf.$(oext): local.h -$(lpfx)sscanf.$(oext): local.h -$(lpfx)stdio.$(oext): local.h +$(lpfx)clearerr.o: local.h +$(lpfx)clearerr_u.o: local.h +$(lpfx)fclose.o: local.h +$(lpfx)fdopen.o: local.h +$(lpfx)feof.o: local.h +$(lpfx)feof_u.o: local.h +$(lpfx)ferror.o: local.h +$(lpfx)ferror_u.o: local.h +$(lpfx)fflush.o: local.h +$(lpfx)fflush_u.o: fflush.c +$(lpfx)fgetc.o: local.h +$(lpfx)fgetc_u.o: local.h +$(lpfx)fgets.o: local.h +$(lpfx)fgets_u.o: fgets.c +$(lpfx)fgetwc.o: local.h +$(lpfx)fgetwc_u.o: local.h +$(lpfx)fgetws.o: local.h +$(lpfx)fgetws_u.o: fgetws.c +$(lpfx)fileno.o: local.h +$(lpfx)fileno_u.o: local.h +$(lpfx)findfp.o: local.h +$(lpfx)fmemopen.o: local.h +$(lpfx)fopen.o: local.h +$(lpfx)fopencookie.o: local.h +$(lpfx)fpurge.o: local.h +$(lpfx)fputc.o: local.h +$(lpfx)fputc_u.o: local.h +$(lpfx)fputs.o: fvwrite.h +$(lpfx)fputs_u.o: fputs.c +$(lpfx)fputwc.o: local.h +$(lpfx)fputwc_u.o: local.h +$(lpfx)fputws.o: local.h fvwrite.h +$(lpfx)fputws_u.o: fputws.c +$(lpfx)fread.o: local.h +$(lpfx)fread_u.o: fread.c +$(lpfx)freopen.o: local.h +$(lpfx)fseek.o: local.h +$(lpfx)fsetlocking.o: local.h +$(lpfx)ftell.o: local.h +$(lpfx)funopen.o: local.h +$(lpfx)fvwrite.o: local.h fvwrite.h +$(lpfx)fwalk.o: local.h +$(lpfx)fwide.o: local.h +$(lpfx)fwprintf.o: local.h +$(lpfx)fwrite.o: local.h fvwrite.h +$(lpfx)fwrite_u.o: fwrite.c +$(lpfx)fwscanf.o: local.h +$(lpfx)getwc.o: local.h +$(lpfx)getwc_u.o: local.h +$(lpfx)getwchar.o: local.h +$(lpfx)getwchar_u.o: local.h +$(lpfx)iscanf.o: local.h +$(lpfx)makebuf.o: local.h +$(lpfx)open_memstream.o: local.h +$(lpfx)puts.o: fvwrite.h +$(lpfx)putwc.o: local.h +$(lpfx)putwc_u.o: local.h +$(lpfx)putwchar.o: local.h +$(lpfx)putwchar_u.o: local.h +$(lpfx)refill.o: local.h +$(lpfx)scanf.o: local.h +$(lpfx)setbuf.o: local.h +$(lpfx)setvbuf.o: local.h +$(lpfx)siprintf.o: local.h +$(lpfx)siscanf.o: local.h +$(lpfx)sniprintf.o: local.h +$(lpfx)sprintf.o: local.h +$(lpfx)sscanf.o: local.h +$(lpfx)stdio.o: local.h if NEWLIB_NANO_FORMATTED_IO -$(lpfx)nano-svfprintf.$(oext): local.h nano-vfprintf_local.h -$(lpfx)nano-svfscanf.$(oext): local.h nano-vfscanf_local.h +$(lpfx)nano-svfprintf.o: local.h nano-vfprintf_local.h +$(lpfx)nano-svfscanf.o: local.h nano-vfscanf_local.h endif -$(lpfx)svfiprintf.$(oext): local.h -$(lpfx)svfiscanf.$(oext): local.h floatio.h -$(lpfx)svfprintf.$(oext): local.h -$(lpfx)svfscanf.$(oext): local.h floatio.h -$(lpfx)swprintf.$(oext): local.h -$(lpfx)swscanf.$(oext): local.h -$(lpfx)ungetc.$(oext): local.h -$(lpfx)ungetwc.$(oext): local.h +$(lpfx)svfiprintf.o: local.h +$(lpfx)svfiscanf.o: local.h floatio.h +$(lpfx)svfprintf.o: local.h +$(lpfx)svfscanf.o: local.h floatio.h +$(lpfx)swprintf.o: local.h +$(lpfx)swscanf.o: local.h +$(lpfx)ungetc.o: local.h +$(lpfx)ungetwc.o: local.h if NEWLIB_NANO_FORMATTED_IO -$(lpfx)nano-vfprintf.$(oext): local.h nano-vfprintf_local.h -$(lpfx)nano-vfprintf_i.$(oext): local.h nano-vfprintf_local.h -$(lpfx)nano-vfprintf_float.$(oext): local.h floatio.h nano-vfprintf_local.h -$(lpfx)nano-vfscanf.$(oext): local.h nano-vfscanf_local.h -$(lpfx)nano-vfscanf_i.$(oext): local.h nano-vfscanf_local.h -$(lpfx)nano-vfscanf_float.$(oext): local.h floatio.h nano-vfscanf_local.h +$(lpfx)nano-vfprintf.o: local.h nano-vfprintf_local.h +$(lpfx)nano-vfprintf_i.o: local.h nano-vfprintf_local.h +$(lpfx)nano-vfprintf_float.o: local.h floatio.h nano-vfprintf_local.h +$(lpfx)nano-vfscanf.o: local.h nano-vfscanf_local.h +$(lpfx)nano-vfscanf_i.o: local.h nano-vfscanf_local.h +$(lpfx)nano-vfscanf_float.o: local.h floatio.h nano-vfscanf_local.h endif -$(lpfx)vfiprintf.$(oext): local.h -$(lpfx)vfiscanf.$(oext): local.h floatio.h -$(lpfx)vfprintf.$(oext): local.h -$(lpfx)vfscanf.$(oext): local.h floatio.h -$(lpfx)vfwprintf.$(oext): local.h -$(lpfx)vfwscanf.$(oext): local.h -$(lpfx)viscanf.$(oext): local.h -$(lpfx)vscanf.$(oext): local.h -$(lpfx)vsiscanf.$(oext): local.h -$(lpfx)vsniprintf.$(oext): local.h -$(lpfx)vsscanf.$(oext): local.h -$(lpfx)vswprintf.$(oext): local.h -$(lpfx)vswscanf.$(oext): local.h -$(lpfx)vwprintf.$(oext): local.h -$(lpfx)vwscanf.$(oext): local.h -$(lpfx)wbuf.$(oext): local.h fvwrite.h -$(lpfx)wprintf.$(oext): local.h -$(lpfx)wscanf.$(oext): local.h -$(lpfx)wsetup.$(oext): local.h +$(lpfx)vfiprintf.o: local.h +$(lpfx)vfiscanf.o: local.h floatio.h +$(lpfx)vfprintf.o: local.h +$(lpfx)vfscanf.o: local.h floatio.h +$(lpfx)vfwprintf.o: local.h +$(lpfx)vfwscanf.o: local.h +$(lpfx)viscanf.o: local.h +$(lpfx)vscanf.o: local.h +$(lpfx)vsiscanf.o: local.h +$(lpfx)vsniprintf.o: local.h +$(lpfx)vsscanf.o: local.h +$(lpfx)vswprintf.o: local.h +$(lpfx)vswscanf.o: local.h +$(lpfx)vwprintf.o: local.h +$(lpfx)vwscanf.o: local.h +$(lpfx)wbuf.o: local.h fvwrite.h +$(lpfx)wprintf.o: local.h +$(lpfx)wscanf.o: local.h +$(lpfx)wsetup.o: local.h diff --git a/newlib/libc/stdio/Makefile.in b/newlib/libc/stdio/Makefile.in index 9c59efa..3c6a36f 100644 --- a/newlib/libc/stdio/Makefile.in +++ b/newlib/libc/stdio/Makefile.in @@ -385,7 +385,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ @@ -569,31 +568,31 @@ GENERAL_SOURCES = \ @ELIX_LEVEL_1_FALSE@@ELIX_LEVEL_2_FALSE@@ELIX_LEVEL_3_FALSE@@NEWLIB_NANO_FORMATTED_IO_TRUE@ELIX_4_INT_FORMATTED_IO_SOURCES = @NEWLIB_NANO_FORMATTED_IO_FALSE@LIBADD_OBJS = \ -@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)svfiprintf.$(oext) $(lpfx)svfprintf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)svfiscanf.$(oext) $(lpfx)svfscanf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)vfiprintf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)vfscanf.$(oext) $(lpfx)vfiscanf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)svfiwprintf.$(oext) $(lpfx)svfwprintf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)vfiwprintf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)svfiwscanf.$(oext) $(lpfx)svfwscanf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)vfiwscanf.$(oext) $(lpfx)vfwscanf.$(oext) +@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)svfiprintf.o $(lpfx)svfprintf.o \ +@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)svfiscanf.o $(lpfx)svfscanf.o \ +@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)vfiprintf.o \ +@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)vfscanf.o $(lpfx)vfiscanf.o \ +@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)svfiwprintf.o $(lpfx)svfwprintf.o \ +@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)vfiwprintf.o \ +@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)svfiwscanf.o $(lpfx)svfwscanf.o \ +@NEWLIB_NANO_FORMATTED_IO_FALSE@ $(lpfx)vfiwscanf.o $(lpfx)vfwscanf.o @NEWLIB_NANO_FORMATTED_IO_TRUE@LIBADD_OBJS = \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfprintf_float.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-svfprintf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-svfscanf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfprintf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfprintf_i.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfscanf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfscanf_i.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfscanf_float.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)svfiwprintf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)svfwprintf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)vfiwprintf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)svfiwscanf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)svfwscanf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)vfiwscanf.$(oext) \ -@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)vfwscanf.$(oext) +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfprintf_float.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-svfprintf.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-svfscanf.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfprintf.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfprintf_i.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfscanf.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfscanf_i.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)nano-vfscanf_float.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)svfiwprintf.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)svfwprintf.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)vfiwprintf.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)svfiwscanf.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)svfwscanf.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)vfiwscanf.o \ +@NEWLIB_NANO_FORMATTED_IO_TRUE@ $(lpfx)vfwscanf.o noinst_LIBRARIES = lib.a lib_a_SOURCES = $(GENERAL_SOURCES) $(ELIX_2_SOURCES) $(ELIX_4_SOURCES) @@ -1691,180 +1690,180 @@ uninstall-am: # library, because they are not depended on by final makefile target. # Rules compiling small-footprint nano-formatted-io implementation. -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf.$(oext): nano-vfprintf.c +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf.o: nano-vfprintf.c @NEWLIB_NANO_FORMATTED_IO_TRUE@ $(LIB_COMPILE) -c $(srcdir)/nano-vfprintf.c -o $@ -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf_i.$(oext): nano-vfprintf_i.c +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf_i.o: nano-vfprintf_i.c @NEWLIB_NANO_FORMATTED_IO_TRUE@ $(LIB_COMPILE) -c $(srcdir)/nano-vfprintf_i.c -o $@ -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf_float.$(oext): nano-vfprintf_float.c +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf_float.o: nano-vfprintf_float.c @NEWLIB_NANO_FORMATTED_IO_TRUE@ $(LIB_COMPILE) -c $(srcdir)/nano-vfprintf_float.c -o $@ -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-svfprintf.$(oext): nano-vfprintf.c +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-svfprintf.o: nano-vfprintf.c @NEWLIB_NANO_FORMATTED_IO_TRUE@ $(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/nano-vfprintf.c -o $@ # This rule is needed so that libtool compiles vfiprintf before vfprintf. # Otherwise libtool moves vfprintf.o and subsequently can't find it. -$(lpfx)vfiprintf.$(oext): vfprintf.c +$(lpfx)vfiprintf.o: vfprintf.c $(LIB_COMPILE) -DINTEGER_ONLY -c $(srcdir)/vfprintf.c -o $@ -$(lpfx)svfprintf.$(oext): vfprintf.c +$(lpfx)svfprintf.o: vfprintf.c $(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/vfprintf.c -o $@ -$(lpfx)svfiprintf.$(oext): vfprintf.c +$(lpfx)svfiprintf.o: vfprintf.c $(LIB_COMPILE) -DINTEGER_ONLY -DSTRING_ONLY -c $(srcdir)/vfprintf.c -o $@ -$(lpfx)vfiwprintf.$(oext): vfwprintf.c +$(lpfx)vfiwprintf.o: vfwprintf.c $(LIB_COMPILE) -DINTEGER_ONLY -c $(srcdir)/vfwprintf.c -o $@ -$(lpfx)svfwprintf.$(oext): vfwprintf.c +$(lpfx)svfwprintf.o: vfwprintf.c $(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/vfwprintf.c -o $@ -$(lpfx)svfiwprintf.$(oext): vfwprintf.c +$(lpfx)svfiwprintf.o: vfwprintf.c $(LIB_COMPILE) -DINTEGER_ONLY -DSTRING_ONLY -c $(srcdir)/vfwprintf.c -o $@ # Rules compiling small-footprint nano-formatted-io implementation. -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf.$(oext): nano-vfscanf.c +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf.o: nano-vfscanf.c @NEWLIB_NANO_FORMATTED_IO_TRUE@ $(LIB_COMPILE) -c $(srcdir)/nano-vfscanf.c -o $@ -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf_i.$(oext): nano-vfscanf_i.c +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf_i.o: nano-vfscanf_i.c @NEWLIB_NANO_FORMATTED_IO_TRUE@ $(LIB_COMPILE) -c $(srcdir)/nano-vfscanf_i.c -o $@ -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf_float.$(oext): nano-vfscanf_float.c +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf_float.o: nano-vfscanf_float.c @NEWLIB_NANO_FORMATTED_IO_TRUE@ $(LIB_COMPILE) -c $(srcdir)/nano-vfscanf_float.c -o $@ -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-svfscanf.$(oext): nano-vfscanf.c +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-svfscanf.o: nano-vfscanf.c @NEWLIB_NANO_FORMATTED_IO_TRUE@ $(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/nano-vfscanf.c -o $@ -$(lpfx)vfscanf.$(oext): vfscanf.c +$(lpfx)vfscanf.o: vfscanf.c $(LIB_COMPILE) -c $(srcdir)/vfscanf.c -o $@ -$(lpfx)vfiscanf.$(oext): vfscanf.c +$(lpfx)vfiscanf.o: vfscanf.c $(LIB_COMPILE) -DINTEGER_ONLY -c $(srcdir)/vfscanf.c -o $@ -$(lpfx)svfscanf.$(oext): vfscanf.c +$(lpfx)svfscanf.o: vfscanf.c $(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/vfscanf.c -o $@ -$(lpfx)svfiscanf.$(oext): vfscanf.c +$(lpfx)svfiscanf.o: vfscanf.c $(LIB_COMPILE) -DINTEGER_ONLY -DSTRING_ONLY -c $(srcdir)/vfscanf.c -o $@ -$(lpfx)vfwscanf.$(oext): vfwscanf.c +$(lpfx)vfwscanf.o: vfwscanf.c $(LIB_COMPILE) -c $(srcdir)/vfwscanf.c -o $@ -$(lpfx)vfiwscanf.$(oext): vfwscanf.c +$(lpfx)vfiwscanf.o: vfwscanf.c $(LIB_COMPILE) -DINTEGER_ONLY -c $(srcdir)/vfwscanf.c -o $@ -$(lpfx)svfwscanf.$(oext): vfwscanf.c +$(lpfx)svfwscanf.o: vfwscanf.c $(LIB_COMPILE) -DSTRING_ONLY -c $(srcdir)/vfwscanf.c -o $@ -$(lpfx)svfiwscanf.$(oext): vfwscanf.c +$(lpfx)svfiwscanf.o: vfwscanf.c $(LIB_COMPILE) -DINTEGER_ONLY -DSTRING_ONLY -c $(srcdir)/vfwscanf.c -o $@ -$(lpfx)clearerr.$(oext): local.h -$(lpfx)clearerr_u.$(oext): local.h -$(lpfx)fclose.$(oext): local.h -$(lpfx)fdopen.$(oext): local.h -$(lpfx)feof.$(oext): local.h -$(lpfx)feof_u.$(oext): local.h -$(lpfx)ferror.$(oext): local.h -$(lpfx)ferror_u.$(oext): local.h -$(lpfx)fflush.$(oext): local.h -$(lpfx)fflush_u.$(oext): fflush.c -$(lpfx)fgetc.$(oext): local.h -$(lpfx)fgetc_u.$(oext): local.h -$(lpfx)fgets.$(oext): local.h -$(lpfx)fgets_u.$(oext): fgets.c -$(lpfx)fgetwc.$(oext): local.h -$(lpfx)fgetwc_u.$(oext): local.h -$(lpfx)fgetws.$(oext): local.h -$(lpfx)fgetws_u.$(oext): fgetws.c -$(lpfx)fileno.$(oext): local.h -$(lpfx)fileno_u.$(oext): local.h -$(lpfx)findfp.$(oext): local.h -$(lpfx)fmemopen.$(oext): local.h -$(lpfx)fopen.$(oext): local.h -$(lpfx)fopencookie.$(oext): local.h -$(lpfx)fpurge.$(oext): local.h -$(lpfx)fputc.$(oext): local.h -$(lpfx)fputc_u.$(oext): local.h -$(lpfx)fputs.$(oext): fvwrite.h -$(lpfx)fputs_u.$(oext): fputs.c -$(lpfx)fputwc.$(oext): local.h -$(lpfx)fputwc_u.$(oext): local.h -$(lpfx)fputws.$(oext): local.h fvwrite.h -$(lpfx)fputws_u.$(oext): fputws.c -$(lpfx)fread.$(oext): local.h -$(lpfx)fread_u.$(oext): fread.c -$(lpfx)freopen.$(oext): local.h -$(lpfx)fseek.$(oext): local.h -$(lpfx)fsetlocking.$(oext): local.h -$(lpfx)ftell.$(oext): local.h -$(lpfx)funopen.$(oext): local.h -$(lpfx)fvwrite.$(oext): local.h fvwrite.h -$(lpfx)fwalk.$(oext): local.h -$(lpfx)fwide.$(oext): local.h -$(lpfx)fwprintf.$(oext): local.h -$(lpfx)fwrite.$(oext): local.h fvwrite.h -$(lpfx)fwrite_u.$(oext): fwrite.c -$(lpfx)fwscanf.$(oext): local.h -$(lpfx)getwc.$(oext): local.h -$(lpfx)getwc_u.$(oext): local.h -$(lpfx)getwchar.$(oext): local.h -$(lpfx)getwchar_u.$(oext): local.h -$(lpfx)iscanf.$(oext): local.h -$(lpfx)makebuf.$(oext): local.h -$(lpfx)open_memstream.$(oext): local.h -$(lpfx)puts.$(oext): fvwrite.h -$(lpfx)putwc.$(oext): local.h -$(lpfx)putwc_u.$(oext): local.h -$(lpfx)putwchar.$(oext): local.h -$(lpfx)putwchar_u.$(oext): local.h -$(lpfx)refill.$(oext): local.h -$(lpfx)scanf.$(oext): local.h -$(lpfx)setbuf.$(oext): local.h -$(lpfx)setvbuf.$(oext): local.h -$(lpfx)siprintf.$(oext): local.h -$(lpfx)siscanf.$(oext): local.h -$(lpfx)sniprintf.$(oext): local.h -$(lpfx)sprintf.$(oext): local.h -$(lpfx)sscanf.$(oext): local.h -$(lpfx)stdio.$(oext): local.h -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-svfprintf.$(oext): local.h nano-vfprintf_local.h -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-svfscanf.$(oext): local.h nano-vfscanf_local.h -$(lpfx)svfiprintf.$(oext): local.h -$(lpfx)svfiscanf.$(oext): local.h floatio.h -$(lpfx)svfprintf.$(oext): local.h -$(lpfx)svfscanf.$(oext): local.h floatio.h -$(lpfx)swprintf.$(oext): local.h -$(lpfx)swscanf.$(oext): local.h -$(lpfx)ungetc.$(oext): local.h -$(lpfx)ungetwc.$(oext): local.h -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf.$(oext): local.h nano-vfprintf_local.h -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf_i.$(oext): local.h nano-vfprintf_local.h -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf_float.$(oext): local.h floatio.h nano-vfprintf_local.h -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf.$(oext): local.h nano-vfscanf_local.h -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf_i.$(oext): local.h nano-vfscanf_local.h -@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf_float.$(oext): local.h floatio.h nano-vfscanf_local.h -$(lpfx)vfiprintf.$(oext): local.h -$(lpfx)vfiscanf.$(oext): local.h floatio.h -$(lpfx)vfprintf.$(oext): local.h -$(lpfx)vfscanf.$(oext): local.h floatio.h -$(lpfx)vfwprintf.$(oext): local.h -$(lpfx)vfwscanf.$(oext): local.h -$(lpfx)viscanf.$(oext): local.h -$(lpfx)vscanf.$(oext): local.h -$(lpfx)vsiscanf.$(oext): local.h -$(lpfx)vsniprintf.$(oext): local.h -$(lpfx)vsscanf.$(oext): local.h -$(lpfx)vswprintf.$(oext): local.h -$(lpfx)vswscanf.$(oext): local.h -$(lpfx)vwprintf.$(oext): local.h -$(lpfx)vwscanf.$(oext): local.h -$(lpfx)wbuf.$(oext): local.h fvwrite.h -$(lpfx)wprintf.$(oext): local.h -$(lpfx)wscanf.$(oext): local.h -$(lpfx)wsetup.$(oext): local.h +$(lpfx)clearerr.o: local.h +$(lpfx)clearerr_u.o: local.h +$(lpfx)fclose.o: local.h +$(lpfx)fdopen.o: local.h +$(lpfx)feof.o: local.h +$(lpfx)feof_u.o: local.h +$(lpfx)ferror.o: local.h +$(lpfx)ferror_u.o: local.h +$(lpfx)fflush.o: local.h +$(lpfx)fflush_u.o: fflush.c +$(lpfx)fgetc.o: local.h +$(lpfx)fgetc_u.o: local.h +$(lpfx)fgets.o: local.h +$(lpfx)fgets_u.o: fgets.c +$(lpfx)fgetwc.o: local.h +$(lpfx)fgetwc_u.o: local.h +$(lpfx)fgetws.o: local.h +$(lpfx)fgetws_u.o: fgetws.c +$(lpfx)fileno.o: local.h +$(lpfx)fileno_u.o: local.h +$(lpfx)findfp.o: local.h +$(lpfx)fmemopen.o: local.h +$(lpfx)fopen.o: local.h +$(lpfx)fopencookie.o: local.h +$(lpfx)fpurge.o: local.h +$(lpfx)fputc.o: local.h +$(lpfx)fputc_u.o: local.h +$(lpfx)fputs.o: fvwrite.h +$(lpfx)fputs_u.o: fputs.c +$(lpfx)fputwc.o: local.h +$(lpfx)fputwc_u.o: local.h +$(lpfx)fputws.o: local.h fvwrite.h +$(lpfx)fputws_u.o: fputws.c +$(lpfx)fread.o: local.h +$(lpfx)fread_u.o: fread.c +$(lpfx)freopen.o: local.h +$(lpfx)fseek.o: local.h +$(lpfx)fsetlocking.o: local.h +$(lpfx)ftell.o: local.h +$(lpfx)funopen.o: local.h +$(lpfx)fvwrite.o: local.h fvwrite.h +$(lpfx)fwalk.o: local.h +$(lpfx)fwide.o: local.h +$(lpfx)fwprintf.o: local.h +$(lpfx)fwrite.o: local.h fvwrite.h +$(lpfx)fwrite_u.o: fwrite.c +$(lpfx)fwscanf.o: local.h +$(lpfx)getwc.o: local.h +$(lpfx)getwc_u.o: local.h +$(lpfx)getwchar.o: local.h +$(lpfx)getwchar_u.o: local.h +$(lpfx)iscanf.o: local.h +$(lpfx)makebuf.o: local.h +$(lpfx)open_memstream.o: local.h +$(lpfx)puts.o: fvwrite.h +$(lpfx)putwc.o: local.h +$(lpfx)putwc_u.o: local.h +$(lpfx)putwchar.o: local.h +$(lpfx)putwchar_u.o: local.h +$(lpfx)refill.o: local.h +$(lpfx)scanf.o: local.h +$(lpfx)setbuf.o: local.h +$(lpfx)setvbuf.o: local.h +$(lpfx)siprintf.o: local.h +$(lpfx)siscanf.o: local.h +$(lpfx)sniprintf.o: local.h +$(lpfx)sprintf.o: local.h +$(lpfx)sscanf.o: local.h +$(lpfx)stdio.o: local.h +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-svfprintf.o: local.h nano-vfprintf_local.h +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-svfscanf.o: local.h nano-vfscanf_local.h +$(lpfx)svfiprintf.o: local.h +$(lpfx)svfiscanf.o: local.h floatio.h +$(lpfx)svfprintf.o: local.h +$(lpfx)svfscanf.o: local.h floatio.h +$(lpfx)swprintf.o: local.h +$(lpfx)swscanf.o: local.h +$(lpfx)ungetc.o: local.h +$(lpfx)ungetwc.o: local.h +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf.o: local.h nano-vfprintf_local.h +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf_i.o: local.h nano-vfprintf_local.h +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfprintf_float.o: local.h floatio.h nano-vfprintf_local.h +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf.o: local.h nano-vfscanf_local.h +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf_i.o: local.h nano-vfscanf_local.h +@NEWLIB_NANO_FORMATTED_IO_TRUE@$(lpfx)nano-vfscanf_float.o: local.h floatio.h nano-vfscanf_local.h +$(lpfx)vfiprintf.o: local.h +$(lpfx)vfiscanf.o: local.h floatio.h +$(lpfx)vfprintf.o: local.h +$(lpfx)vfscanf.o: local.h floatio.h +$(lpfx)vfwprintf.o: local.h +$(lpfx)vfwscanf.o: local.h +$(lpfx)viscanf.o: local.h +$(lpfx)vscanf.o: local.h +$(lpfx)vsiscanf.o: local.h +$(lpfx)vsniprintf.o: local.h +$(lpfx)vsscanf.o: local.h +$(lpfx)vswprintf.o: local.h +$(lpfx)vswscanf.o: local.h +$(lpfx)vwprintf.o: local.h +$(lpfx)vwscanf.o: local.h +$(lpfx)wbuf.o: local.h fvwrite.h +$(lpfx)wprintf.o: local.h +$(lpfx)wscanf.o: local.h +$(lpfx)wsetup.o: local.h # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/newlib/libc/stdio64/Makefile.in b/newlib/libc/stdio64/Makefile.in index e31412d..30f2e9f 100644 --- a/newlib/libc/stdio64/Makefile.in +++ b/newlib/libc/stdio64/Makefile.in @@ -282,7 +282,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/stdlib/Makefile.am b/newlib/libc/stdlib/Makefile.am index 9e2e42e..2d08930 100644 --- a/newlib/libc/stdlib/Makefile.am +++ b/newlib/libc/stdlib/Makefile.am @@ -162,10 +162,10 @@ ELIX_2_SOURCES = \ wctob.c ELIX_2_OBJS = \ - $(lpfx)$(MALIGNR).$(oext) \ - $(lpfx)$(MALLOPTR).$(oext) \ - $(lpfx)$(PVALLOCR).$(oext) \ - $(lpfx)$(VALLOCR).$(oext) + $(lpfx)$(MALIGNR).o \ + $(lpfx)$(MALLOPTR).o \ + $(lpfx)$(PVALLOCR).o \ + $(lpfx)$(VALLOCR).o ELIX_3_SOURCES = \ putenv.c \ @@ -196,10 +196,10 @@ endif endif # Because of how libtool moves objects around, mallocr must be built last. -LIBADD_OBJS = $(lpfx)$(FREER).$(oext) $(lpfx)$(REALLOCR).$(oext) \ - $(lpfx)$(CALLOCR).$(oext) $(lpfx)$(CFREER).$(oext) \ - $(lpfx)$(MALLINFOR).$(oext) $(lpfx)$(MALLSTATSR).$(oext) \ - $(lpfx)$(MSIZER).$(oext) $(lpfx)$(MALLOCR).$(oext) +LIBADD_OBJS = $(lpfx)$(FREER).o $(lpfx)$(REALLOCR).o \ + $(lpfx)$(CALLOCR).o $(lpfx)$(CFREER).o \ + $(lpfx)$(MALLINFOR).o $(lpfx)$(MALLSTATSR).o \ + $(lpfx)$(MSIZER).o $(lpfx)$(MALLOCR).o noinst_LIBRARIES = lib.a lib_a_SOURCES = $(GENERAL_SOURCES) $(EXTENDED_SOURCES) $(ELIX_SOURCES) @@ -210,62 +210,62 @@ LIB_COMPILE = $(AM_V_CC)$(COMPILE) MALLOC_COMPILE = $(LIB_COMPILE) -DINTERNAL_NEWLIB -$(lpfx)$(MALLOCR).$(oext): $(MALLOCR).c +$(lpfx)$(MALLOCR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MALLOC -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(FREER).$(oext): $(MALLOCR).c +$(lpfx)$(FREER).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_FREE -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(REALLOCR).$(oext): $(MALLOCR).c +$(lpfx)$(REALLOCR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_REALLOC -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(CALLOCR).$(oext): $(MALLOCR).c +$(lpfx)$(CALLOCR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_CALLOC -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(CFREER).$(oext): $(MALLOCR).c +$(lpfx)$(CFREER).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_CFREE -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(MALIGNR).$(oext): $(MALLOCR).c +$(lpfx)$(MALIGNR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MEMALIGN -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(VALLOCR).$(oext): $(MALLOCR).c +$(lpfx)$(VALLOCR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_VALLOC -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(PVALLOCR).$(oext): $(MALLOCR).c +$(lpfx)$(PVALLOCR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_PVALLOC -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(MALLINFOR).$(oext): $(MALLOCR).c +$(lpfx)$(MALLINFOR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MALLINFO -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(MALLSTATSR).$(oext): $(MALLOCR).c +$(lpfx)$(MALLSTATSR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MALLOC_STATS -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(MSIZER).$(oext): $(MALLOCR).c +$(lpfx)$(MSIZER).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MALLOC_USABLE_SIZE -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(MALLOPTR).$(oext): $(MALLOCR).c +$(lpfx)$(MALLOPTR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MALLOPT -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)dtoa.$(oext): dtoa.c mprec.h -$(lpfx)ldtoa.$(oext): ldtoa.c mprec.h gdtoa.h -$(lpfx)gdtoa-ldtoa.$(oext): gdtoa-ldtoa.c mprec.h gdtoaimp.h gdtoa.h -$(lpfx)gdtoa-gdtoa.$(oext): gdtoa-gdtoa.c mprec.h gdtoaimp.h gdtoa.h -$(lpfx)gdtoa-dmisc.$(oext): gdtoa-dmisc.c mprec.h gdtoaimp.h gdtoa.h -$(lpfx)gdtoa-gmisc.$(oext): gdtoa-gmisc.c mprec.h gdtoaimp.h gdtoa.h -$(lpfx)ecvtbuf.$(oext): ecvtbuf.c mprec.h -$(lpfx)mbtowc_r.$(oext): mbtowc_r.c mbctype.h -$(lpfx)mprec.$(oext): mprec.c mprec.h -$(lpfx)strtod.$(oext): strtod.c mprec.h -$(lpfx)gdtoa-gethex.$(oext): gdtoa-gethex.c mprec.h -$(lpfx)gdtoa-hexnan.$(oext): gdtoa-hexnan.c mprec.h -$(lpfx)wctomb_r.$(oext): wctomb_r.c mbctype.h -$(lpfx)drand48.$(oext): drand48.c rand48.h -$(lpfx)erand48.$(oext): erand48.c rand48.h -$(lpfx)jrand48.$(oext): jrand48.c rand48.h -$(lpfx)lcong48.$(oext): lcong48.c rand48.h -$(lpfx)lrand48.$(oext): lrand48.c rand48.h -$(lpfx)mrand48.$(oext): mrand48.c rand48.h -$(lpfx)nrand48.$(oext): nrand48.c rand48.h -$(lpfx)rand48.$(oext): rand48.c rand48.h -$(lpfx)seed48.$(oext): seed48.c rand48.h -$(lpfx)srand48.$(oext): srand48.c rand48.h +$(lpfx)dtoa.o: dtoa.c mprec.h +$(lpfx)ldtoa.o: ldtoa.c mprec.h gdtoa.h +$(lpfx)gdtoa-ldtoa.o: gdtoa-ldtoa.c mprec.h gdtoaimp.h gdtoa.h +$(lpfx)gdtoa-gdtoa.o: gdtoa-gdtoa.c mprec.h gdtoaimp.h gdtoa.h +$(lpfx)gdtoa-dmisc.o: gdtoa-dmisc.c mprec.h gdtoaimp.h gdtoa.h +$(lpfx)gdtoa-gmisc.o: gdtoa-gmisc.c mprec.h gdtoaimp.h gdtoa.h +$(lpfx)ecvtbuf.o: ecvtbuf.c mprec.h +$(lpfx)mbtowc_r.o: mbtowc_r.c mbctype.h +$(lpfx)mprec.o: mprec.c mprec.h +$(lpfx)strtod.o: strtod.c mprec.h +$(lpfx)gdtoa-gethex.o: gdtoa-gethex.c mprec.h +$(lpfx)gdtoa-hexnan.o: gdtoa-hexnan.c mprec.h +$(lpfx)wctomb_r.o: wctomb_r.c mbctype.h +$(lpfx)drand48.o: drand48.c rand48.h +$(lpfx)erand48.o: erand48.c rand48.h +$(lpfx)jrand48.o: jrand48.c rand48.h +$(lpfx)lcong48.o: lcong48.c rand48.h +$(lpfx)lrand48.o: lrand48.c rand48.h +$(lpfx)mrand48.o: mrand48.c rand48.h +$(lpfx)nrand48.o: nrand48.c rand48.h +$(lpfx)rand48.o: rand48.c rand48.h +$(lpfx)seed48.o: seed48.c rand48.h +$(lpfx)srand48.o: srand48.c rand48.h diff --git a/newlib/libc/stdlib/Makefile.in b/newlib/libc/stdlib/Makefile.in index b48a713..d1d23ae 100644 --- a/newlib/libc/stdlib/Makefile.in +++ b/newlib/libc/stdlib/Makefile.in @@ -355,7 +355,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ @@ -461,10 +460,10 @@ ELIX_2_SOURCES = \ wctob.c ELIX_2_OBJS = \ - $(lpfx)$(MALIGNR).$(oext) \ - $(lpfx)$(MALLOPTR).$(oext) \ - $(lpfx)$(PVALLOCR).$(oext) \ - $(lpfx)$(VALLOCR).$(oext) + $(lpfx)$(MALIGNR).o \ + $(lpfx)$(MALLOPTR).o \ + $(lpfx)$(PVALLOCR).o \ + $(lpfx)$(VALLOCR).o ELIX_3_SOURCES = \ putenv.c \ @@ -486,10 +485,10 @@ ELIX_4_SOURCES = \ @ELIX_LEVEL_1_TRUE@ELIX_OBJS = # Because of how libtool moves objects around, mallocr must be built last. -LIBADD_OBJS = $(lpfx)$(FREER).$(oext) $(lpfx)$(REALLOCR).$(oext) \ - $(lpfx)$(CALLOCR).$(oext) $(lpfx)$(CFREER).$(oext) \ - $(lpfx)$(MALLINFOR).$(oext) $(lpfx)$(MALLSTATSR).$(oext) \ - $(lpfx)$(MSIZER).$(oext) $(lpfx)$(MALLOCR).$(oext) +LIBADD_OBJS = $(lpfx)$(FREER).o $(lpfx)$(REALLOCR).o \ + $(lpfx)$(CALLOCR).o $(lpfx)$(CFREER).o \ + $(lpfx)$(MALLINFOR).o $(lpfx)$(MALLSTATSR).o \ + $(lpfx)$(MSIZER).o $(lpfx)$(MALLOCR).o noinst_LIBRARIES = lib.a lib_a_SOURCES = $(GENERAL_SOURCES) $(EXTENDED_SOURCES) $(ELIX_SOURCES) @@ -1484,65 +1483,65 @@ uninstall-am: .PRECIOUS: Makefile -$(lpfx)$(MALLOCR).$(oext): $(MALLOCR).c +$(lpfx)$(MALLOCR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MALLOC -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(FREER).$(oext): $(MALLOCR).c +$(lpfx)$(FREER).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_FREE -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(REALLOCR).$(oext): $(MALLOCR).c +$(lpfx)$(REALLOCR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_REALLOC -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(CALLOCR).$(oext): $(MALLOCR).c +$(lpfx)$(CALLOCR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_CALLOC -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(CFREER).$(oext): $(MALLOCR).c +$(lpfx)$(CFREER).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_CFREE -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(MALIGNR).$(oext): $(MALLOCR).c +$(lpfx)$(MALIGNR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MEMALIGN -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(VALLOCR).$(oext): $(MALLOCR).c +$(lpfx)$(VALLOCR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_VALLOC -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(PVALLOCR).$(oext): $(MALLOCR).c +$(lpfx)$(PVALLOCR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_PVALLOC -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(MALLINFOR).$(oext): $(MALLOCR).c +$(lpfx)$(MALLINFOR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MALLINFO -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(MALLSTATSR).$(oext): $(MALLOCR).c +$(lpfx)$(MALLSTATSR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MALLOC_STATS -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(MSIZER).$(oext): $(MALLOCR).c +$(lpfx)$(MSIZER).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MALLOC_USABLE_SIZE -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)$(MALLOPTR).$(oext): $(MALLOCR).c +$(lpfx)$(MALLOPTR).o: $(MALLOCR).c $(MALLOC_COMPILE) -DDEFINE_MALLOPT -c $(srcdir)/$(MALLOCR).c -o $@ -$(lpfx)dtoa.$(oext): dtoa.c mprec.h -$(lpfx)ldtoa.$(oext): ldtoa.c mprec.h gdtoa.h -$(lpfx)gdtoa-ldtoa.$(oext): gdtoa-ldtoa.c mprec.h gdtoaimp.h gdtoa.h -$(lpfx)gdtoa-gdtoa.$(oext): gdtoa-gdtoa.c mprec.h gdtoaimp.h gdtoa.h -$(lpfx)gdtoa-dmisc.$(oext): gdtoa-dmisc.c mprec.h gdtoaimp.h gdtoa.h -$(lpfx)gdtoa-gmisc.$(oext): gdtoa-gmisc.c mprec.h gdtoaimp.h gdtoa.h -$(lpfx)ecvtbuf.$(oext): ecvtbuf.c mprec.h -$(lpfx)mbtowc_r.$(oext): mbtowc_r.c mbctype.h -$(lpfx)mprec.$(oext): mprec.c mprec.h -$(lpfx)strtod.$(oext): strtod.c mprec.h -$(lpfx)gdtoa-gethex.$(oext): gdtoa-gethex.c mprec.h -$(lpfx)gdtoa-hexnan.$(oext): gdtoa-hexnan.c mprec.h -$(lpfx)wctomb_r.$(oext): wctomb_r.c mbctype.h -$(lpfx)drand48.$(oext): drand48.c rand48.h -$(lpfx)erand48.$(oext): erand48.c rand48.h -$(lpfx)jrand48.$(oext): jrand48.c rand48.h -$(lpfx)lcong48.$(oext): lcong48.c rand48.h -$(lpfx)lrand48.$(oext): lrand48.c rand48.h -$(lpfx)mrand48.$(oext): mrand48.c rand48.h -$(lpfx)nrand48.$(oext): nrand48.c rand48.h -$(lpfx)rand48.$(oext): rand48.c rand48.h -$(lpfx)seed48.$(oext): seed48.c rand48.h -$(lpfx)srand48.$(oext): srand48.c rand48.h +$(lpfx)dtoa.o: dtoa.c mprec.h +$(lpfx)ldtoa.o: ldtoa.c mprec.h gdtoa.h +$(lpfx)gdtoa-ldtoa.o: gdtoa-ldtoa.c mprec.h gdtoaimp.h gdtoa.h +$(lpfx)gdtoa-gdtoa.o: gdtoa-gdtoa.c mprec.h gdtoaimp.h gdtoa.h +$(lpfx)gdtoa-dmisc.o: gdtoa-dmisc.c mprec.h gdtoaimp.h gdtoa.h +$(lpfx)gdtoa-gmisc.o: gdtoa-gmisc.c mprec.h gdtoaimp.h gdtoa.h +$(lpfx)ecvtbuf.o: ecvtbuf.c mprec.h +$(lpfx)mbtowc_r.o: mbtowc_r.c mbctype.h +$(lpfx)mprec.o: mprec.c mprec.h +$(lpfx)strtod.o: strtod.c mprec.h +$(lpfx)gdtoa-gethex.o: gdtoa-gethex.c mprec.h +$(lpfx)gdtoa-hexnan.o: gdtoa-hexnan.c mprec.h +$(lpfx)wctomb_r.o: wctomb_r.c mbctype.h +$(lpfx)drand48.o: drand48.c rand48.h +$(lpfx)erand48.o: erand48.c rand48.h +$(lpfx)jrand48.o: jrand48.c rand48.h +$(lpfx)lcong48.o: lcong48.c rand48.h +$(lpfx)lrand48.o: lrand48.c rand48.h +$(lpfx)mrand48.o: mrand48.c rand48.h +$(lpfx)nrand48.o: nrand48.c rand48.h +$(lpfx)rand48.o: rand48.c rand48.h +$(lpfx)seed48.o: seed48.c rand48.h +$(lpfx)srand48.o: srand48.c rand48.h # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/newlib/libc/string/Makefile.in b/newlib/libc/string/Makefile.in index 65419e8..1fbcacb 100644 --- a/newlib/libc/string/Makefile.in +++ b/newlib/libc/string/Makefile.in @@ -339,7 +339,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/a29khif/Makefile.in b/newlib/libc/sys/a29khif/Makefile.in index bbd3764..dad444a 100644 --- a/newlib/libc/sys/a29khif/Makefile.in +++ b/newlib/libc/sys/a29khif/Makefile.in @@ -289,7 +289,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/amdgcn/Makefile.in b/newlib/libc/sys/amdgcn/Makefile.in index e55a3fd..7d2b709 100644 --- a/newlib/libc/sys/amdgcn/Makefile.in +++ b/newlib/libc/sys/amdgcn/Makefile.in @@ -278,7 +278,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/arm/Makefile.in b/newlib/libc/sys/arm/Makefile.in index dc072a1..81de740 100644 --- a/newlib/libc/sys/arm/Makefile.in +++ b/newlib/libc/sys/arm/Makefile.in @@ -283,7 +283,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/d10v/Makefile.in b/newlib/libc/sys/d10v/Makefile.in index 5af41a1..cbf3136 100644 --- a/newlib/libc/sys/d10v/Makefile.in +++ b/newlib/libc/sys/d10v/Makefile.in @@ -279,7 +279,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/decstation/Makefile.in b/newlib/libc/sys/decstation/Makefile.in index f6380e8..2b4830a 100644 --- a/newlib/libc/sys/decstation/Makefile.in +++ b/newlib/libc/sys/decstation/Makefile.in @@ -268,7 +268,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/epiphany/Makefile.in b/newlib/libc/sys/epiphany/Makefile.in index 73cc1eb..9a88c4f 100644 --- a/newlib/libc/sys/epiphany/Makefile.in +++ b/newlib/libc/sys/epiphany/Makefile.in @@ -298,7 +298,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/h8300hms/Makefile.in b/newlib/libc/sys/h8300hms/Makefile.in index c2fd32c..9829854 100644 --- a/newlib/libc/sys/h8300hms/Makefile.in +++ b/newlib/libc/sys/h8300hms/Makefile.in @@ -281,7 +281,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/h8500hms/Makefile.in b/newlib/libc/sys/h8500hms/Makefile.in index 4ca43c7..06f263b 100644 --- a/newlib/libc/sys/h8500hms/Makefile.in +++ b/newlib/libc/sys/h8500hms/Makefile.in @@ -272,7 +272,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/m88kbug/Makefile.in b/newlib/libc/sys/m88kbug/Makefile.in index 4d45313..8350bef 100644 --- a/newlib/libc/sys/m88kbug/Makefile.in +++ b/newlib/libc/sys/m88kbug/Makefile.in @@ -272,7 +272,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/mmixware/Makefile.in b/newlib/libc/sys/mmixware/Makefile.in index bc695fa..71a1df1 100644 --- a/newlib/libc/sys/mmixware/Makefile.in +++ b/newlib/libc/sys/mmixware/Makefile.in @@ -290,7 +290,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/netware/Makefile.in b/newlib/libc/sys/netware/Makefile.in index 9205998..cb6c73c 100644 --- a/newlib/libc/sys/netware/Makefile.in +++ b/newlib/libc/sys/netware/Makefile.in @@ -268,7 +268,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/or1k/Makefile.in b/newlib/libc/sys/or1k/Makefile.in index 1b3f199..0708061 100644 --- a/newlib/libc/sys/or1k/Makefile.in +++ b/newlib/libc/sys/or1k/Makefile.in @@ -278,7 +278,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/phoenix/Makefile.in b/newlib/libc/sys/phoenix/Makefile.in index 8490802..ba33e6b 100644 --- a/newlib/libc/sys/phoenix/Makefile.in +++ b/newlib/libc/sys/phoenix/Makefile.in @@ -319,7 +319,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/phoenix/configure b/newlib/libc/sys/phoenix/configure index 0d40a76..0231cdb 100644 --- a/newlib/libc/sys/phoenix/configure +++ b/newlib/libc/sys/phoenix/configure @@ -595,7 +595,6 @@ shared_machine_dir machine_dir libm_machine_dir lpfx -oext ELIX_LEVEL_4_FALSE ELIX_LEVEL_4_TRUE ELIX_LEVEL_3_FALSE @@ -4250,8 +4249,7 @@ fi # Hard-code OBJEXT. Normally it is set by AC_OBJEXT, but we # use oext, which is set in configure.host based on the target platform. -OBJEXT=${oext} - +OBJEXT=o diff --git a/newlib/libc/sys/phoenix/machine/Makefile.in b/newlib/libc/sys/phoenix/machine/Makefile.in index 0b3f56f..bc00576 100644 --- a/newlib/libc/sys/phoenix/machine/Makefile.in +++ b/newlib/libc/sys/phoenix/machine/Makefile.in @@ -252,7 +252,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/phoenix/machine/arm/Makefile.in b/newlib/libc/sys/phoenix/machine/arm/Makefile.in index 9379922..2b8b04f 100644 --- a/newlib/libc/sys/phoenix/machine/arm/Makefile.in +++ b/newlib/libc/sys/phoenix/machine/arm/Makefile.in @@ -267,7 +267,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/phoenix/machine/arm/configure b/newlib/libc/sys/phoenix/machine/arm/configure index 6a6ac64..d874ca6 100644 --- a/newlib/libc/sys/phoenix/machine/arm/configure +++ b/newlib/libc/sys/phoenix/machine/arm/configure @@ -592,7 +592,6 @@ shared_machine_dir machine_dir libm_machine_dir lpfx -oext ELIX_LEVEL_4_FALSE ELIX_LEVEL_4_TRUE ELIX_LEVEL_3_FALSE @@ -4247,8 +4246,7 @@ fi # Hard-code OBJEXT. Normally it is set by AC_OBJEXT, but we # use oext, which is set in configure.host based on the target platform. -OBJEXT=${oext} - +OBJEXT=o diff --git a/newlib/libc/sys/phoenix/machine/configure b/newlib/libc/sys/phoenix/machine/configure index f5e7ddb..d516e11 100644 --- a/newlib/libc/sys/phoenix/machine/configure +++ b/newlib/libc/sys/phoenix/machine/configure @@ -597,7 +597,6 @@ shared_machine_dir machine_dir libm_machine_dir lpfx -oext ELIX_LEVEL_4_FALSE ELIX_LEVEL_4_TRUE ELIX_LEVEL_3_FALSE @@ -4255,8 +4254,7 @@ fi # Hard-code OBJEXT. Normally it is set by AC_OBJEXT, but we # use oext, which is set in configure.host based on the target platform. -OBJEXT=${oext} - +OBJEXT=o diff --git a/newlib/libc/sys/rdos/Makefile.in b/newlib/libc/sys/rdos/Makefile.in index cc95dda..46b6c48 100644 --- a/newlib/libc/sys/rdos/Makefile.in +++ b/newlib/libc/sys/rdos/Makefile.in @@ -289,7 +289,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/rtems/Makefile.in b/newlib/libc/sys/rtems/Makefile.in index ed0f3df..9966c79 100644 --- a/newlib/libc/sys/rtems/Makefile.in +++ b/newlib/libc/sys/rtems/Makefile.in @@ -273,7 +273,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/sh/Makefile.in b/newlib/libc/sys/sh/Makefile.in index a298e16..f90d715 100644 --- a/newlib/libc/sys/sh/Makefile.in +++ b/newlib/libc/sys/sh/Makefile.in @@ -280,7 +280,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/sparc64/Makefile.in b/newlib/libc/sys/sparc64/Makefile.in index e7cceef..c7f9cfa 100644 --- a/newlib/libc/sys/sparc64/Makefile.in +++ b/newlib/libc/sys/sparc64/Makefile.in @@ -297,7 +297,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/sun4/Makefile.in b/newlib/libc/sys/sun4/Makefile.in index 488e2fa..69052ea 100644 --- a/newlib/libc/sys/sun4/Makefile.in +++ b/newlib/libc/sys/sun4/Makefile.in @@ -272,7 +272,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/sysmec/Makefile.in b/newlib/libc/sys/sysmec/Makefile.in index 99a5497..f780d1d 100644 --- a/newlib/libc/sys/sysmec/Makefile.in +++ b/newlib/libc/sys/sysmec/Makefile.in @@ -290,7 +290,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/sysnec810/Makefile.in b/newlib/libc/sys/sysnec810/Makefile.in index 34f768b..652056b 100644 --- a/newlib/libc/sys/sysnec810/Makefile.in +++ b/newlib/libc/sys/sysnec810/Makefile.in @@ -279,7 +279,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/sysnecv850/Makefile.in b/newlib/libc/sys/sysnecv850/Makefile.in index ab19a42..08eec69 100644 --- a/newlib/libc/sys/sysnecv850/Makefile.in +++ b/newlib/libc/sys/sysnecv850/Makefile.in @@ -314,7 +314,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/sysvi386/Makefile.in b/newlib/libc/sys/sysvi386/Makefile.in index d51132d..4c767c4 100644 --- a/newlib/libc/sys/sysvi386/Makefile.in +++ b/newlib/libc/sys/sysvi386/Makefile.in @@ -299,7 +299,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/sysvnecv70/Makefile.in b/newlib/libc/sys/sysvnecv70/Makefile.in index b2cf2c2..8b0d0a7 100644 --- a/newlib/libc/sys/sysvnecv70/Makefile.in +++ b/newlib/libc/sys/sysvnecv70/Makefile.in @@ -282,7 +282,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/tic80/Makefile.in b/newlib/libc/sys/tic80/Makefile.in index 8a0b2e3..56c28a7 100644 --- a/newlib/libc/sys/tic80/Makefile.in +++ b/newlib/libc/sys/tic80/Makefile.in @@ -272,7 +272,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/tirtos/Makefile.in b/newlib/libc/sys/tirtos/Makefile.in index 646cbaa..9548677 100644 --- a/newlib/libc/sys/tirtos/Makefile.in +++ b/newlib/libc/sys/tirtos/Makefile.in @@ -272,7 +272,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/w65/Makefile.in b/newlib/libc/sys/w65/Makefile.in index b4365dd..0f13adf 100644 --- a/newlib/libc/sys/w65/Makefile.in +++ b/newlib/libc/sys/w65/Makefile.in @@ -272,7 +272,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/sys/z8ksim/Makefile.in b/newlib/libc/sys/z8ksim/Makefile.in index 7e63765..8fc9da5 100644 --- a/newlib/libc/sys/z8ksim/Makefile.in +++ b/newlib/libc/sys/z8ksim/Makefile.in @@ -272,7 +272,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/syscalls/Makefile.in b/newlib/libc/syscalls/Makefile.in index eb0c38c..f0ab1c3 100644 --- a/newlib/libc/syscalls/Makefile.in +++ b/newlib/libc/syscalls/Makefile.in @@ -283,7 +283,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/time/Makefile.am b/newlib/libc/time/Makefile.am index 2f3fd49..39d6b9b 100644 --- a/newlib/libc/time/Makefile.am +++ b/newlib/libc/time/Makefile.am @@ -30,4 +30,4 @@ noinst_LIBRARIES = lib.a lib_a_SOURCES = $(LIB_SOURCES) lib_a_CFLAGS = $(AM_CFLAGS) -$(lpfx)wcsftime.$(oext): strftime.c +$(lpfx)wcsftime.o: strftime.c diff --git a/newlib/libc/time/Makefile.in b/newlib/libc/time/Makefile.in index d4fe775..ec9ff0e 100644 --- a/newlib/libc/time/Makefile.in +++ b/newlib/libc/time/Makefile.in @@ -283,7 +283,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ @@ -684,7 +683,7 @@ uninstall-am: .PRECIOUS: Makefile -$(lpfx)wcsftime.$(oext): strftime.c +$(lpfx)wcsftime.o: strftime.c # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/newlib/libc/unix/Makefile.in b/newlib/libc/unix/Makefile.in index 32b3e5a..f26def9 100644 --- a/newlib/libc/unix/Makefile.in +++ b/newlib/libc/unix/Makefile.in @@ -283,7 +283,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libc/xdr/Makefile.in b/newlib/libc/xdr/Makefile.in index 1cdbd73..bd36bce 100644 --- a/newlib/libc/xdr/Makefile.in +++ b/newlib/libc/xdr/Makefile.in @@ -280,7 +280,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/Makefile.in b/newlib/libm/Makefile.in index 3755294..ef5f0ea 100644 --- a/newlib/libm/Makefile.in +++ b/newlib/libm/Makefile.in @@ -277,7 +277,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/common/Makefile.in b/newlib/libm/common/Makefile.in index 3dc906e..5fb0914 100644 --- a/newlib/libm/common/Makefile.in +++ b/newlib/libm/common/Makefile.in @@ -338,7 +338,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/complex/Makefile.in b/newlib/libm/complex/Makefile.in index d7de7a1..c83e6fd 100644 --- a/newlib/libm/complex/Makefile.in +++ b/newlib/libm/complex/Makefile.in @@ -295,7 +295,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/configure b/newlib/libm/configure index 4c72808..a0c18dc 100755 --- a/newlib/libm/configure +++ b/newlib/libm/configure @@ -602,7 +602,6 @@ shared_machine_dir machine_dir libm_machine_dir lpfx -oext ELIX_LEVEL_4_FALSE ELIX_LEVEL_4_TRUE ELIX_LEVEL_3_FALSE @@ -4281,8 +4280,7 @@ fi # Hard-code OBJEXT. Normally it is set by AC_OBJEXT, but we # use oext, which is set in configure.host based on the target platform. -OBJEXT=${oext} - +OBJEXT=o diff --git a/newlib/libm/fenv/Makefile.in b/newlib/libm/fenv/Makefile.in index 79f38d7..55f9c80 100644 --- a/newlib/libm/fenv/Makefile.in +++ b/newlib/libm/fenv/Makefile.in @@ -266,7 +266,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/machine/aarch64/Makefile.in b/newlib/libm/machine/aarch64/Makefile.in index e716ee1..d7f1cea 100644 --- a/newlib/libm/machine/aarch64/Makefile.in +++ b/newlib/libm/machine/aarch64/Makefile.in @@ -280,7 +280,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/machine/arm/Makefile.in b/newlib/libm/machine/arm/Makefile.in index 741aec6..a219346 100644 --- a/newlib/libm/machine/arm/Makefile.in +++ b/newlib/libm/machine/arm/Makefile.in @@ -275,7 +275,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/machine/i386/Makefile.in b/newlib/libm/machine/i386/Makefile.in index ebb98cb..aef0f19 100644 --- a/newlib/libm/machine/i386/Makefile.in +++ b/newlib/libm/machine/i386/Makefile.in @@ -284,7 +284,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/machine/mips/Makefile.in b/newlib/libm/machine/mips/Makefile.in index 176d519..5e76bc5 100644 --- a/newlib/libm/machine/mips/Makefile.in +++ b/newlib/libm/machine/mips/Makefile.in @@ -265,7 +265,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/machine/nds32/Makefile.in b/newlib/libm/machine/nds32/Makefile.in index ef608d5..57c5846 100644 --- a/newlib/libm/machine/nds32/Makefile.in +++ b/newlib/libm/machine/nds32/Makefile.in @@ -266,7 +266,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/machine/powerpc/Makefile.in b/newlib/libm/machine/powerpc/Makefile.in index 70a38df..f19fd86 100644 --- a/newlib/libm/machine/powerpc/Makefile.in +++ b/newlib/libm/machine/powerpc/Makefile.in @@ -265,7 +265,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/machine/pru/Makefile.in b/newlib/libm/machine/pru/Makefile.in index eb8bfcc..4add637 100644 --- a/newlib/libm/machine/pru/Makefile.in +++ b/newlib/libm/machine/pru/Makefile.in @@ -264,7 +264,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/machine/riscv/Makefile.in b/newlib/libm/machine/riscv/Makefile.in index c3de8d9..b1496df 100644 --- a/newlib/libm/machine/riscv/Makefile.in +++ b/newlib/libm/machine/riscv/Makefile.in @@ -280,7 +280,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/machine/sparc/Makefile.in b/newlib/libm/machine/sparc/Makefile.in index 354c9e5..1257720 100644 --- a/newlib/libm/machine/sparc/Makefile.in +++ b/newlib/libm/machine/sparc/Makefile.in @@ -265,7 +265,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/machine/spu/Makefile.in b/newlib/libm/machine/spu/Makefile.in index 8c38d8e..4f49bcf 100644 --- a/newlib/libm/machine/spu/Makefile.in +++ b/newlib/libm/machine/spu/Makefile.in @@ -322,7 +322,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/machine/x86_64/Makefile.in b/newlib/libm/machine/x86_64/Makefile.in index f726dd8..9a5194a 100644 --- a/newlib/libm/machine/x86_64/Makefile.in +++ b/newlib/libm/machine/x86_64/Makefile.in @@ -265,7 +265,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/math/Makefile.in b/newlib/libm/math/Makefile.in index 1ba1689..6c6ebdf 100644 --- a/newlib/libm/math/Makefile.in +++ b/newlib/libm/math/Makefile.in @@ -327,7 +327,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ diff --git a/newlib/libm/mathfp/Makefile.in b/newlib/libm/mathfp/Makefile.in index 8c77824..ef9d83c 100644 --- a/newlib/libm/mathfp/Makefile.in +++ b/newlib/libm/mathfp/Makefile.in @@ -307,7 +307,6 @@ machine_dir = @machine_dir@ mandir = @mandir@ mkdir_p = @mkdir_p@ newlib_basedir = @newlib_basedir@ -oext = @oext@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ |