Commit 58f2b0ae authored by Ben Laurie's avatar Ben Laurie
Browse files

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


is a .s).

Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
parent f27f64e1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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