Jason ティビツ 788744
# Makefile for source rpm: seabios
Jason ティビツ 788744
# $Id$
Jason ティビツ 788744
NAME := seabios
Jason ティビツ 788744
SPECFILE = $(firstword $(wildcard *.spec))
Jason ティビツ 788744
Jason ティビツ 788744
define find-makefile-common
Jason ティビツ 788744
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
Jason ティビツ 788744
endef
Jason ティビツ 788744
Jason ティビツ 788744
MAKEFILE_COMMON := $(shell $(find-makefile-common))
Jason ティビツ 788744
Jason ティビツ 788744
ifeq ($(MAKEFILE_COMMON),)
Jason ティビツ 788744
# attept a checkout
Jason ティビツ 788744
define checkout-makefile-common
Jason ティビツ 788744
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
Jason ティビツ 788744
endef
Jason ティビツ 788744
Jason ティビツ 788744
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
Jason ティビツ 788744
endif
Jason ティビツ 788744
Jason ティビツ 788744
include $(MAKEFILE_COMMON)