eb77e8886d
Make all scripts produce .S, make interpretation of $(CFLAGS) pre-processor's responsibility, start accepting $(PERLASM_SCHEME). [$(PERLASM_SCHEME) is redundant in this case, because there are no deviataions between Solaris and Linux assemblers. This is purely to unify .pl->.S handling across all targets.] Reviewed-by: Richard Levitte <levitte@openssl.org>
18 lines
773 B
Text
18 lines
773 B
Text
LIBS=../../libcrypto
|
|
SOURCE[../../libcrypto]=\
|
|
md5_dgst.c md5_one.c {- $target{md5_asm_src} -}
|
|
|
|
BEGINRAW[Makefile]
|
|
{- $builddir -}/md5-586.s: {- $sourcedir -}/asm/md5-586.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl
|
|
CC="$(CC)" $(PERL) {- $sourcedir -}/asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
|
|
|
{- $builddir -}/md5-x86_64.s: {- $sourcedir -}/asm/md5-x86_64.pl
|
|
CC="$(CC)" $(PERL) {- $sourcedir -}/asm/md5-x86_64.pl $(PERLASM_SCHEME) > $@
|
|
|
|
{- $builddir -}/md5-ia64.s: {- $sourcedir -}/asm/md5-ia64.S
|
|
$(CC) $(CFLAGS) -E {- $sourcedir -}/asm/md5-ia64.S | \
|
|
$(PERL) -ne 's/;\s+/;\n/g; print;' > $@
|
|
|
|
{- $builddir -}/md5-sparcv9.S: {- $sourcedir -}/asm/md5-sparcv9.pl
|
|
CC="$(CC)" $(PERL) {- $sourcedir -}/asm/md5-sparcv9.pl $(PERLASM_SCHEME) $@
|
|
ENDRAW[Makefile]
|