fujiwara / rpms / ibus

Forked from rpms/ibus 4 years ago
Clone

Blame Makefile

a316720
# Makefile for source rpm: ibus
a316720
# $Id$
a316720
NAME := ibus
a316720
SPECFILE = $(firstword $(wildcard *.spec))
a316720
a316720
define find-makefile-common
a316720
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
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)