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