gen.sh (354B)
1 #!/bin/sh 2 # 3 # Run the scripts in this folder, generating the assembly, 4 # 5 6 perl sha512p8-ppc.pl linux64le sha512-p8.s 7 8 # Add the license mention 9 cat > hdr << "EOF" 10 # Copyright (c) 2006, CRYPTOGAMS by <appro@openssl.org> 11 # All rights reserved. 12 # See the full LICENSE under scripts/. 13 14 EOF 15 16 cat hdr sha512-p8.s > ../sha512-p8.s 17 18 # Cleanup 19 rm hdr sha512-p8.s