cvsextras ae0d427
# Makefile for source rpm: dxpc
cvsextras ae0d427
# $Id$
cvsextras ae0d427
NAME := dxpc
cvsextras ae0d427
SPECFILE = $(firstword $(wildcard *.spec))
cvsextras ae0d427
cvsextras ae0d427
define find-makefile-common
cvsextras ae0d427
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 ae0d427
endef
cvsextras ae0d427
cvsextras ae0d427
MAKEFILE_COMMON	:= $(shell $(find-makefile-common))
cvsextras ae0d427
cvsextras ae0d427
ifeq ($(MAKEFILE_COMMON),)
cvsextras ae0d427
# attept a checkout
cvsextras ae0d427
define checkout-makefile-common
cvsextras ae0d427
test -f CVS/Rootx && { 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 ae0d427
endef
cvsextras ae0d427
cvsextras ae0d427
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
cvsextras ae0d427
endif
cvsextras ae0d427
cvsextras ae0d427
include $(MAKEFILE_COMMON)