cvsdist 95c3b24
# Makefile for source rpm: unzip
f2ca69c
# $Id: Makefile,v 1.1 2004/09/09 13:48:15 cvsdist Exp $
cvsdist 95c3b24
NAME := unzip
cvsdist 95c3b24
SPECFILE = $(firstword $(wildcard *.spec))
cvsdist 95c3b24
f2ca69c
define find-makefile-common
f2ca69c
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
f2ca69c
endef
f2ca69c
f2ca69c
MAKEFILE_COMMON := $(shell $(find-makefile-common))
f2ca69c
f2ca69c
ifeq ($(MAKEFILE_COMMON),)
f2ca69c
# attempt a checkout
f2ca69c
define checkout-makefile-common
f2ca69c
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
f2ca69c
endef
f2ca69c
f2ca69c
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
f2ca69c
endif
f2ca69c
f2ca69c
include $(MAKEFILE_COMMON)