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