a82ae94
# Makefile for source rpm: qmmp
12f5e2b
# $Id: Makefile,v 1.1 2008/01/11 21:50:26 kevin Exp $
a82ae94
NAME := qmmp
a82ae94
SPECFILE = $(firstword $(wildcard *.spec))
a82ae94
a82ae94
define find-makefile-common
12f5e2b
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
a82ae94
endef
a82ae94
a82ae94
MAKEFILE_COMMON := $(shell $(find-makefile-common))
a82ae94
a82ae94
ifeq ($(MAKEFILE_COMMON),)
a82ae94
# attept a checkout
a82ae94
define checkout-makefile-common
a82ae94
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
a82ae94
endef
a82ae94
a82ae94
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
a82ae94
endif
a82ae94
a82ae94
include $(MAKEFILE_COMMON)