diff options
Diffstat (limited to 'ldso/Makefile')
-rw-r--r-- | ldso/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ldso/Makefile b/ldso/Makefile index 9fb609c6d..f26489eee 100644 --- a/ldso/Makefile +++ b/ldso/Makefile @@ -1,7 +1,8 @@ TOPDIR=../ -include Rules.mak +include $(TOPDIR)Rules.mak -SUBDIRS = util libdl # d-link man +SUBDIRS = util libdl +ALL_SUBDIRS = util libdl d-link all: @if [ -d $(TOPDIR)ldso/d-link/$(TARGET_ARCH) ] ; then \ @@ -14,5 +15,5 @@ shared: fi; clean: - set -e ; for d in $(SUBDIRS) ; do $(MAKE) -C $$d $@ ; done + set -e ; for d in $(ALL_SUBDIRS) ; do $(MAKE) -C $$d $@ ; done -find . -name '*~' | xargs rm -f |