diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-06-02 02:49:45 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-06-02 02:49:45 +0000 |
commit | 4f8c656e408ff31d081c8f1302cb7adff409ebb8 (patch) | |
tree | 747845744242a2d995941642152183ae631aff40 /Makefile | |
parent | eb8bb5738da2748fcfcd9d32b04d9d08845213fb (diff) |
Always check before you commit...^100. We need to build the dynamic linker
before we build shared libc. We need to build shared libc before libdl.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -30,7 +30,10 @@ TOPDIR=./ include Rules.mak -DIRS = extra libc libcrypt libresolv libutil libm +ifeq ($(LDSO_PRESENT), $(TARGET_ARCH)) + LDSO_DIR = ldso +endif +DIRS = extra $(LDSO_DIR) libc libcrypt libresolv libutil libm ifndef $(TARGET_PREFIX) TARGET_PREFIX = `pwd`/_install |