mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
It seems that on some platforms, the perlasm scripts call the C compiler for certain checks. These scripts need the environment variable CC to have the C compiler command. Reviewed-by: Rich Salz <rsalz@openssl.org>
11 lines
369 B
Plaintext
11 lines
369 B
Plaintext
LIBS=../../libcrypto
|
|
SOURCE[../../libcrypto]=\
|
|
rmd_dgst.c rmd_one.c {- $target{rmd160_asm_src} -}
|
|
|
|
BEGINRAW[Makefile]
|
|
##### RMD160 assembler implementations
|
|
|
|
{- $builddir -}/rmd-586.s: {- $sourcedir -}/asm/rmd-586.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl
|
|
CC="$(CC)" $(PERL) {- $sourcedir -}/asm/rmd-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
|
ENDRAW[Makefile]
|