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