diff options
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ldso/Makefile b/ldso/Makefile index 8eedd40b0..3031ef5f3 100644 --- a/ldso/Makefile +++ b/ldso/Makefile @@ -29,12 +29,18 @@ ALL_SUBDIRS = ldso libdl util all: ifeq ($(strip $(BUILD_UCLIBC_LDSO)),true) $(MAKE) -C $(LIBRARY_CACHE) ldso; +else + echo "Not building ld-uClibc" endif shared: ifeq ($(strip $(BUILD_UCLIBC_LDSO)),true) $(MAKE) -C $(LIBRARY_CACHE) libdl; +else + echo "Not building libdl" endif + +utils: $(MAKE) -C $(LIBRARY_CACHE) util; clean: |