mharris a6e0fc8
# Makefile for source rpm: libXdmcp
33e5f12
# $Id: Makefile,v 1.1 2005/08/26 21:22:06 mharris Exp $
mharris a6e0fc8
NAME := libXdmcp
mharris a6e0fc8
SPECFILE = $(firstword $(wildcard *.spec))
mharris a6e0fc8
33e5f12
define find-makefile-common
33e5f12
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
33e5f12
endef
33e5f12
33e5f12
MAKEFILE_COMMON := $(shell $(find-makefile-common))
33e5f12
33e5f12
ifeq ($(MAKEFILE_COMMON),)
33e5f12
# attempt a checkout
33e5f12
define checkout-makefile-common
33e5f12
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
33e5f12
endef
33e5f12
33e5f12
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
33e5f12
endif
33e5f12
33e5f12
include $(MAKEFILE_COMMON)