aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlaf Hering <olh@suse.de>2005-01-21 19:51:36 +0000
committerH. Peter Anvin <hpa@zytor.com>2005-01-21 19:51:36 +0000
commit5c524dc5b640ee330df3ad1f1784e8e0adca01c1 (patch)
tree2db082fe8401823b56c7812f46f3f94b0a39c5f4
parent039b0a7c37a0916adffbc1a5447dc6796b309cbf (diff)
downloadklibc-5c524dc5b640ee330df3ad1f1784e8e0adca01c1.tar.gz
shared ipconfig and nfsmount depends on $(CRTSHARED)klibc-0.197
add interp.o to all target
-rw-r--r--ipconfig/Makefile2
-rw-r--r--klibc/Makefile2
-rw-r--r--nfsmount/Makefile2
3 files changed, 3 insertions, 3 deletions
diff --git a/ipconfig/Makefile b/ipconfig/Makefile
index e836ad1a62e4f..fcdf6a7560910 100644
--- a/ipconfig/Makefile
+++ b/ipconfig/Makefile
@@ -19,7 +19,7 @@ static/ipconfig: $(OBJS) $(CRT0) $(LIBS)
cp -f $@ static.g
$(STRIP) $@
-shared/ipconfig: $(OBJS) $(CRT0) $(LIBSHARED) $(LIBGCC)
+shared/ipconfig: $(OBJS) $(CRTSHARED) $(LIBSHARED) $(LIBGCC)
mkdir -p shared shared.g
$(LD) $(LDFLAGS) -o $@ $(EMAIN) $(CRTSHARED) $(OBJS) \
-R $(LIBSHARED) $(LIBGCC)
diff --git a/klibc/Makefile b/klibc/Makefile
index d01b2e43269b0..8a9a68bcf78a2 100644
--- a/klibc/Makefile
+++ b/klibc/Makefile
@@ -59,7 +59,7 @@ LIB = libc.a
INTERP_O = interp.o
-all: tests $(CRT0) $(LIB) $(SOLIB) klibc.so
+all: tests $(CRT0) $(LIB) $(SOLIB) $(SOHASH) $(INTERP_O)
# Add any architecture-specific rules
include arch/$(ARCH)/Makefile.inc
diff --git a/nfsmount/Makefile b/nfsmount/Makefile
index e681b4303e247..d7a0a8b73928a 100644
--- a/nfsmount/Makefile
+++ b/nfsmount/Makefile
@@ -17,7 +17,7 @@ static/nfsmount: $(OBJS) $(CRT0) $(LIBS)
cp -f $@ static.g
$(STRIP) $@
-shared/nfsmount: $(OBJS) $(CRT0) $(LIBSHARED) $(LIBGCC)
+shared/nfsmount: $(OBJS) $(CRTSHARED) $(LIBSHARED) $(LIBGCC)
mkdir -p shared shared.g
$(LD) $(LDFLAGS) -o $@ $(EMAIN) $(CRTSHARED) $(OBJS) \
-R $(LIBSHARED) $(LIBGCC)