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/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/Makefile')
-rw-r--r-- | package/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/Makefile b/package/Makefile index 5b7b471c0..bfe4a0bd7 100644 --- a/package/Makefile +++ b/package/Makefile @@ -21,6 +21,12 @@ package-$(ADK_PACKAGE_UCLIBCXX) += uclibc++ gcc-compile: uclibc-compile endif +ifeq (${ADK_TARGET_LIB_UCLIBC_NG},y) +package-$(ADK_PACKAGE_UCLIBC_NG) += uclibc-ng +package-$(ADK_PACKAGE_UCLIBCXX) += uclibc++ +gcc-compile: uclibc-ng-compile +endif + package-$(ADK_PACKAGE_LIBPTHREAD) += libpthread include $(ADK_TOPDIR)/package/Depends.mk |