Blame Makefile

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