summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-06-18 20:05:49 +0000
committerEric Andersen <andersen@codepoet.org>2001-06-18 20:05:49 +0000
commit08e0c24b47a9abfd5536ee0cda1d0204bf7cc93c (patch)
treed7132ca3f2d25babc68ad5da777e731bee6c5abd /ldso
parent4db5f2c0a1e1a310c51bf2612a9e08dc22262b1e (diff)
This commit finishes adding support for the old m68k-coff toolchains by
working around a missing header file in the compiler shipped with the uCsimm and uCdimm. This should make the folk in Toronto happy, since now they can use the latest CVS version of uClibc. -Erik
Diffstat (limited to 'ldso')
-rw-r--r--ldso/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/ldso/Makefile b/ldso/Makefile
index aa37d2ea4..0337ab90a 100644
--- a/ldso/Makefile
+++ b/ldso/Makefile
@@ -4,15 +4,21 @@ include $(TOPDIR)Rules.mak
SUBDIRS = libdl
ALL_SUBDIRS = util libdl d-link
+
+
all:
+ifeq ($(strip $(HAVE_SHARED)),true)
@if [ -d $(TOPDIR)ldso/d-link/$(TARGET_ARCH) ] ; then \
$(MAKE) -C d-link; \
fi;
+endif
shared:
+ifeq ($(strip $(HAVE_SHARED)),true)
@if [ -d $(TOPDIR)ldso/d-link/$(TARGET_ARCH) ] ; then \
set -e ; for d in $(SUBDIRS) ; do $(MAKE) -C $$d ; done \
fi;
+endif
clean:
set -e ; for d in $(ALL_SUBDIRS) ; do $(MAKE) -C $$d $@ ; done