From b274169fdedea07a534c08b85bf235a9ca624be1 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Tue, 22 Feb 2000 16:17:30 +0000 Subject: [PATCH] Added _SRCS to depends rule dependancies. --- configure/tools/makeMakefileInclude.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure/tools/makeMakefileInclude.pl b/configure/tools/makeMakefileInclude.pl index b2faf7c80..9d7cd85fd 100755 --- a/configure/tools/makeMakefileInclude.pl +++ b/configure/tools/makeMakefileInclude.pl @@ -54,6 +54,8 @@ foreach $name ( @nameList ) { print OUT "endif\n"; print OUT "${name}_OBJS+=\$(addsuffix \$(OBJ),\$(basename \$(${name}_SRCS)))\n"; print OUT "\n"; + print OUT "depends: \$(${name}_SRCS)\n"; + print OUT "\n"; print OUT "ifeq (\$(filter ${name},\$(PROD)),${name})\n"; print OUT "ifeq (,\$(strip \$(${name}_OBJS) \$(PROD_OBJS)))\n"; print OUT "${name}_OBJS+=${name}\$(OBJ)\n";