#!/bin/bash
cp /data/Makefile . 2>/dev/null
make default
IFS=$'\n'
for f in $(find ./bin/ -iname "*\.dll$*" -type f);do
cp "$f" /data/
done
cp Makefile /data/