Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Fitzsimmons <fitzsim@redhat.com>2001-12-14 02:50:11 +0300
committerThomas Fitzsimmons <fitzsim@redhat.com>2001-12-14 02:50:11 +0300
commit2e1a71756e754ada402efe9f5e2d6378dc11e496 (patch)
tree7df86f70bc78f4f8b0bcef05c1a4d677d8fc400f /newlib/Makefile.am
parentb92591a1fc53f2d5c42faaf438f697006bf63a82 (diff)
* Makefile.shared: New file.
* libc/sys/linux/shared.ld: New file. * libm/machine/*: New files. * libm/machine/i386/*: New files. * Makefile.am: Add libtool support. Change math and mathfp references to variables. * configure.host: Add variables for libtool support. Add libm_machine_dir variable. * configure.in: Add objectlist variables, for libtool support. Add CC_FOR_BUILD tests. * libc/Makefile.am: Add libtool support. Change crt0.o reference to be a variable reference. * libc/configure.in: Add libtool support. Change sublib names to be lib${subdir}.la when using libtool. * libc/ctype/Makefile.am: Add libtool support. * libc/errno/Makefile.am: Likewise. * libc/locale/Makefile.am: Likewise. * libc/machine/Makefile.am: Likewise. * libc/machine/configure.in: Likewise. * libc/machine/i386/Makefile.am: Likewise. * libc/machine/i386/configure.in: Likewise. * libc/misc/Makefile.am: Likewise. * libc/posix/Makefile.am: Likewise. * libc/reent/Makefile.am: Likewise. * libc/signal/Makefile.am: Likewise. * libc/stdio/Makefile.am: Likewise. * libc/stdlib/Makefile.am: Likewise. * libc/string/Makefile.am: Likewise. * libc/sys/Makefile.am: Likewise. * libc/sys/configure.in: Likewise. * libc/sys/linux/Makefile.am: Add libtool support. Change awk reference to a variable reference. Change signal.h reference to a variable reference. * libc/sys/linux/configure.in: Add libtool support. * libc/syscalls/Makefile.am: Likewise. * libc/time/Makefile.am: Likewise. * libc/unix/Makefile.am: Likewise. * libm/Makefile.am: Add libtool support. Change math and mathfp references to variables. * libm/configure.in: Add libtool support. Add LIBM_MACHINE_LIB variable. * libm/common/Makefile.am: Add libtool support. * libm/math/Makefile.am: Likewise. * libm/mathfp/Makefile.am: Likewise. Regenerate all Makefile.in, aclocal.m4, and configure.
Diffstat (limited to 'newlib/Makefile.am')
-rw-r--r--newlib/Makefile.am81
1 files changed, 74 insertions, 7 deletions
diff --git a/newlib/Makefile.am b/newlib/Makefile.am
index b00d9265b..a759e2c63 100644
--- a/newlib/Makefile.am
+++ b/newlib/Makefile.am
@@ -10,6 +10,14 @@ MULTISUBDIR =
MULTIDO = true
MULTICLEAN = true
+LIBTOOL_VERSION_INFO = 0:0:0
+
+if NEWLIB_HW_FP
+MATHDIR = mathfp
+else
+MATHDIR = math
+endif
+
# 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.
@@ -58,20 +66,74 @@ toollibdir = $(tooldir)/lib$(MULTISUBDIR)
AR_FLAGS = rc
+if USE_LIBTOOL
+toollib_LTLIBRARIES = libm.la libc.la
+else
toollib_LIBRARIES = libm.a libc.a
-toollib_DATA = $(CRT0)
+endif
+
noinst_DATA = stmp-targ-include
+toollib_DATA = $(CRT0)
+
+
# 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 = \
- s_isinf.o sf_isinf.o \
- s_isnan.o sf_isnan.o \
- s_ldexp.o sf_ldexp.o \
- s_frexp.o sf_frexp.o s_modf.o sf_modf.o \
- s_scalbn.o sf_scalbn.o s_finite.o sf_finite.o \
- s_copysign.o sf_copysign.o s_infconst.o
+ s_isinf.$(oext) sf_isinf.$(oext) \
+ s_isnan.$(oext) sf_isnan.$(oext) \
+ s_ldexp.$(oext) sf_ldexp.$(oext) \
+ s_frexp.$(oext) sf_frexp.$(oext) \
+ s_modf.$(oext) \
+ sf_modf.$(oext) s_scalbn.$(oext) \
+ sf_scalbn.$(oext) \
+ s_finite.$(oext) sf_finite.$(oext) \
+ s_copysign.$(oext) sf_copysign.$(oext) \
+ s_infconst.$(oext)
+
+LIBC_OBJECTLISTS = \
+ $(POSIX_OBJECTLIST) \
+ $(SIGNAL_OBJECTLIST) \
+ $(SYSCALL_OBJECTLIST) \
+ $(UNIX_OBJECTLIST) \
+ libc/stdlib/objectlist.awk.in \
+ libc/time/objectlist.awk.in \
+ libc/ctype/objectlist.awk.in \
+ 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) \
+ $(SYS_OBJECTLIST)
+
+LIBM_OBJECTLISTS = \
+ libm/$(MATHDIR)/objectlist.awk.in \
+ libm/common/objectlist.awk.in \
+ $(LIBM_MACHINE_OBJECTLIST)
+
+libm_la_LDFLAGS = -version-info $(LIBTOOL_VERSION_INFO) -release newlib -no-undefined -Xcompiler -nostdlib -Xlinker --version-script=$(srcdir)/libc/sys/linux/shared.ld `cat libm-libtool-objectlist`
+
+libc_la_LDFLAGS = -version-info $(LIBTOOL_VERSION_INFO) -release newlib -no-undefined -Xcompiler -nostdlib -Xlinker --version-script=$(srcdir)/libc/sys/linux/shared.ld `cat libc-libtool-objectlist`
+
+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
libc.a: libc/libc.a libm.a
rm -rf libc.a libg.a tmp
@@ -92,6 +154,8 @@ libm.a: libm/libm.a
libm/libm.a: ; @true
+endif # USE_LIBTOOL
+
crt0.o: $(CRT0_DIR)/$(CRT0)
rm -f $@
ln $(CRT0_DIR)/$(CRT0) $@ >/dev/null 2>/dev/null \
@@ -127,8 +191,11 @@ stmp-targ-include: config.status
CLEANFILES = targ-include stmp-targ-include
install-data-local: install-toollibLIBRARIES
+if USE_LIBTOOL
+else
rm -f $(DESTDIR)$(toollibdir)/libg.a
ln $(DESTDIR)$(toollibdir)/libc.a $(DESTDIR)$(toollibdir)/libg.a >/dev/null 2>/dev/null || cp $(DESTDIR)$(toollibdir)/libc.a $(DESTDIR)$(toollibdir)/libg.a
+endif
$(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do
-if [ -z "$(MULTISUBDIR)" ]; then \
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include; \