summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-07-06 20:25:11 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-07-06 20:25:11 +0000
commitbbc6e571af8190e741376cd386bec180b29dcd37 (patch)
treeacf82e8b046b893f95c44ef49c6231e323c55868
parentdcf3729d4851bda21d40e58c8e44e8eae12479da (diff)
($(target) [doinst == one]): Don't explicitly depend on libc. Too
hairy for now.
-rw-r--r--Makeconf12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makeconf b/Makeconf
index 8bd23143..b031cb27 100644
--- a/Makeconf
+++ b/Makeconf
@@ -162,7 +162,7 @@ endif
# Building the target
ifeq ($(doinst),one)
-$(target): $(OBJS) $(HURDLIBS-files) $(OTHERLIBS) $(libc)
+$(target): $(OBJS) $(HURDLIBS-files) $(OTHERLIBS)
$(CC) $(CFLAGS) $(LDFLAGS) -o $(target) '-Wl,-(' \
$(OBJS) $(HURDLIBS-libs) $(OTHERLIBS) $(libc) '-Wl,-)'
endif
@@ -272,13 +272,13 @@ FORCE:
# For each file generated by MiG we need a .d file.
# These lines assume that every Makefile that uses a foo_S.h or foo_U.h file
# also mentions the associated fooServer.o or fooUser.o file.
-include $(subst Server.o,.migs_d,$(filter %Server.o,$(OBJS)))
-include $(subst User.o,.migu_d,$(filter %User.o,$(OBJS)))
-include $(subst Server.o,.migsh_d,$(filter %Server.o,$(OBJS)))
-include $(subst User.o,.miguh_d,$(filter %User.o,$(OBJS)))
+include $(subst Server.o,.migs_d,$(filter %Server.o,$(OBJS))) /dev/null
+include $(subst User.o,.migu_d,$(filter %User.o,$(OBJS))) /dev/null
+include $(subst Server.o,.migsh_d,$(filter %Server.o,$(OBJS))) /dev/null
+include $(subst User.o,.miguh_d,$(filter %User.o,$(OBJS))) /dev/null
# For each .o file we need a .d file.
-include $(subst .o,.d,$(OBJS))
+include $(subst .o,.d,$(OBJS)) /dev/null
# Here is how to build those dependency files