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>2002-05-01 22:44:13 +0400
committerThomas Fitzsimmons <fitzsim@redhat.com>2002-05-01 22:44:13 +0400
commit098414456c04a696e63e10cc4a798b134eab5355 (patch)
treed0239a9ca9bfa2f5432defd244b95fb575ababe6 /newlib/libc/Makefile.in
parent6e9d950a9126f8eaef47394a82cde0a09b952bbc (diff)
* libc/Makefile.am (SUBLIBS): Add LIBC_EXTRA_LIB.
(SUBDEFS): Add LIBC_EXTRA_DEF. * libc/configure.in (LIBC_EXTRA_LIB): New variable. (LIBC_EXTRA_DEF): Likewise. (extra_dir): Likewise. * libc/machine/xscale/machine: New directory. * libc/machine/xscale/machine/profile.h: New file. * Makefile.am (site.exp): Remove newlib_cflags. Add multibuildtop. * testsuite/newlib.locale/UTF-8.c: Change fprintf's to printf's. * testsuite/lib/flags.exp: New file. * testsuite/lib/newlib.exp: Load flags.exp. (newlib_target_compile): Remove libgloss directory references. (newlib_init): Remove newlib_cflags references.
Diffstat (limited to 'newlib/libc/Makefile.in')
-rw-r--r--newlib/libc/Makefile.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/newlib/libc/Makefile.in b/newlib/libc/Makefile.in
index 5d685de73..e42c7572b 100644
--- a/newlib/libc/Makefile.in
+++ b/newlib/libc/Makefile.in
@@ -71,6 +71,8 @@ CRT0 = @CRT0@
DLLTOOL = @DLLTOOL@
EXEEXT = @EXEEXT@
LDFLAGS = @LDFLAGS@
+LIBC_EXTRA_DEF = @LIBC_EXTRA_DEF@
+LIBC_EXTRA_LIB = @LIBC_EXTRA_LIB@
LIBC_MACHINE_LIB = @LIBC_MACHINE_LIB@
LIBC_POSIX_LIB = @LIBC_POSIX_LIB@
LIBC_SIGNAL_DEF = @LIBC_SIGNAL_DEF@
@@ -88,6 +90,7 @@ PACKAGE = @PACKAGE@
RANLIB = @RANLIB@
VERSION = @VERSION@
aext = @aext@
+extra_dir = @extra_dir@
libm_machine_dir = @libm_machine_dir@
machine_dir = @machine_dir@
newlib_basedir = @newlib_basedir@
@@ -107,7 +110,7 @@ AUTOMAKE_OPTIONS = cygnus
# The order of SUBDIRS is important for the integrated documentation.
# Do not change the order without considering the doc impact.
SUBDIRS = stdlib ctype stdio string $(SIGNAL_SUBDIR) time locale sys reent \
- errno misc machine $(UNIX_SUBDIR) $(POSIX_SUBDIR) $(SYSCALLS_SUBDIR) .
+ $(extra_dir) errno misc machine $(UNIX_SUBDIR) $(POSIX_SUBDIR) $(SYSCALLS_SUBDIR) .
noinst_DATA = $(CRT0)
@@ -123,6 +126,7 @@ noinst_DATA = $(CRT0)
@USE_LIBTOOL_TRUE@ locale/liblocale.$(aext) \
@USE_LIBTOOL_TRUE@ $(LIBC_SYS_LIB) \
@USE_LIBTOOL_TRUE@ reent/libreent.$(aext) \
+@USE_LIBTOOL_TRUE@ $(LIBC_EXTRA_LIB) \
@USE_LIBTOOL_TRUE@ errno/liberrno.$(aext) \
@USE_LIBTOOL_TRUE@ misc/libmisc.$(aext) \
@USE_LIBTOOL_TRUE@ $(LIBC_MACHINE_LIB) \
@@ -139,6 +143,7 @@ noinst_DATA = $(CRT0)
@USE_LIBTOOL_FALSE@ locale/lib.$(aext) \
@USE_LIBTOOL_FALSE@ $(LIBC_SYS_LIB) \
@USE_LIBTOOL_FALSE@ reent/lib.$(aext) \
+@USE_LIBTOOL_FALSE@ $(LIBC_EXTRA_LIB) \
@USE_LIBTOOL_FALSE@ errno/lib.$(aext) \
@USE_LIBTOOL_FALSE@ misc/lib.$(aext) \
@USE_LIBTOOL_FALSE@ $(LIBC_MACHINE_LIB) \
@@ -167,6 +172,7 @@ SUBDEFS = \
time/stmp-def \
locale/stmp-def \
reent/stmp-def \
+ $(LIBC_EXTRA_DEF) \
misc/stmp-def
@@ -216,7 +222,7 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = gtar
GZIP_ENV = --best
DIST_SUBDIRS = stdlib ctype stdio string signal time locale sys reent \
-errno misc machine unix posix syscalls .
+@extra_dir@ errno misc machine unix posix syscalls .
SOURCES = libc.a.c $(libc_la_SOURCES)
OBJECTS = libc.a.o $(libc_la_OBJECTS)