From d9060d85eb5e288b35e7903992090d548df3a4ca Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Wed, 4 Feb 2015 11:39:26 -0600 Subject: [PATCH] Make .t files depend on /makeTestfile.pl --- configure/RULES_BUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure/RULES_BUILD b/configure/RULES_BUILD index 33db58662..31267faf9 100644 --- a/configure/RULES_BUILD +++ b/configure/RULES_BUILD @@ -299,7 +299,7 @@ $(LOADABLE_SHRLIBNAME): $(LOADABLE_SHRLIB_PREFIX)%$(LOADABLE_SHRLIB_SUFFIX): @$(RM) $@ $(NM) $< > $@ -%_ctdt.c: %.nm +%_ctdt.c: %.nm $(TOOLS)/munch.pl @$(RM) $@ $(PERL) $(TOOLS)/munch.pl -o $@ $< @@ -334,7 +334,7 @@ tapfiles: $(TESTSCRIPTS) $(TAPFILES) # Test programs (.t files) must be written in Perl. # Generate a perl program to exec the real test binary. -%.t: %$(EXE) +%.t: %$(EXE) $(TOOLS)/makeTestfile.pl @$(RM) $@ $(PERL) $(TOOLS)/makeTestfile.pl $@ $<