Windows build: build foo.d after foo.obj
authorRichard Levitte <levitte@openssl.org>
Wed, 31 Oct 2018 08:02:00 +0000 (09:02 +0100)
committerRichard Levitte <levitte@openssl.org>
Tue, 13 Nov 2018 15:05:52 +0000 (16:05 +0100)
commit5f16ab333142de832555d3265aad243eb119b195
tree0d236827a3326fb223d6501541f7810064efa36a
parent6ab937f2df403bdda7e25b6c62a93b061171250e
Windows build: build foo.d after foo.obj

We made the build of foo.obj depend on foo.d, meaning the latter gets
built first.  Unfortunately, the way the compiler works, we are forced
to redirect all output to foo.d, meaning that if the source contains
an error, the build fails without showing those errors.

We therefore remove the dependency and force the build of foo.d to
always happen after build of foo.obj.

Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7533)
Configurations/windows-makefile.tmpl