Configuration CVS manipulation version 0.0.1
Copyright (c) 2002 Sebastien J. Gross <seb@sjgross.org>

Released under the terms of the GPL version 2 or higher.

For each taget some global variable can be defined:
	DESTDIR		Where is located the production directory.
			By default / is used.
			You might use an other one for testing puposes.

	HOSTNAME	The name of the local machine.
			Use an other value if you want to use an other host.

	DEBUG		Use 1 to display each action on STDOUT.
			By default no action is displayed.

Specific variables:
	ITEM		The file/directory to treat
			By default actions are run against all HOSTNAME files
			and subdirectories.
			This variable is usefull for action restrictions.
			
	PATCH_FILE	The patchfile used for the 'revert' target.
			If this value is left blank, the last patch is
			used.

make patch [ITEM=file]
	make a patch from production against development.

make install [ITEM=file]
	Install development version to production. A patch is generated
	at each installation.

make revert [PATCH_FILE=file]
	Undo an install.

make diff [ITEM=file]
	same as 'patch' except the output is on STDOUT.

make cvs-diff [ITEM=file]
	Make a diff between development and CVS file/directory.

make init
	Create the host directory at first time in local dir and in the CVS.

make add [ITEM=file]
	Add recursivelly a file/directory to the CVS.

make update
	Update local directory from CVS.

make clean-patch
	Remove *.patch files.

make clean
	Remove old files.
