#---------------------------------------------------------------
# Project         : Mandrake Linux
# Module          : Borges
# File            : Makefile.src.images
# Author          : Camille Bgnis
# Created On      : Mon May  1 16:25:21 2001
# Copyright       : Camille Bgnis camille@mandrakesoft.com,
#                    MandrakeSoft under the GPL license
#---------------------------------------------------------------
# This Makefile is responsible for Committing source images.

include /home/stew/RPM/BUILD/Borges-0.12.2/doc/Makefile.include

%.update:
	@echo "**** Updating $< from CVS"
ifeq ($(CVS),'yes')
	cvs -z2 update $*
endif

%.validate: %
	@echo "**** Not validating $<"

%.commit: %.validate
	if [ -s $< ]; then \
		echo "**********************************************************"; \
		echo "******* $* Not Valid: Consult $@ ********"; \
		echo "**********************************************************"; \
	elif [ $(CVS) == 'yes' ]; then \
		$(call cvsadd,$*) \
		cvs -z2 commit $(if $(CVSLOG),-m "$(CVSLOG)") $*; \
	fi



# Local variables:
# mode: makefile
# End: