diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-07-05 13:20:32 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-07-05 13:21:38 +0200 |
commit | 13987e7baab1da72f4187ef90229a8ab45f58e01 (patch) | |
tree | 22091ab06506d8f967a2c5ee635fe8ea4761f783 /package/librt/Makefile | |
parent | 5ce7c00aadc63e34d8629b36b8c7cf3c9ee0c380 (diff) |
add support for uClibc-ng in parallel to uClibc.
This helps to find any regressions made in uClibc-ng.
Diffstat (limited to 'package/librt/Makefile')
-rw-r--r-- | package/librt/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/librt/Makefile b/package/librt/Makefile index 3fddc3bb9..3408ec235 100644 --- a/package/librt/Makefile +++ b/package/librt/Makefile @@ -6,6 +6,9 @@ include ${ADK_TOPDIR}/rules.mk ifeq ($(ADK_TARGET_LIB_GLIBC),y) include ${ADK_TOPDIR}/toolchain/glibc/Makefile.inc endif +ifeq ($(ADK_TARGET_LIB_UCLIBC_NG),y) +include ${ADK_TOPDIR}/toolchain/uclibc-ng/Makefile.inc +endif ifeq ($(ADK_TARGET_LIB_UCLIBC),y) include ${ADK_TOPDIR}/toolchain/uclibc/Makefile.inc endif |