#!/bin/sh
set -x
H="selene"
D=projects/hifi

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

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

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


