summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-05-17 05:30:43 +0000
committerEric Andersen <andersen@codepoet.org>2001-05-17 05:30:43 +0000
commit58903a0726aa2e7e2b8141772233752bffb6f0ec (patch)
tree1ba498f446866dfc20258e5c82493ac08e6d188c /Makefile
parent595edd2276244fbbec6f08c99085a949c72a4ebe (diff)
Patch from David McCullough <davidm@lineo.com> -- do not
try to build ldso when we don't support shared libraries...
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b1d70a836..6a02cfb84 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,10 @@
TOPDIR=./
include Rules.mak
-DIRS = extra ldso libc libcrypt libutil libm
+ifeq ($(DO_SHARED),shared)
+ LDSO_DIR = ldso
+endif
+DIRS = extra $(LDSO_DIR) libc libcrypt libutil libm
all: headers uClibc_config.h subdirs $(DO_SHARED) done