cvsdist 88c27c
# Makefile for source rpm: acpid
cvsdist 88c27c
# $Id$
cvsdist 88c27c
NAME := acpid
cvsdist 88c27c
SPECFILE = $(firstword $(wildcard *.spec))
cvsdist 88c27c
Bill Nottingham 3e0d43
define find-makefile-common
Bill Nottingham 3e0d43
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 3e0d43
endef
Bill Nottingham 3e0d43
Bill Nottingham 3e0d43
MAKEFILE_COMMON := $(shell $(find-makefile-common))
Bill Nottingham 3e0d43
Bill Nottingham 3e0d43
ifeq ($(MAKEFILE_COMMON),)
Bill Nottingham 3e0d43
# attempt a checkout
Bill Nottingham 3e0d43
define checkout-makefile-common
Bill Nottingham 3e0d43
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 3e0d43
endef
Bill Nottingham 3e0d43
Bill Nottingham 3e0d43
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
Bill Nottingham 3e0d43
endif
Bill Nottingham 3e0d43
Bill Nottingham 3e0d43
include $(MAKEFILE_COMMON)