cvsdist e1adec
# Makefile for source rpm: apr-util
Bill Nottingham 74b482
# $Id: Makefile,v 1.2 2004/11/22 10:46:47 jorton Exp $
cvsdist e1adec
NAME := apr-util
cvsdist e1adec
SPECFILE = $(firstword $(wildcard *.spec))
jorton 79b1fd
UPSTREAM_CHECKS = asc
cvsdist e1adec
Bill Nottingham 74b482
define find-makefile-common
Bill Nottingham 74b482
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
Bill Nottingham 74b482
endef
Bill Nottingham 74b482
Bill Nottingham 74b482
MAKEFILE_COMMON := $(shell $(find-makefile-common))
Bill Nottingham 74b482
Bill Nottingham 74b482
ifeq ($(MAKEFILE_COMMON),)
Bill Nottingham 74b482
# attempt a checkout
Bill Nottingham 74b482
define checkout-makefile-common
Bill Nottingham 74b482
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
Bill Nottingham 74b482
endef
Bill Nottingham 74b482
Bill Nottingham 74b482
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
Bill Nottingham 74b482
endif
Bill Nottingham 74b482
Bill Nottingham 74b482
include $(MAKEFILE_COMMON)