diff options
author | Richard Levitte <levitte@openssl.org> | 2016-01-30 03:25:40 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-02-10 14:36:04 +0100 |
commit | 567a9e6fe0ff3badfa22cf018d87c94ed5a8aeb3 (patch) | |
tree | 6e21b8f62376aedf1ea3fc8f24dffd9978348c9f /crypto/des | |
parent | unified build scheme: give util/dofile.pl the possibility to output selectively (diff) | |
download | openssl-567a9e6fe0ff3badfa22cf018d87c94ed5a8aeb3.tar.xz openssl-567a9e6fe0ff3badfa22cf018d87c94ed5a8aeb3.zip |
unified build scheme: add a "unified" template for Unix Makefile
This also adds all the raw sections needed for some files.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/des')
-rw-r--r-- | crypto/des/build.info | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/crypto/des/build.info b/crypto/des/build.info index 5113867deb..5fabddf182 100644 --- a/crypto/des/build.info +++ b/crypto/des/build.info @@ -7,3 +7,17 @@ SOURCE[../../libcrypto]=\ {- $target{des_asm_src} -} \ fcrypt.c xcbc_enc.c rpc_enc.c cbc_cksm.c \ read2pwd.c + +BEGINRAW[Makefile] +##### DES assembler implementations + +{- $builddir -}/des_enc-sparc.S: {- $sourcedir -}/asm/des_enc.m4 + m4 -B 8192 {- $sourcedir -}/asm/des_enc.m4 > $@ +{- $builddir -}/dest4-sparcv9.s: {- $sourcedir -}/asm/dest4-sparcv9.pl + $(PERL) {- $sourcedir -}/asm/dest4-sparcv9.pl $(CFLAGS) > $@ + +{- $builddir -}/des-586.s: {- $sourcedir -}/asm/des-586.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl {- $sourcetop -}/crypto/perlasm/cbc.pl + $(PERL) {- $sourcedir -}/asm/des-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ +{- $builddir -}/crypt586.s: {- $sourcedir -}/asm/crypt586.pl {- $sourcetop -}/crypto/perlasm/x86asm.pl {- $sourcetop -}/crypto/perlasm/cbc.pl + $(PERL) {- $sourcedir -}/asm/crypt586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ +ENDRAW[Makefile] |