summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-08-28 19:52:13 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-08-28 19:52:13 +0000
commit1a6a55a0b79f8141ee135aca0ee62e42ed07b9b3 (patch)
tree334805ad11efd196dd379400901e4568859bc2a4
parent1a6aa6e16d8b3dc00b6ae0b0bae62149a8ae15e2 (diff)
(inclusion of .d files based on OBJS): Only deal with .o files in
$(OBJS).
-rw-r--r--Makeconf2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makeconf b/Makeconf
index 18f66d23..d63a4009 100644
--- a/Makeconf
+++ b/Makeconf
@@ -256,7 +256,7 @@ 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 $(OBJS:.o=.d) /dev/null
+include $(subst .o,.d,$(filter %.o $(OBJS))) /dev/null
endif