# $Id: Makefile,v 1.1 1999/03/06 15:47:03 maffew Exp $

# makefile for active groups

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

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

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

sync: get put
