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