cvsextras 349ff5f
# Makefile for source rpm: seahorse
cvsextras 349ff5f
# $Id$
cvsextras 349ff5f
NAME := seahorse
cvsextras 349ff5f
SPECFILE = $(firstword $(wildcard *.spec))
cvsextras 349ff5f
cvsextras 349ff5f
define find-makefile-common
128817c
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
cvsextras 349ff5f
endef
cvsextras 349ff5f
cvsextras 349ff5f
MAKEFILE_COMMON	:= $(shell $(find-makefile-common))
cvsextras 349ff5f
cvsextras 349ff5f
ifeq ($(MAKEFILE_COMMON),)
cvsextras 349ff5f
# attept a checkout
cvsextras 349ff5f
define checkout-makefile-common
gafton d3a25b5
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 349ff5f
endef
cvsextras 349ff5f
cvsextras 349ff5f
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
cvsextras 349ff5f
endif
cvsextras 349ff5f
cvsextras 349ff5f
include $(MAKEFILE_COMMON)