69f493b
# Makefile for source rpm: crm114
69f493b
# $Id$
69f493b
NAME := crm114
69f493b
SPECFILE = $(firstword $(wildcard *.spec))
69f493b
69f493b
define find-makefile-common
69f493b
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
69f493b
endef
69f493b
69f493b
MAKEFILE_COMMON := $(shell $(find-makefile-common))
69f493b
69f493b
ifeq ($(MAKEFILE_COMMON),)
69f493b
# attept a checkout
69f493b
define checkout-makefile-common
69f493b
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
69f493b
endef
69f493b
69f493b
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
69f493b
endif
69f493b
69f493b
include $(MAKEFILE_COMMON)