Missing extension on dependency, .d file is not always made (e.g. when input

is a .s).

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Ben Laurie 2016-02-20 12:50:30 +00:00
parent f27f64e17a
commit 58f2b0ae58

View file

@ -844,7 +844,8 @@ EOF
}
return <<"EOF";
$obj\$(DEP_EXT): $deps
\$(CC) \$(CFLAGS) $ecflags$incs -MM -MF \$\@ -MQ $obj $srcs
\$(CC) \$(CFLAGS) $ecflags$incs -MM -MF \$\@ -MQ $obj\$(OBJ_EXT) $srcs
touch \$\@
$obj\$(OBJ_EXT): $obj\$(DEP_EXT)
\$(CC) \$(CFLAGS) $ecflags$incs -c -o \$\@ $srcs
EOF