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