diff options
Diffstat (limited to 'ldso/Makefile')
-rw-r--r-- | ldso/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ldso/Makefile b/ldso/Makefile index 8608bfd0c..9fb609c6d 100644 --- a/ldso/Makefile +++ b/ldso/Makefile @@ -1,9 +1,12 @@ TOPDIR=../ include Rules.mak -SUBDIRS = util d-link libdl # man +SUBDIRS = util libdl # d-link man -all: shared +all: + @if [ -d $(TOPDIR)ldso/d-link/$(TARGET_ARCH) ] ; then \ + $(MAKE) -C d-link; \ + fi; shared: @if [ -d $(TOPDIR)ldso/d-link/$(TARGET_ARCH) ] ; then \ |