#! /bin/bash

../cryptal.native "${1}.crp" > "${1}.ll"
llc "${1}.ll" > "${1}.s"
gcc -o "${1}.exe" "${1}.s" "../crypto_arith.o" -lcrypto  

