#!/bin/sh

x86_64-pc-linux-gnu-gcc -O2 -fomit-frame-pointer camellia.c -c -o camellia.o
x86_64-pc-linux-gnu-gcc -O2 -fomit-frame-pointer camellia5.c -c -o camellia5.o
x86_64-pc-linux-gnu-gcc -O2 -fomit-frame-pointer camellia_64.c -c -o camellia_64.o

x86_64-pc-linux-gnu-gcc -DCONFIG_CC_OPTIMIZE_FOR_SIZE=1 -O2 -fomit-frame-pointer camellia.c -c -o camellia_Os.o
x86_64-pc-linux-gnu-gcc -DCONFIG_CC_OPTIMIZE_FOR_SIZE=1 -O2 -fomit-frame-pointer camellia5.c -c -o camellia5_Os.o
x86_64-pc-linux-gnu-gcc -DCONFIG_CC_OPTIMIZE_FOR_SIZE=1 -O2 -fomit-frame-pointer camellia_64.c -c -o camellia_64_Os.o
