#!/bin/sh
# compile



# Joseph Rosevear 220312 I wrote this script.



# Definitions.
bits=""

if [ "`uname -m`" = "x86_64" ]; then

   bits=64
fi

# Compile.
cc ${1}.c -o ${1}`bits`.exe
