1#!/bin/sh
2if [ ! -d "build" ]; then
3    mkdir build
4fi
5cd build && cmake .. && make $*
6