2000-02-18 03:39:52 +08:00
|
|
|
## Process this file with automake to generate Makefile.in
|
|
|
|
|
newlib: Remove automake option 'cygnus'
The 'cygnus' option was removed from automake 1.13 in 2012, so the
presence of this option prevents that or a later version of automake
being used.
A check-list of the effects of '--cygnus' from the automake 1.12
documentation, and steps taken (where possible) to preserve those
effects (See also this thread [1] for discussion on that):
[1] https://lists.gnu.org/archive/html/bug-automake/2012-03/msg00048.html
1. The foreign strictness is implied.
Already present in AM_INIT_AUTOMAKE in newlib/acinclude.m4
2. The options no-installinfo, no-dependencies and no-dist are implied.
Already present in AM_INIT_AUTOMAKE in newlib/acinclude.m4
Future work: Remove no-dependencies and any explicit header dependencies,
and use automatic dependency tracking instead. Are there explicit rules
which are now redundant to removing no-installinfo and no-dist?
3. The macro AM_MAINTAINER_MODE is required.
Already present in newlib/acinclude.m4
Note that maintainer-mode is still disabled by default.
4. Info files are always created in the build directory, and not in the
source directory.
This appears to be an error in the automake documentation describing
'--cygnus' [2]. newlib's info files are generated in the source
directory, and no special steps are needed to keep doing that.
[2] https://lists.gnu.org/archive/html/bug-automake/2012-04/msg00028.html
5. texinfo.tex is not required if a Texinfo source file is specified.
(The assumption is that the file will be supplied, but in a place that
automake cannot find.)
This effect is overriden by an explicit setting of the TEXINFO_TEX
variable (the directory part of which is fed into texi2X via the
TEXINPUTS environment variable).
6. Certain tools will be searched for in the build tree as well as in the
user's PATH. These tools are runtest, expect, makeinfo and texi2dvi.
For obscure automake reasons, this effect of '--cygnus' is not active
for makeinfo in newlib's configury.
However, there appears to be top-level configury which selects in-tree
runtest, expect and makeinfo, if present. So, if that works as it
appears, this effect is preserved. If not, this may cause problem if
anyone is building those tools in-tree.
This effect is not preserved for texi2dvi. This may cause problems if
anyone is building texinfo in-tree.
If needed, explicit checks for those tools looking in places relative to
$(top_srcdir)/../ as well as in PATH could be added.
7. The check target doesn't depend on all.
This effect is not preseved. The check target now depends on the all
target.
This concern seems somewhat academic given the current state of the
testsuite.
Also note that this doesn't touch libgloss.
2021-07-22 23:23:31 +08:00
|
|
|
AUTOMAKE_OPTIONS = dejagnu subdir-objects
|
2007-05-25 01:33:42 +08:00
|
|
|
ACLOCAL_AMFLAGS = -I . -I ..
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2021-11-11 10:04:31 +08:00
|
|
|
# Variables that will accumulate in subdirs.
|
|
|
|
PHONY =
|
|
|
|
noinst_DATA =
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
# Multilib support variables.
|
|
|
|
MULTISRCTOP =
|
|
|
|
MULTIBUILDTOP =
|
|
|
|
MULTIDIRS =
|
|
|
|
MULTISUBDIR =
|
|
|
|
MULTIDO = true
|
|
|
|
MULTICLEAN = true
|
|
|
|
|
2001-12-14 07:50:11 +08:00
|
|
|
LIBTOOL_VERSION_INFO = 0:0:0
|
|
|
|
|
2012-10-25 05:01:39 +08:00
|
|
|
# The newlib hardware floating-point routines have been disabled due to
|
|
|
|
# inaccuracy. If you wish to work on them, you will need to edit the
|
|
|
|
# configure.in file to re-enable the configuration option. By default,
|
|
|
|
# the NEWLIB_HW_FP variable will always be false.
|
2001-12-14 07:50:11 +08:00
|
|
|
if NEWLIB_HW_FP
|
|
|
|
MATHDIR = mathfp
|
|
|
|
else
|
|
|
|
MATHDIR = math
|
|
|
|
endif
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
# Work around what appears to be a GNU make bug handling MAKEFLAGS
|
|
|
|
# values defined in terms of make variables, as is the case for CC and
|
|
|
|
# friends when we are called from the top level Makefile.
|
|
|
|
AM_MAKEFLAGS = \
|
|
|
|
"AR_FLAGS=$(AR_FLAGS)" \
|
|
|
|
"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
|
|
|
|
"CFLAGS=$(CFLAGS)" \
|
2006-06-06 01:42:57 +08:00
|
|
|
"CCASFLAGS=$(CCASFLAGS)" \
|
2000-02-18 03:39:52 +08:00
|
|
|
"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
|
|
|
|
"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
|
2006-01-12 07:50:33 +08:00
|
|
|
"INSTALL=$(INSTALL)" \
|
2000-02-18 03:39:52 +08:00
|
|
|
"LDFLAGS=$(LDFLAGS)" \
|
|
|
|
"LIBCFLAGS=$(LIBCFLAGS)" \
|
|
|
|
"LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
|
|
|
|
"MAKE=$(MAKE)" \
|
|
|
|
"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
|
|
|
|
"PICFLAG=$(PICFLAG)" \
|
|
|
|
"PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
|
|
|
|
"SHELL=$(SHELL)" \
|
|
|
|
"EXPECT=$(EXPECT)" \
|
|
|
|
"RUNTEST=$(RUNTEST)" \
|
|
|
|
"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
|
|
|
|
"exec_prefix=$(exec_prefix)" \
|
|
|
|
"infodir=$(infodir)" \
|
|
|
|
"libdir=$(libdir)" \
|
|
|
|
"prefix=$(prefix)" \
|
|
|
|
"tooldir=$(tooldir)" \
|
2002-05-23 02:25:12 +08:00
|
|
|
"top_toollibdir=$(toollibdir)" \
|
2000-02-18 03:39:52 +08:00
|
|
|
"AR=$(AR)" \
|
|
|
|
"AS=$(AS)" \
|
2002-04-27 04:18:52 +08:00
|
|
|
"CC=$(CC_FOR_NEWLIB)" \
|
2000-02-18 03:39:52 +08:00
|
|
|
"LD=$(LD)" \
|
|
|
|
"LIBCFLAGS=$(LIBCFLAGS)" \
|
|
|
|
"NM=$(NM)" \
|
|
|
|
"PICFLAG=$(PICFLAG)" \
|
|
|
|
"RANLIB=$(RANLIB)" \
|
|
|
|
"DESTDIR=$(DESTDIR)"
|
|
|
|
|
2000-12-09 05:31:08 +08:00
|
|
|
FLAGS_TO_PASS=$(AM_MAKEFLAGS)
|
|
|
|
|
2002-04-04 06:46:21 +08:00
|
|
|
SUBDIRS = libc libm \
|
2021-11-11 10:04:31 +08:00
|
|
|
. $(EXTRA_DIRS)
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
tooldir = $(exec_prefix)/$(host_alias)
|
|
|
|
toollibdir = $(tooldir)/lib$(MULTISUBDIR)
|
|
|
|
|
|
|
|
AR_FLAGS = rc
|
|
|
|
|
2021-11-11 10:04:31 +08:00
|
|
|
noinst_DATA += stmp-targ-include
|
2016-12-23 03:50:00 +08:00
|
|
|
|
2001-12-14 07:50:11 +08:00
|
|
|
if USE_LIBTOOL
|
2002-04-04 06:46:21 +08:00
|
|
|
toollib_LTLIBRARIES = libm.la \
|
|
|
|
libc.la
|
2001-12-14 07:50:11 +08:00
|
|
|
else
|
2002-04-04 06:46:21 +08:00
|
|
|
toollib_LIBRARIES = libm.a \
|
|
|
|
libc.a
|
2016-12-23 03:50:00 +08:00
|
|
|
if HAVE_MULTISUBDIR
|
|
|
|
BUILD_MULTISUBDIR = $(builddir)$(MULTISUBDIR)
|
|
|
|
if HAVE_CRT0
|
|
|
|
noinst_DATA += $(BUILD_MULTISUBDIR)/$(CRT0)
|
|
|
|
endif
|
|
|
|
noinst_DATA += $(BUILD_MULTISUBDIR)/libc.a $(BUILD_MULTISUBDIR)/libm.a
|
|
|
|
endif
|
2001-12-14 07:50:11 +08:00
|
|
|
endif
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2002-04-05 06:41:11 +08:00
|
|
|
toollib_DATA = $(CRT0) $(CRT1)
|
2001-12-14 07:50:11 +08:00
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
# The functions ldexp, frexp and modf are traditionally supplied in
|
|
|
|
# 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 = \
|
2009-06-24 00:04:33 +08:00
|
|
|
$(lpfx)s_fpclassify.$(oext) $(lpfx)sf_fpclassify.$(oext) \
|
2006-04-12 03:02:16 +08:00
|
|
|
$(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) \
|
2021-11-29 20:56:46 +08:00
|
|
|
$(lpfx)s_frexp.$(oext) $(lpfx)sf_frexp.$(oext) $(lpfx)frexpl.$(oext) \
|
2006-04-12 03:02:16 +08:00
|
|
|
$(lpfx)s_modf.$(oext) \
|
|
|
|
$(lpfx)sf_modf.$(oext) $(lpfx)s_scalbn.$(oext) \
|
|
|
|
$(lpfx)sf_scalbn.$(oext) \
|
|
|
|
$(lpfx)s_finite.$(oext) $(lpfx)sf_finite.$(oext) \
|
2017-04-18 18:17:26 +08:00
|
|
|
$(lpfx)s_copysign.$(oext) $(lpfx)sf_copysign.$(oext)
|
2001-12-14 07:50:11 +08:00
|
|
|
|
|
|
|
LIBC_OBJECTLISTS = \
|
|
|
|
$(POSIX_OBJECTLIST) \
|
|
|
|
$(SIGNAL_OBJECTLIST) \
|
|
|
|
$(SYSCALL_OBJECTLIST) \
|
|
|
|
$(UNIX_OBJECTLIST) \
|
2002-08-27 02:56:09 +08:00
|
|
|
$(STDIO64_OBJECTLIST) \
|
2002-06-15 04:51:09 +08:00
|
|
|
libc/argz/objectlist.awk.in \
|
2001-12-14 07:50:11 +08:00
|
|
|
libc/stdlib/objectlist.awk.in \
|
|
|
|
libc/time/objectlist.awk.in \
|
|
|
|
libc/ctype/objectlist.awk.in \
|
2002-06-21 03:51:40 +08:00
|
|
|
libc/search/objectlist.awk.in \
|
2001-12-14 07:50:11 +08:00
|
|
|
libc/string/objectlist.awk.in \
|
|
|
|
libc/locale/objectlist.awk.in \
|
|
|
|
libc/misc/objectlist.awk.in \
|
|
|
|
libc/reent/objectlist.awk.in \
|
|
|
|
libc/errno/objectlist.awk.in \
|
|
|
|
libc/stdio/objectlist.awk.in \
|
|
|
|
$(MACHINE_OBJECTLIST) \
|
2002-04-04 06:46:21 +08:00
|
|
|
$(SYS_OBJECTLIST) \
|
|
|
|
$(SYS_MACH_OBJECTLIST)
|
2001-12-14 07:50:11 +08:00
|
|
|
|
|
|
|
LIBM_OBJECTLISTS = \
|
|
|
|
libm/$(MATHDIR)/objectlist.awk.in \
|
|
|
|
libm/common/objectlist.awk.in \
|
|
|
|
$(LIBM_MACHINE_OBJECTLIST)
|
|
|
|
|
2004-12-04 07:46:28 +08:00
|
|
|
libm_la_LDFLAGS = -version-info $(LIBTOOL_VERSION_INFO) -release newlib -no-undefined -Xcompiler -nostdlib -Xlinker --version-script=$(srcdir)/libc/sys/linux/shared.ld -lgcc -objectlist libm-libtool-objectlist
|
2001-12-14 07:50:11 +08:00
|
|
|
|
2004-12-04 07:46:28 +08:00
|
|
|
libc_la_LDFLAGS = -version-info $(LIBTOOL_VERSION_INFO) -release newlib -no-undefined -Xcompiler -nostdlib -Xlinker --version-script=$(srcdir)/libc/sys/linux/shared.ld -lgcc -objectlist libc-libtool-objectlist
|
2001-12-14 07:50:11 +08:00
|
|
|
|
|
|
|
if USE_LIBTOOL
|
|
|
|
libm_la_SOURCES =
|
|
|
|
libm_la_DEPENDENCIES = libm-libtool-objectlist
|
|
|
|
|
|
|
|
# objects listed later in LIBM_OBJECTLISTS will override those listed earlier
|
|
|
|
libm-libtool-objectlist: $(LIBM_OBJECTLISTS)
|
|
|
|
cat $(LIBM_OBJECTLISTS) | $(AWK) '{ libm[$$1] = $$2 }; END { for (x in libm) printf ("%s\n", libm[x]) }' > $@
|
|
|
|
|
|
|
|
libc_la_SOURCES =
|
|
|
|
libc_la_DEPENDENCIES = libc-libtool-objectlist
|
|
|
|
|
|
|
|
# objects listed later in LIBM_OBJECTLISTS and LIBC_OBJECTLISTS will override those listed earlier
|
|
|
|
libc-libtool-objectlist: $(LIBM_OBJECTLISTS) $(LIBC_OBJECTLISTS)
|
|
|
|
cat $(LIBM_OBJECTLISTS) $(LIBC_OBJECTLISTS) | $(AWK) '{ libc[$$1] = $$2 }; END { for (x in libc) printf ("%s\n", libc[x]) }' > $@
|
|
|
|
|
|
|
|
else
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
libc.a: libc/libc.a libm.a
|
|
|
|
rm -rf libc.a libg.a tmp
|
|
|
|
mkdir tmp
|
|
|
|
cd tmp; \
|
|
|
|
$(AR) x ../libm.a $(MATHOBJS_IN_LIBC) ; \
|
|
|
|
$(AR) x ../libc/libc.a ; \
|
|
|
|
$(AR) $(AR_FLAGS) ../$@ *.o
|
|
|
|
$(RANLIB) libc.a
|
2001-08-30 03:55:20 +08:00
|
|
|
ln libc.a libg.a >/dev/null 2>/dev/null || cp libc.a libg.a
|
2000-02-18 03:39:52 +08:00
|
|
|
rm -rf tmp
|
|
|
|
|
|
|
|
libc/libc.a: ; @true
|
|
|
|
|
|
|
|
libm.a: libm/libm.a
|
|
|
|
rm -f $@
|
2016-12-23 03:50:00 +08:00
|
|
|
ln $< $@ >/dev/null 2>/dev/null || cp $< $@
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
libm/libm.a: ; @true
|
|
|
|
|
2001-12-14 07:50:11 +08:00
|
|
|
endif # USE_LIBTOOL
|
|
|
|
|
2016-12-23 03:50:00 +08:00
|
|
|
if HAVE_MULTISUBDIR
|
|
|
|
$(BUILD_MULTISUBDIR):
|
|
|
|
$(MKDIR_P) $@
|
|
|
|
|
|
|
|
$(BUILD_MULTISUBDIR)/crt0.o: $(CRT0_DIR)$(CRT0) $(BUILD_MULTISUBDIR)
|
|
|
|
rm -f $@
|
|
|
|
ln $< $@ >/dev/null 2>/dev/null || cp $< $@
|
|
|
|
|
|
|
|
$(BUILD_MULTISUBDIR)/libc.a: libc.a $(BUILD_MULTISUBDIR)
|
|
|
|
rm -f $@ $(BUILD_MULTISUBDIR)/libg.a
|
|
|
|
ln $< $@ >/dev/null 2>/dev/null || cp $< $@
|
|
|
|
ln libg.a $(BUILD_MULTISUBDIR)/libg.a >/dev/null 2>/dev/null || \
|
|
|
|
cp libg.a $(BUILD_MULTISUBDIR)/libg.a
|
|
|
|
|
|
|
|
$(BUILD_MULTISUBDIR)/libm.a: libm.a $(BUILD_MULTISUBDIR)
|
|
|
|
rm -f $@
|
|
|
|
ln $< $@ >/dev/null 2>/dev/null || cp $< $@
|
|
|
|
endif
|
|
|
|
|
2002-04-18 03:13:11 +08:00
|
|
|
crt0.o: $(CRT0_DIR)$(CRT0)
|
2000-02-18 03:39:52 +08:00
|
|
|
rm -f $@
|
2016-12-23 03:50:00 +08:00
|
|
|
ln $< $@ >/dev/null 2>/dev/null || cp $< $@
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2002-04-18 03:13:11 +08:00
|
|
|
$(CRT0_DIR)$(CRT0): ; @true
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2002-04-18 03:13:11 +08:00
|
|
|
crt1.o: $(CRT1_DIR)$(CRT1)
|
2002-04-05 06:41:11 +08:00
|
|
|
rm -f $@
|
2016-12-23 03:50:00 +08:00
|
|
|
ln $< $@ >/dev/null 2>/dev/null || cp $< $@
|
2002-04-05 06:41:11 +08:00
|
|
|
|
2002-04-18 03:13:11 +08:00
|
|
|
$(CRT1_DIR)$(CRT1): ; @true
|
2002-04-05 06:41:11 +08:00
|
|
|
|
Define the newlib version macros in one place: _newlib_version.h.
Currently, the newlib version information needs to be updated in two places:
- newlib/acinclude.m4
- newlib/libc/include/sys/features.h
The goal of this patch is to:
- supply a single location for defining the newlib version
information: newlib/acinclude.m4
- define __NEWLIB__, __NEWLIB_MINOR__ and __NEWLIB_PATCHLEVEL__
This is in line with what gcc does for its version macros. See:
https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html
This patch moves the definition of the _NEWLIB_VERSION, __NEWLIB__
and __NEWLIB_MINOR__ macros from newlib/libc/include/sys/features.h,
to the newly generated newlib/_newlib_version.h file. Additionally,
the __NEWLIB_PATCHLEVEL__ macro was created, for completeness.
In order to stay backwards compatible, newlib/_newlib_version.h gets
included by newlib/newlib.h and newlib/libc/include/sys/features.h.
Note: This patch does _not_ include the modifications to the following
files, as these should all be generated any way.
*Makefile.in,
*aclocal.m4,
*configure
stamp-* files
Signed-off-by: Pieter du Preez <pdupreez@gmail.com>
2016-02-14 18:12:06 +08:00
|
|
|
targ-include:
|
|
|
|
mkdir $@
|
|
|
|
|
|
|
|
targ-include/newlib.h: targ-include/_newlib_version.h
|
|
|
|
|
|
|
|
targ-include/sys targ-include/machine targ-include/bits: targ-include/_newlib_version.h targ-include/newlib.h
|
|
|
|
mkdir $@
|
|
|
|
|
|
|
|
targ-include/newlib.h: newlib.h targ-include
|
|
|
|
cp newlib.h $@
|
|
|
|
|
|
|
|
targ-include/_newlib_version.h: _newlib_version.h targ-include
|
|
|
|
cp _newlib_version.h $@
|
2002-04-05 06:41:11 +08:00
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
all-recursive: stmp-targ-include
|
|
|
|
|
|
|
|
# The targ-include directory just holds the includes files for the
|
|
|
|
# particular system and machine we have been configured for. It is
|
|
|
|
# used while building.
|
|
|
|
stmp-targ-include: config.status
|
|
|
|
-rm -rf targ-include stmp-targ-include
|
Define the newlib version macros in one place: _newlib_version.h.
Currently, the newlib version information needs to be updated in two places:
- newlib/acinclude.m4
- newlib/libc/include/sys/features.h
The goal of this patch is to:
- supply a single location for defining the newlib version
information: newlib/acinclude.m4
- define __NEWLIB__, __NEWLIB_MINOR__ and __NEWLIB_PATCHLEVEL__
This is in line with what gcc does for its version macros. See:
https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html
This patch moves the definition of the _NEWLIB_VERSION, __NEWLIB__
and __NEWLIB_MINOR__ macros from newlib/libc/include/sys/features.h,
to the newly generated newlib/_newlib_version.h file. Additionally,
the __NEWLIB_PATCHLEVEL__ macro was created, for completeness.
In order to stay backwards compatible, newlib/_newlib_version.h gets
included by newlib/newlib.h and newlib/libc/include/sys/features.h.
Note: This patch does _not_ include the modifications to the following
files, as these should all be generated any way.
*Makefile.in,
*aclocal.m4,
*configure
stamp-* files
Signed-off-by: Pieter du Preez <pdupreez@gmail.com>
2016-02-14 18:12:06 +08:00
|
|
|
$(MAKE) targ-include/sys \
|
|
|
|
targ-include/machine \
|
2016-02-26 04:04:19 +08:00
|
|
|
targ-include/bits
|
2021-03-24 17:32:50 +08:00
|
|
|
-if [ -n "$(shared_machine_dir)" ]; then \
|
|
|
|
for i in $(srcdir)/libc/machine/$(shared_machine_dir)/machine/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/machine/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done; \
|
|
|
|
for i in $(srcdir)/libc/machine/$(shared_machine_dir)/sys/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/sys/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done; \
|
|
|
|
for i in $(srcdir)/libc/machine/$(shared_machine_dir)/include/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done; \
|
|
|
|
fi
|
2000-02-18 03:39:52 +08:00
|
|
|
-for i in $(srcdir)/libc/machine/$(machine_dir)/machine/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/machine/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done
|
2004-10-06 03:34:25 +08:00
|
|
|
-for i in $(srcdir)/libc/machine/$(machine_dir)/sys/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/sys/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done
|
2005-01-28 03:13:54 +08:00
|
|
|
-for i in $(srcdir)/libc/machine/$(machine_dir)/include/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done
|
2000-02-18 03:39:52 +08:00
|
|
|
-for i in $(srcdir)/libc/sys/$(sys_dir)/include/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done
|
2010-12-15 06:35:27 +08:00
|
|
|
-for i in $(srcdir)/libc/sys/$(sys_dir)/include/*; do \
|
|
|
|
if [ -d $$i ]; then \
|
|
|
|
for j in $$i/*.h; do \
|
2010-12-17 05:59:17 +08:00
|
|
|
if [ ! -d targ-include/`basename $$i` ]; then \
|
|
|
|
mkdir targ-include/`basename $$i`; \
|
|
|
|
fi; \
|
2010-12-15 06:35:27 +08:00
|
|
|
cp $$j targ-include/`basename $$i`/`basename $$j`; \
|
|
|
|
done \
|
|
|
|
else true; fi ; \
|
|
|
|
done
|
2000-02-18 03:39:52 +08:00
|
|
|
-for i in $(srcdir)/libc/sys/$(sys_dir)/sys/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/sys/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done
|
2005-07-05 08:11:50 +08:00
|
|
|
-for i in $(srcdir)/libc/sys/$(sys_dir)/bits/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/bits/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done
|
2002-11-08 03:27:36 +08:00
|
|
|
-for i in $(srcdir)/libc/sys/$(sys_dir)/machine/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/machine/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done
|
2002-04-04 06:46:21 +08:00
|
|
|
-for i in $(srcdir)/libc/sys/$(sys_dir)/machine/$(machine_dir)/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/machine/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done
|
2002-05-17 Jeff Johnston <jjohnstn@redhat.com>
* Makefile.am: Copy and install headers from sys/machine/include
directory. Also pass $toollibdir to lower-level directories.
* Makefile.in: Regenerated.
* libc/include/stdio.h[!_REENT_ONLY]: Change stdin, stdout, and
stderr to use _REENT macro instead of _impure_ptr directly.
* libc/include/sys/config.h[__i386__][__linux__]: Define
__DYNAMIC_REENT__.
* libc/include/sys/reent.h[!_REENT_ONLY]: Change _REENT macro to be
call to __getreent() function if !__SINGLE_THREAD__ and
__DYNAMIC_REENT__ is set.
* libc/reent/Makefile.am: Add support for getreent.c.
* libc/reent/Makefile.in: Regenerated.
* libc/string/strerror.c: Add check if EOPNOTSUPP and ENOTSUP are same.
* libc/sys/linux/Makefile.am: Add support for new files.
* libc/sys/linux/configure.in: Add $EXTRA_DIRS variable.
* libc/sys/linux/Makefile.in: Regenerated.
* libc/sys/linux/configure: Ditto.
* libc/sys/linux/io.c: Add poll syscall. Also weak-alias
__close, __read, __write, __poll, __open, __lseek, __fcntl from
their __libc_ counterparts.
* libc/sys/linux/io64.c: Add __libc_ prefix to lseek64 and open64
and weak-alias to regular names.
* libc/sys/linux/pread64.c: Rename to __libc_pread64 and weak-alias
to pread64 and __pread64.
* libc/sys/linux/process.c: Weak_alias __libc_getpid to __getpid.
* libc/sys/linux/pwrite64.c: Rename to __libc_pwrite64 and
weak-alias to pwrite64.
* libc/sys/linux/sched.c: Weak-alias __libc_sched_getparam,
__libc_sched_getscheduler, __libc_sched_get_priority_max,
__libc_sched_get_priority_min, and __libc_sched_setschedule to
name with __ instead of __libc_.
* libc/sys/linux/siglongjmp.c: Include <machine/weakalias.h>.
Rename siglongjmp to __libc_siglongjmp and weak-alias to siglongjmp.
Call __libc_longjmp instead of longjmp, from __libc_siglongjmp.
* libc/sys/linux/signal.c: Rename raise to __libc_raise and weak-alias
to raise.
* libc/sys/linux/socket.c: Weak-alias __libc_connect to __connect and
__libc_send to __send.
* libc/sys/linux/time.c: Weak-alias __libc_gettimeofday to
__gettimeofday.
* libc/sys/linux/wait.c: Rename wait to __libc_wait and weak-alias
it to wait. Rename wait3 to __libc_wait3 and weak-alias it to wait3.
* libc/sys/linux/include/setjmp.h: Use __jmp_buf in sigjmp_buf
type and typedef __jmp_buf to jmp_buf.
* libc/sys/linux/machine/i386/Makefile.am: Add syscalls.c and
setjmp.S.
* libc/sys/linux/machine/i386/Makefile.in: Regenerated.
* libc/sys/linux/machine/i386/crt0.c: Add support to clear .bss
section.
* libc/sys/linux/machine/i386/socketcall.h: Change to use __libc_
prefix for function macros and then use weak_alias() to regular names.
* libc/sys/linux/machine/i386/syscall.h: Ditto.
* libc/sys/linux/sys/errno.h: Define EOPNOTSUP to be ENOTSUP.
* libc/sys/linux/sys/stdio.h: Define _flockfile and _funlockfile
to be flockfile() and funlockfile() respectively.
* libc/sys/linux/sys/types.h
* libc/reent/getreent.c: New file.
* libc/sys/linux/flockfile.c: Ditto.
* libc/sys/linux/funlockfile.c: Ditto.
* libc/sys/linux/getreent.c: Ditto.
* libc/sys/linux/pread.c: Ditto.
* libc/sys/linux/pwrite.c: Ditto.
* libc/sys/linux/raise.c: Ditto.
* libc/sys/linux/system.c: Ditto.
* libc/sys/linux/tcdrain.c: Ditto.
* libc/sys/linux/machine/i386/i386mach.h: Ditto.
* libc/sys/linux/machine/i386/setjmp.S: Ditto.
* libc/sys/linux/machine/i386/syscalls.c: Ditto.
* libc/sys/linux/machine/i386/weakalias.h: Ditto.
* libc/sys/linux/machine/i386/include/setjmp.h: Ditto.
2002-05-18 07:39:39 +08:00
|
|
|
-for i in $(srcdir)/libc/sys/$(sys_dir)/machine/$(machine_dir)/include/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
cp $$i targ-include/machine/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done
|
2016-02-26 04:04:19 +08:00
|
|
|
$(MAKE) targ-include/newlib.h
|
2000-02-18 03:39:52 +08:00
|
|
|
touch $@
|
|
|
|
|
2011-01-06 06:48:56 +08:00
|
|
|
CLEANFILES = stmp-targ-include
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2000-09-07 04:46:27 +08:00
|
|
|
install-data-local: install-toollibLIBRARIES
|
2001-12-14 07:50:11 +08:00
|
|
|
if USE_LIBTOOL
|
|
|
|
else
|
2000-09-07 04:46:27 +08:00
|
|
|
rm -f $(DESTDIR)$(toollibdir)/libg.a
|
2001-08-30 03:55:20 +08:00
|
|
|
ln $(DESTDIR)$(toollibdir)/libc.a $(DESTDIR)$(toollibdir)/libg.a >/dev/null 2>/dev/null || cp $(DESTDIR)$(toollibdir)/libc.a $(DESTDIR)$(toollibdir)/libg.a
|
2001-12-14 07:50:11 +08:00
|
|
|
endif
|
2003-10-16 01:33:32 +08:00
|
|
|
$(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
|
2000-02-18 03:39:52 +08:00
|
|
|
-if [ -z "$(MULTISUBDIR)" ]; then \
|
2000-12-14 03:32:45 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include; \
|
2000-02-18 03:39:52 +08:00
|
|
|
for i in $(srcdir)/libc/include/*.h; do \
|
2000-09-07 04:46:27 +08:00
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/`basename $$i`; \
|
2000-02-18 03:39:52 +08:00
|
|
|
done; \
|
2002-08-29 08:22:10 +08:00
|
|
|
$(INSTALL_DATA) newlib.h $(DESTDIR)$(tooldir)/include/newlib.h; \
|
Define the newlib version macros in one place: _newlib_version.h.
Currently, the newlib version information needs to be updated in two places:
- newlib/acinclude.m4
- newlib/libc/include/sys/features.h
The goal of this patch is to:
- supply a single location for defining the newlib version
information: newlib/acinclude.m4
- define __NEWLIB__, __NEWLIB_MINOR__ and __NEWLIB_PATCHLEVEL__
This is in line with what gcc does for its version macros. See:
https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html
This patch moves the definition of the _NEWLIB_VERSION, __NEWLIB__
and __NEWLIB_MINOR__ macros from newlib/libc/include/sys/features.h,
to the newly generated newlib/_newlib_version.h file. Additionally,
the __NEWLIB_PATCHLEVEL__ macro was created, for completeness.
In order to stay backwards compatible, newlib/_newlib_version.h gets
included by newlib/newlib.h and newlib/libc/include/sys/features.h.
Note: This patch does _not_ include the modifications to the following
files, as these should all be generated any way.
*Makefile.in,
*aclocal.m4,
*configure
stamp-* files
Signed-off-by: Pieter du Preez <pdupreez@gmail.com>
2016-02-14 18:12:06 +08:00
|
|
|
$(INSTALL_DATA) _newlib_version.h $(DESTDIR)$(tooldir)/include/_newlib_version.h; \
|
2000-12-14 03:32:45 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include/machine; \
|
2000-02-18 03:39:52 +08:00
|
|
|
for i in $(srcdir)/libc/include/machine/*.h; do \
|
2000-09-07 04:46:27 +08:00
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/machine/`basename $$i`; \
|
2000-02-18 03:39:52 +08:00
|
|
|
done; \
|
2021-03-24 17:32:50 +08:00
|
|
|
if [ -n "$(shared_machine_dir)" ]; then \
|
|
|
|
for i in $(srcdir)/libc/machine/$(shared_machine_dir)/machine/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/machine/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done; \
|
|
|
|
fi ; \
|
2000-02-18 03:39:52 +08:00
|
|
|
for i in $(srcdir)/libc/machine/$(machine_dir)/machine/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
2000-09-07 04:46:27 +08:00
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/machine/`basename $$i`; \
|
2000-02-18 03:39:52 +08:00
|
|
|
else true; fi ; \
|
|
|
|
done; \
|
2010-03-02 20:05:18 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include/rpc; \
|
|
|
|
for i in $(srcdir)/libc/include/rpc/*.h; do \
|
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/rpc/`basename $$i`; \
|
|
|
|
done; \
|
2017-11-28 13:54:09 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include/ssp; \
|
|
|
|
for i in $(srcdir)/libc/include/ssp/*.h; do \
|
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/ssp/`basename $$i`; \
|
|
|
|
done; \
|
2000-12-14 03:32:45 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include/sys; \
|
2000-02-18 03:39:52 +08:00
|
|
|
for i in $(srcdir)/libc/include/sys/*.h; do \
|
2000-09-07 04:46:27 +08:00
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/sys/`basename $$i`; \
|
2000-02-18 03:39:52 +08:00
|
|
|
done; \
|
2021-03-24 17:32:50 +08:00
|
|
|
if [ -n "$(shared_machine_dir)" ]; then \
|
|
|
|
for i in $(srcdir)/libc/machine/$(shared_machine_dir)/sys/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/sys/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done ; \
|
|
|
|
for i in $(srcdir)/libc/machine/$(shared_machine_dir)/include/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done ; \
|
|
|
|
fi ; \
|
2004-10-06 03:34:25 +08:00
|
|
|
for i in $(srcdir)/libc/machine/$(machine_dir)/sys/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/sys/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done ; \
|
2005-01-28 03:13:54 +08:00
|
|
|
for i in $(srcdir)/libc/machine/$(machine_dir)/include/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done ; \
|
2000-02-18 03:39:52 +08:00
|
|
|
for i in $(srcdir)/libc/sys/$(sys_dir)/sys/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
2000-09-07 04:46:27 +08:00
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/sys/`basename $$i`; \
|
2000-02-18 03:39:52 +08:00
|
|
|
else true; fi ; \
|
|
|
|
done ; \
|
2005-09-09 06:45:53 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include/bits; \
|
2005-07-05 08:11:50 +08:00
|
|
|
for i in $(srcdir)/libc/sys/$(sys_dir)/bits/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/bits/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done ; \
|
2002-11-08 03:27:36 +08:00
|
|
|
for i in $(srcdir)/libc/sys/$(sys_dir)/machine/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/machine/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done ; \
|
2000-02-18 03:39:52 +08:00
|
|
|
for i in $(srcdir)/libc/sys/$(sys_dir)/include/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
2000-09-07 04:46:27 +08:00
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/`basename $$i`; \
|
2000-02-18 03:39:52 +08:00
|
|
|
else true; fi ; \
|
|
|
|
done ; \
|
2010-12-15 06:35:27 +08:00
|
|
|
for i in $(srcdir)/libc/sys/$(sys_dir)/include/*; do \
|
|
|
|
if [ -d $$i ]; then \
|
|
|
|
for j in $$i/*.h; do \
|
|
|
|
$(INSTALL_DATA) $$j $(DESTDIR)$(tooldir)/include/`basename $$i`/`basename $$j`; \
|
|
|
|
done ; \
|
|
|
|
else true; fi ; \
|
|
|
|
done ; \
|
2002-05-17 Jeff Johnston <jjohnstn@redhat.com>
* Makefile.am: Copy and install headers from sys/machine/include
directory. Also pass $toollibdir to lower-level directories.
* Makefile.in: Regenerated.
* libc/include/stdio.h[!_REENT_ONLY]: Change stdin, stdout, and
stderr to use _REENT macro instead of _impure_ptr directly.
* libc/include/sys/config.h[__i386__][__linux__]: Define
__DYNAMIC_REENT__.
* libc/include/sys/reent.h[!_REENT_ONLY]: Change _REENT macro to be
call to __getreent() function if !__SINGLE_THREAD__ and
__DYNAMIC_REENT__ is set.
* libc/reent/Makefile.am: Add support for getreent.c.
* libc/reent/Makefile.in: Regenerated.
* libc/string/strerror.c: Add check if EOPNOTSUPP and ENOTSUP are same.
* libc/sys/linux/Makefile.am: Add support for new files.
* libc/sys/linux/configure.in: Add $EXTRA_DIRS variable.
* libc/sys/linux/Makefile.in: Regenerated.
* libc/sys/linux/configure: Ditto.
* libc/sys/linux/io.c: Add poll syscall. Also weak-alias
__close, __read, __write, __poll, __open, __lseek, __fcntl from
their __libc_ counterparts.
* libc/sys/linux/io64.c: Add __libc_ prefix to lseek64 and open64
and weak-alias to regular names.
* libc/sys/linux/pread64.c: Rename to __libc_pread64 and weak-alias
to pread64 and __pread64.
* libc/sys/linux/process.c: Weak_alias __libc_getpid to __getpid.
* libc/sys/linux/pwrite64.c: Rename to __libc_pwrite64 and
weak-alias to pwrite64.
* libc/sys/linux/sched.c: Weak-alias __libc_sched_getparam,
__libc_sched_getscheduler, __libc_sched_get_priority_max,
__libc_sched_get_priority_min, and __libc_sched_setschedule to
name with __ instead of __libc_.
* libc/sys/linux/siglongjmp.c: Include <machine/weakalias.h>.
Rename siglongjmp to __libc_siglongjmp and weak-alias to siglongjmp.
Call __libc_longjmp instead of longjmp, from __libc_siglongjmp.
* libc/sys/linux/signal.c: Rename raise to __libc_raise and weak-alias
to raise.
* libc/sys/linux/socket.c: Weak-alias __libc_connect to __connect and
__libc_send to __send.
* libc/sys/linux/time.c: Weak-alias __libc_gettimeofday to
__gettimeofday.
* libc/sys/linux/wait.c: Rename wait to __libc_wait and weak-alias
it to wait. Rename wait3 to __libc_wait3 and weak-alias it to wait3.
* libc/sys/linux/include/setjmp.h: Use __jmp_buf in sigjmp_buf
type and typedef __jmp_buf to jmp_buf.
* libc/sys/linux/machine/i386/Makefile.am: Add syscalls.c and
setjmp.S.
* libc/sys/linux/machine/i386/Makefile.in: Regenerated.
* libc/sys/linux/machine/i386/crt0.c: Add support to clear .bss
section.
* libc/sys/linux/machine/i386/socketcall.h: Change to use __libc_
prefix for function macros and then use weak_alias() to regular names.
* libc/sys/linux/machine/i386/syscall.h: Ditto.
* libc/sys/linux/sys/errno.h: Define EOPNOTSUP to be ENOTSUP.
* libc/sys/linux/sys/stdio.h: Define _flockfile and _funlockfile
to be flockfile() and funlockfile() respectively.
* libc/sys/linux/sys/types.h
* libc/reent/getreent.c: New file.
* libc/sys/linux/flockfile.c: Ditto.
* libc/sys/linux/funlockfile.c: Ditto.
* libc/sys/linux/getreent.c: Ditto.
* libc/sys/linux/pread.c: Ditto.
* libc/sys/linux/pwrite.c: Ditto.
* libc/sys/linux/raise.c: Ditto.
* libc/sys/linux/system.c: Ditto.
* libc/sys/linux/tcdrain.c: Ditto.
* libc/sys/linux/machine/i386/i386mach.h: Ditto.
* libc/sys/linux/machine/i386/setjmp.S: Ditto.
* libc/sys/linux/machine/i386/syscalls.c: Ditto.
* libc/sys/linux/machine/i386/weakalias.h: Ditto.
* libc/sys/linux/machine/i386/include/setjmp.h: Ditto.
2002-05-18 07:39:39 +08:00
|
|
|
for i in $(srcdir)/libc/sys/$(sys_dir)/machine/$(machine_dir)/include/*.h; do \
|
|
|
|
if [ -f $$i ]; then \
|
|
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/machine/`basename $$i`; \
|
|
|
|
else true; fi ; \
|
|
|
|
done ; \
|
2011-01-13 06:24:06 +08:00
|
|
|
for i in $(NO_INCLUDE_LIST); do \
|
2011-05-19 14:04:59 +08:00
|
|
|
if [ -f $(DESTDIR)$(tooldir)/include/$$i ]; then \
|
|
|
|
rm $(DESTDIR)$(tooldir)/include/$$i; \
|
2011-01-13 06:24:06 +08:00
|
|
|
else true; fi ; \
|
|
|
|
done ; \
|
2000-02-18 03:39:52 +08:00
|
|
|
else true; fi
|
|
|
|
|
2018-03-08 07:08:29 +08:00
|
|
|
# Generate Unicode data tables for libc/string/wcwidth and libc/ctype/??w*
|
|
|
|
unidata:
|
|
|
|
cd $(srcdir)/libc/string; ./mkunidata -u
|
|
|
|
cd $(srcdir)/libc/ctype; ./mkunidata -u
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
# Force makedoc to be built before building info files.
|
2021-11-11 10:04:31 +08:00
|
|
|
info-recursive dvi-recursive: doc/makedoc$(EXEEXT_FOR_BUILD)
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2016-06-25 04:50:15 +08:00
|
|
|
# Recursive targets for man and install-man
|
|
|
|
man:
|
2021-11-16 20:41:30 +08:00
|
|
|
$(MAKE) man-cache || exit 1; \
|
2016-06-25 04:50:15 +08:00
|
|
|
for d in $(SUBDIRS); do \
|
|
|
|
if test "$$d" != "."; then \
|
|
|
|
(cd $$d && $(MAKE) man) || exit 1; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
|
|
|
|
install-man:
|
|
|
|
for d in $(SUBDIRS); do \
|
|
|
|
if test "$$d" != "."; then \
|
|
|
|
(cd $$d && $(MAKE) install-man) || exit 1; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
|
|
|
|
|
|
|
# Multilib support.
|
2021-11-11 10:04:31 +08:00
|
|
|
PHONY += all-multi check-multi mostlyclean-multi clean-multi distclean-multi \
|
2000-02-18 03:39:52 +08:00
|
|
|
maintainer-clean-multi
|
|
|
|
|
|
|
|
all-recursive: all-multi
|
2002-05-02 04:26:05 +08:00
|
|
|
check-recursive: check-multi
|
2000-02-18 03:39:52 +08:00
|
|
|
mostlyclean-recursive: mostlyclean-multi
|
|
|
|
clean-recursive: clean-multi
|
|
|
|
distclean-recursive: distclean-multi
|
|
|
|
maintainer-clean-recursive: maintainer-clean-multi
|
|
|
|
|
2003-10-16 01:33:32 +08:00
|
|
|
# The $(MAKE) comments below are to enable parallel building.
|
2000-02-18 03:39:52 +08:00
|
|
|
all-multi:
|
2003-10-16 01:33:32 +08:00
|
|
|
$(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
|
2002-05-02 04:26:05 +08:00
|
|
|
check-multi:
|
2003-10-16 01:33:32 +08:00
|
|
|
$(MULTIDO) $(AM_MAKEFLAGS) DO=check multi-do # $(MAKE)
|
2000-02-18 03:39:52 +08:00
|
|
|
mostlyclean-multi:
|
2003-10-16 01:33:32 +08:00
|
|
|
$(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
|
2000-02-18 03:39:52 +08:00
|
|
|
clean-multi:
|
2003-10-16 01:33:32 +08:00
|
|
|
$(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
|
2000-02-18 03:39:52 +08:00
|
|
|
distclean-multi:
|
2003-10-16 01:33:32 +08:00
|
|
|
$(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
|
2000-02-18 03:39:52 +08:00
|
|
|
maintainer-clean-multi:
|
2003-10-16 01:33:32 +08:00
|
|
|
$(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean # $(MAKE)
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
MAKEOVERRIDES=
|
2002-04-25 04:53:30 +08:00
|
|
|
|
|
|
|
# dejagnu support
|
|
|
|
|
|
|
|
RUNTESTFLAGS=
|
|
|
|
|
|
|
|
site.exp: Makefile
|
|
|
|
@echo 'Making a new site.exp file...'
|
|
|
|
@test ! -f site.bak || rm -f site.bak
|
|
|
|
@echo '## these variables are automatically generated by make ##' > $@-t
|
|
|
|
@echo '# Do not edit here. If you wish to override these values' >> $@-t
|
|
|
|
@echo '# edit the last section' >> $@-t
|
|
|
|
@echo 'set tool $(DEJATOOL)' >> $@-t
|
|
|
|
@echo 'set tool_version $(VERSION)' >> $@-t
|
|
|
|
@echo 'set srcdir $(srcdir)/testsuite' >> $@-t
|
|
|
|
@echo 'set objdir' `pwd` >> $@-t
|
2005-07-05 08:11:50 +08:00
|
|
|
@echo 'set tmpdir' `pwd`/testsuite >> $@-t
|
2002-05-02 01:05:44 +08:00
|
|
|
@echo 'set multibuildtop ./$(MULTIBUILDTOP)' >> $@-t
|
2002-05-01 06:38:07 +08:00
|
|
|
@echo 'set host_alias $(build_alias)' >> $@-t
|
|
|
|
@echo 'set host_triplet $(build_triplet)' >> $@-t
|
2002-04-25 04:53:30 +08:00
|
|
|
@echo 'set target_alias $(host_alias)' >> $@-t
|
|
|
|
@echo 'set target_triplet $(host_triplet)' >> $@-t
|
|
|
|
@echo '## All variables above are generated by configure. Do Not Edit ##' >> $@-t
|
|
|
|
@test ! -f site.exp || sed '1,/^## All variables above are.*##/ d' site.exp >> $@-t
|
|
|
|
@test ! -f site.exp || mv site.exp site.bak
|
|
|
|
@mv $@-t site.exp
|
|
|
|
|
|
|
|
check-DEJAGNU: site.exp
|
|
|
|
@if [ -d testsuite ] ; then \
|
|
|
|
true ; \
|
|
|
|
else \
|
|
|
|
mkdir testsuite ; \
|
|
|
|
fi
|
|
|
|
@rm -f testsuite/site.exp
|
|
|
|
@cp site.exp testsuite/site.exp
|
|
|
|
@rootme=`pwd` ; \
|
|
|
|
export rootme ; \
|
|
|
|
srcdir=`cd ${srcdir}; pwd` ; \
|
|
|
|
export srcdir ; \
|
|
|
|
EXPECT=`if [ -f $${rootme}/${MULTIBUILDTOP}../../expect/expect ] ; then \
|
|
|
|
echo $${rootme}/${MULTIBUILDTOP}../../expect/expect ; \
|
|
|
|
else \
|
|
|
|
echo expect ; \
|
|
|
|
fi` ; \
|
|
|
|
export EXPECT ; \
|
|
|
|
echo "Found expect: $${EXPECT}" ; \
|
|
|
|
if [ -f $(top_builddir)/$(MULTIBUILDTOP)../../expect/expect ] ; then \
|
|
|
|
TCL_LIBRARY=`cd $(top_srcdir)/../tcl/library && pwd` ; \
|
|
|
|
export TCL_LIBRARY ; \
|
|
|
|
echo "Found TCL library directory: $${TCL_LIBRARY}" ; \
|
|
|
|
fi ; \
|
|
|
|
RUNTEST=`if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
|
|
|
|
echo $${srcdir}/../dejagnu/runtest ; \
|
|
|
|
else \
|
|
|
|
echo runtest ; \
|
|
|
|
fi` ; \
|
|
|
|
export RUNTEST ; \
|
|
|
|
echo "Found runtest: $${RUNTEST}" ; \
|
|
|
|
cd testsuite ; \
|
|
|
|
if $(SHELL) -c "$$RUNTEST --version" > /dev/null 2>&1 ; then \
|
2002-05-02 04:26:05 +08:00
|
|
|
$$RUNTEST --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite $(RUNTESTFLAGS) ; \
|
|
|
|
: ; \
|
2002-04-25 04:53:30 +08:00
|
|
|
else \
|
|
|
|
echo "WARNING: could not find \`runtest'" 1>&2 ; \
|
|
|
|
fi
|
2011-01-06 06:48:56 +08:00
|
|
|
|
|
|
|
clean-local:
|
Define the newlib version macros in one place: _newlib_version.h.
Currently, the newlib version information needs to be updated in two places:
- newlib/acinclude.m4
- newlib/libc/include/sys/features.h
The goal of this patch is to:
- supply a single location for defining the newlib version
information: newlib/acinclude.m4
- define __NEWLIB__, __NEWLIB_MINOR__ and __NEWLIB_PATCHLEVEL__
This is in line with what gcc does for its version macros. See:
https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html
This patch moves the definition of the _NEWLIB_VERSION, __NEWLIB__
and __NEWLIB_MINOR__ macros from newlib/libc/include/sys/features.h,
to the newly generated newlib/_newlib_version.h file. Additionally,
the __NEWLIB_PATCHLEVEL__ macro was created, for completeness.
In order to stay backwards compatible, newlib/_newlib_version.h gets
included by newlib/newlib.h and newlib/libc/include/sys/features.h.
Note: This patch does _not_ include the modifications to the following
files, as these should all be generated any way.
*Makefile.in,
*aclocal.m4,
*configure
stamp-* files
Signed-off-by: Pieter du Preez <pdupreez@gmail.com>
2016-02-14 18:12:06 +08:00
|
|
|
-rm -rf targ-include newlib.h _newlib_version.h stamp-*
|
2021-11-11 10:04:31 +08:00
|
|
|
|
|
|
|
if HAVE_DOC
|
|
|
|
include doc/local.mk
|
|
|
|
endif
|
|
|
|
|
|
|
|
.PHONY: $(PHONY)
|