Jason ティビツ 875a2f
# Makefile for source rpm: exempi
Jason ティビツ 875a2f
# $Id$
Jason ティビツ 875a2f
NAME := exempi
Jason ティビツ 875a2f
SPECFILE = $(firstword $(wildcard *.spec))
Jason ティビツ 875a2f
Jason ティビツ 875a2f
define find-makefile-common
Jason ティビツ 875a2f
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
Jason ティビツ 875a2f
endef
Jason ティビツ 875a2f
Jason ティビツ 875a2f
MAKEFILE_COMMON := $(shell $(find-makefile-common))
Jason ティビツ 875a2f
Jason ティビツ 875a2f
ifeq ($(MAKEFILE_COMMON),)
Jason ティビツ 875a2f
# attept a checkout
Jason ティビツ 875a2f
define checkout-makefile-common
Jason ティビツ 875a2f
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
Jason ティビツ 875a2f
endef
Jason ティビツ 875a2f
Jason ティビツ 875a2f
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
Jason ティビツ 875a2f
endif
Jason ティビツ 875a2f
Jason ティビツ 875a2f
include $(MAKEFILE_COMMON)