#!/usr/bin/env bash

outdir=site
dest="/srv/http/"

make clean
make all

sudo rm -r $dest/*
sudo cp -r $outdir/* $dest
sudo apachectl start