From 08e0c24b47a9abfd5536ee0cda1d0204bf7cc93c Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 18 Jun 2001 20:05:49 +0000 Subject: 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 --- ldso/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ldso/Makefile') 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 -- cgit v1.2.3