]> git.saurik.com Git - apple/xnu.git/blob - bsd/crypto/aes/test/makegenx86.sh
xnu-1699.24.8.tar.gz
[apple/xnu.git] / bsd / crypto / aes / test / makegenx86.sh
1 #!/bin/ksh
2
3 cc -Os -c -arch i386 -arch x86_64 -I ../../../ ../gen/aescrypt.c -o aescrypt.o
4 cc -Os -c -arch i386 -arch x86_64 -I ../../../ ../gen/aeskey.c -o aeskey.o
5 cc -Os -c -arch i386 -arch x86_64 -I ../../../ ../gen/aestab.c -o aestab.o
6
7 cc -arch i386 -arch x86_64 -Os tstaes.c aescrypt.o aeskey.o aestab.o -o tstaesgenx86
8 rm -fr aescrypt.o aeskey.o aestab.o