diff options
author | Thomas Fitzsimmons <fitzsim@redhat.com> | 2002-05-01 18:44:13 +0000 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@redhat.com> | 2002-05-01 18:44:13 +0000 |
commit | 098414456c04a696e63e10cc4a798b134eab5355 (patch) | |
tree | d0239a9ca9bfa2f5432defd244b95fb575ababe6 /newlib/libc/Makefile.am | |
parent | 6e9d950a9126f8eaef47394a82cde0a09b952bbc (diff) | |
download | cygnal-098414456c04a696e63e10cc4a798b134eab5355.tar.gz cygnal-098414456c04a696e63e10cc4a798b134eab5355.tar.bz2 cygnal-098414456c04a696e63e10cc4a798b134eab5355.zip |
* 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.am')
-rw-r--r-- | newlib/libc/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/newlib/libc/Makefile.am b/newlib/libc/Makefile.am index 0937818c7..fb8fbb563 100644 --- a/newlib/libc/Makefile.am +++ b/newlib/libc/Makefile.am @@ -21,7 +21,7 @@ endif # 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) @@ -37,6 +37,7 @@ SUBLIBS = \ locale/liblocale.$(aext) \ $(LIBC_SYS_LIB) \ reent/libreent.$(aext) \ + $(LIBC_EXTRA_LIB) \ errno/liberrno.$(aext) \ misc/libmisc.$(aext) \ $(LIBC_MACHINE_LIB) \ @@ -55,6 +56,7 @@ SUBLIBS = \ locale/lib.$(aext) \ $(LIBC_SYS_LIB) \ reent/lib.$(aext) \ + $(LIBC_EXTRA_LIB) \ errno/lib.$(aext) \ misc/lib.$(aext) \ $(LIBC_MACHINE_LIB) \ @@ -105,6 +107,7 @@ SUBDEFS = \ time/stmp-def \ locale/stmp-def \ reent/stmp-def \ + $(LIBC_EXTRA_DEF) \ misc/stmp-def libc.info: sigset.texi targetdep.tex $(SUBDEFS) |