cvsdist 1d34b88
# Makefile for source rpm: eog
d9661af
# $Id: Makefile,v 1.1 2004/09/09 04:31:54 cvsdist Exp $
cvsdist 1d34b88
NAME := eog
cvsdist 1d34b88
SPECFILE = $(firstword $(wildcard *.spec))
cvsdist 1d34b88
d9661af
define find-makefile-common
d9661af
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
d9661af
endef
d9661af
d9661af
MAKEFILE_COMMON := $(shell $(find-makefile-common))
d9661af
d9661af
ifeq ($(MAKEFILE_COMMON),)
d9661af
# attempt a checkout
d9661af
define checkout-makefile-common
d9661af
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
d9661af
endef
d9661af
d9661af
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
d9661af
endif
d9661af
d9661af
include $(MAKEFILE_COMMON)