comparison libtomcrypt/genlist.sh @ 415:8b9aba1d5fa4 channel-fix

merge of '73fe066c5d9e2395354ba74756124d45c978a04d' and 'f5014cc84558f1e8eba42dbecf9f72f94bfe6134'
author Matt Johnston <matt@ucc.asn.au>
date Tue, 06 Feb 2007 16:00:18 +0000
parents 0cbe8f6dbf9e
children
comparison
equal deleted inserted replaced
414:c53a26c430e5 415:8b9aba1d5fa4
1 #!/bin/bash 1 #!/bin/bash
2 # aes_tab.o is a pseudo object as it's made from aes.o and MPI is optional 2 # aes_tab.o is a pseudo object as it's made from aes.o and MPI is optional
3 export a=`echo -n "src/ciphers/aes/aes_enc.o *(MPIOBJECT) " ; find . -type f | sort | grep "[.]/src" | grep "[.]c" | grep -v "sha224" | grep -v "sha384" | grep -v "aes_tab" | grep -v "twofish_tab" | grep -v "whirltab" | grep -v "dh_sys" | grep -v "ecc_sys" | grep -v "mpi[.]c" | grep -v "sober128tab" | sed -e 'sE\./EE' | sed -e 's/\.c/\.o/' | xargs` 3 export a=`echo -n "src/ciphers/aes/aes_enc.o " ; find . -type f | sort | grep "[.]/src" | grep "[.]c" | grep -v "sha224" | grep -v "sha384" | grep -v "aes_tab" | grep -v "twofish_tab" | grep -v "whirltab" | grep -v "dh_sys" | grep -v "ecc_sys" | grep -v "mpi[.]c" | grep -v "sober128tab" | sed -e 'sE\./EE' | sed -e 's/\.c/\.o/' | xargs`
4 perl ./parsenames.pl OBJECTS "$a" 4 perl ./parsenames.pl OBJECTS "$a"
5 export a=`find . -type f | grep [.]/src | grep [.]h | sed -e 'se\./ee' | xargs` 5 export a=`find . -type f | grep [.]/src | grep [.]h | sed -e 'se\./ee' | xargs`
6 perl ./parsenames.pl HEADERS "$a" 6 perl ./parsenames.pl HEADERS "$a"
7 7
8 # $Source: /cvs/libtom/libtomcrypt/genlist.sh,v $ 8 # $Source: /cvs/libtom/libtomcrypt/genlist.sh,v $
9 # $Revision: 1.3 $ 9 # $Revision: 1.4 $
10 # $Date: 2005/05/05 14:49:27 $ 10 # $Date: 2005/07/17 23:15:12 $