
PUB = /homes/mr/public_html

# Public HTML directory if not mountable on this machine
# and the shared drive is called E: (/dose on Linux).
# Remember to call ssh-add before calling make sshpube.

SSHPUB = mr10@ely.cl.cam.ac.uk:public_html

helpinfo:
	@echo
	@echo "make dose     Put trs.tgz in /dose"
	@echo "make sshpube  Put them in /dose and my home page using scp"
	@echo



dose:	/dose/trs.tgz

/dose/trs.tgz:
	rm -f *~ */*~
	date >TGZDATE
	(cd ..; tar zcvf /dose/trs.tgz trs)

sshpube:	dose
	scp /dose/trs.tgz $(SSHPUB)

