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