mirror of
https://github.com/clearml/dropbear
synced 2025-02-07 13:21:15 +00:00
to branch 'au.asn.ucc.matt.dropbear' (head fdf4a7a3b97ae5046139915de7e40399cceb2c01) --HG-- extra : convert_revision : dc4809882e1b9f2dcd3f8bbe38c74a0a52c39ce4
11 lines
694 B
Bash
11 lines
694 B
Bash
#!/bin/bash
|
|
# aes_tab.o is a pseudo object as it's made from aes.o and MPI is optional
|
|
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`
|
|
perl ./parsenames.pl OBJECTS "$a"
|
|
export a=`find . -type f | grep [.]/src | grep [.]h | sed -e 'se\./ee' | xargs`
|
|
perl ./parsenames.pl HEADERS "$a"
|
|
|
|
# $Source: /cvs/libtom/libtomcrypt/genlist.sh,v $
|
|
# $Revision: 1.3 $
|
|
# $Date: 2005/05/05 14:49:27 $
|