OSDN Git Service

Kill cruft. Build ldd for the host system by default.
authorEric Andersen <andersen@codepoet.org>
Thu, 25 Jul 2002 09:19:17 +0000 (09:19 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 25 Jul 2002 09:19:17 +0000 (09:19 -0000)
 -Erik

ldso/Makefile

index 3031ef5..c1c9071 100644 (file)
@@ -28,20 +28,20 @@ ALL_SUBDIRS = ldso libdl util
 
 all:
 ifeq ($(strip $(BUILD_UCLIBC_LDSO)),true)
-       $(MAKE) -C $(LIBRARY_CACHE) ldso;
+       $(MAKE) -C ldso;
 else
        echo "Not building ld-uClibc"
 endif
 
-shared:
+shared: utils
 ifeq ($(strip $(BUILD_UCLIBC_LDSO)),true)
-       $(MAKE) -C $(LIBRARY_CACHE) libdl;
+       $(MAKE) -C libdl;
 else
        echo "Not building libdl"
 endif
 
 utils:
-       $(MAKE) -C $(LIBRARY_CACHE) util;
+       $(MAKE) -C util;
 
 clean:
        set -e ; for d in $(ALL_SUBDIRS) ; do $(MAKE) -C $$d $@ ; done