summaryrefslogtreecommitdiff
path: root/Makeconf
diff options
context:
space:
mode:
Diffstat (limited to 'Makeconf')
-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