Blame Makefile

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