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