diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-08-28 19:52:13 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-08-28 19:52:13 +0000 |
commit | 1a6a55a0b79f8141ee135aca0ee62e42ed07b9b3 (patch) | |
tree | 334805ad11efd196dd379400901e4568859bc2a4 | |
parent | 1a6aa6e16d8b3dc00b6ae0b0bae62149a8ae15e2 (diff) |
(inclusion of .d files based on OBJS): Only deal with .o files in
$(OBJS).
-rw-r--r-- | Makeconf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |