a316720
# Makefile for source rpm: ibus
768b38b
# $Id: Makefile,v 1.1 2008/08/10 01:25:57 kevin Exp $
a316720
NAME := ibus
a316720
SPECFILE = $(firstword $(wildcard *.spec))
a316720
a316720
define find-makefile-common
768b38b
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
a316720
endef
a316720
a316720
MAKEFILE_COMMON := $(shell $(find-makefile-common))
a316720
a316720
ifeq ($(MAKEFILE_COMMON),)
a316720
# attept a checkout
a316720
define checkout-makefile-common
a316720
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
a316720
endef
a316720
a316720
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
a316720
endif
a316720
a316720
include $(MAKEFILE_COMMON)