#!/bin/sh

SFML_FOLDER=$1
ARCH_CHOSEN=$2

BUILD_FOLDER=${SFML_FOLDER}/build/${ARCH_CHOSEN}
(cd ${BUILD_FOLDER} ; make -j ; make install)
