ALL=gloo tcp2stdio serial2stdio
BINDIR=/software/bin
CFLAGS=-s

all:  ${ALL}
	cp ${ALL} ${BINDIR}
	if [ `hostname` = lyra.esc.cam.ac.uk ]; then echo copying to triton ; scp ${ALL} triton:${BINDIR}; fi

clean:
	/bin/rm -f ${ALL} core *~ *.o a.out
