# $Id: Makefile,v 1.1 1999/08/21 05:54:37 maffew Exp $

# makefile for active news

# scripts to forget the passwords ready for source distribution
forget:
	perl -pi -e 's/_password = ".*?"/_password = "changeme"/g;' webcast-setup.php3

# maffew's stuff to automate syncing between my home poota and the server
get:
	rsync -avuz --exclude '*~' black:adev/active/webcast/ .

put:
	rsync -Cavuz . black:adev/active/webcast/

sync: get put
