From 6440d1cdad04847b35482f55289bd3eece381980 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Sun, 14 Aug 2016 19:52:11 -1000 Subject: [PATCH] Windows: Fix dependencies on PerlAsm scripts in build system. Wildcards are not allowed in this part of MSBuild files. When doing a /verbosity:d build using MSBuild here, MSBuild outputs a warning/error. --- mk/perlasm-msbuild.targets | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/mk/perlasm-msbuild.targets b/mk/perlasm-msbuild.targets index 238abb7357..ed5bce4a2a 100644 --- a/mk/perlasm-msbuild.targets +++ b/mk/perlasm-msbuild.targets @@ -27,7 +27,13 @@ Name="GenerateAsm" DependsOnTargets="CreateIntDir" BeforeTargets="ClCompile" - Inputs="%(PerlAsm.Identity);../crypto/perlasm/*.pl" + Inputs="%(PerlAsm.Identity); + ../crypto/perlasm/arm-xlate.pl; + ../crypto/perlasm/x86_64-xlate.pl; + ../crypto/perlasm/x86asm.pl; + ../crypto/perlasm/x86gas.pl; + ../crypto/perlasm/x86masm.pl; + ../crypto/perlasm/x86nasm.pl" Outputs="$(IntDir)%(PerlAsm.FileName).obj">