aluchko 7d2d1e0
# Makefile for source rpm: eclipse
aluchko 7d2d1e0
# $Id$
cvsdist 534d0c9
NAME := eclipse
aluchko 7d2d1e0
SPECFILE = $(firstword $(wildcard *.spec))
cvsdist 534d0c9
e0556d6
define find-makefile-common
1533a21
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
e0556d6
endef
e0556d6
e0556d6
MAKEFILE_COMMON := $(shell $(find-makefile-common))
e0556d6
e0556d6
ifeq ($(MAKEFILE_COMMON),)
e0556d6
# attempt a checkout
e0556d6
define checkout-makefile-common
e0556d6
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
e0556d6
endef
e0556d6
e0556d6
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
e0556d6
endif
e0556d6
e0556d6
include $(MAKEFILE_COMMON)