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:
authorMike Frysinger <vapier@gentoo.org>2021-12-31 04:53:04 +0300
committerMike Frysinger <vapier@gentoo.org>2022-01-28 03:14:57 +0300
commitdcbff9eea71d06454e7d55d6b7e72672c0987d6d (patch)
treeb70da12529996a30e499e346ba9ec7539b187f51 /newlib/Makefile.am
parent996a85ba4c26789284339a4eaaa73dd532e613f2 (diff)
newlib: merge iconvdata into top-level Makefile
Avoid a recursive make with this tiny subdir to speed things up a bit.
Diffstat (limited to 'newlib/Makefile.am')
-rw-r--r--newlib/Makefile.am7
1 files changed, 5 insertions, 2 deletions
diff --git a/newlib/Makefile.am b/newlib/Makefile.am
index 6edc9abc2..718002535 100644
--- a/newlib/Makefile.am
+++ b/newlib/Makefile.am
@@ -6,6 +6,7 @@ ACLOCAL_AMFLAGS = -I . -I .. -I ../config
# Variables that will accumulate in subdirs.
PHONY =
noinst_DATA =
+pkglib_LTLIBRARIES =
LIBTOOL_VERSION_INFO = 0:0:0
@@ -59,8 +60,7 @@ AM_MAKEFLAGS = \
FLAGS_TO_PASS=$(AM_MAKEFLAGS)
-SUBDIRS = libc libm \
- . $(EXTRA_DIRS)
+SUBDIRS = libc libm .
tooldir = $(exec_prefix)/$(host_alias)
toollibdir = $(tooldir)/lib$(MULTISUBDIR)
@@ -513,5 +513,8 @@ clean-local:
if HAVE_DOC
include doc/local.mk
endif
+if HAVE_ICONVDATA
+include iconvdata/Makefile.inc
+endif
.PHONY: $(PHONY)