Makefile et al template: only modify static library with new object files

Previously, we updated the static libraries (libcrypto.a on Unix,
libcrypto.lib on Windows) with all the object files, regardless of if
they were rebuilt or not.  With this change, we only update them with
the object files were rebuilt.

NOTE: this does not apply on VMS, as the expansion of $? may be too
large for a command line.

Reviewed-by: Andy Polyakov <appro@openssl.org>
This commit is contained in:
Richard Levitte 2016-04-03 14:11:12 +02:00
parent 51f6d88420
commit 68cd4e3f99
2 changed files with 2 additions and 2 deletions

View File

@ -981,7 +981,7 @@ EOF
my $objs = join(" ", map { $_.$objext } @{$args{objs}});
return <<"EOF";
$lib$libext: $objs
\$(AR) \$\@ $objs
\$(AR) \$\@ \$\?
\$(RANLIB) \$\@ || echo Never mind.
EOF
}

View File

@ -404,7 +404,7 @@ EOF
return <<"EOF";
$lib$libext: $deps
\$(AR) \$(ARFLAGS) \$(AROUTFLAG)$lib$libext @<<
$objs
\$\?
<<
EOF
}