#!/bin/sh
set -x
H="-l jroot caesious"
D=projects/hifi

tar cf - . | ssh $H "cd $D; tar xvf -"

ssh -n $H "cd $D; make clean"

ssh -n $H "cd $D; make depend"
ssh -n $H "cd $D; make "


