#!/bin/bash

#
# As you can tell, the linux version is mostly an afterthought - I
# didn't even bother with a Makefile.  This little script
# works well enough tho.
#

INCLUDES="-I../engine -I../common -I../metamod -I../includes"
OUTFILE=bod_mm.so

rm -f $OUTFILE
g++ -shared -o $OUTFILE -O3  $INCLUDES *.cpp

