b4204a8
# Makefile for source rpm: pylint
b4204a8
# $Id$
b4204a8
NAME := pylint
b4204a8
SPECFILE = $(firstword $(wildcard *.spec))
b4204a8
b4204a8
define find-makefile-common
b4204a8
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
b4204a8
endef
b4204a8
b4204a8
MAKEFILE_COMMON := $(shell $(find-makefile-common))
b4204a8
b4204a8
ifeq ($(MAKEFILE_COMMON),)
b4204a8
# attept a checkout
b4204a8
define checkout-makefile-common
b4204a8
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
b4204a8
endef
b4204a8
b4204a8
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
b4204a8
endif
b4204a8
b4204a8
include $(MAKEFILE_COMMON)