summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2007-10-15 18:45:17 +0000
committerBill Nottingham <notting@fedoraproject.org>2007-10-15 18:45:17 +0000
commitbd48d98aca5cc8caa3c46a1f5b98728b2247097c (patch)
tree146d0d06bfc9e8c44d260e6d81d97e558c514f24 /Makefile
parentremoved unused plugin check (diff)
downloadlibrewolf-fedora-ff-bd48d98aca5cc8caa3c46a1f5b98728b2247097c.tar.gz
librewolf-fedora-ff-bd48d98aca5cc8caa3c46a1f5b98728b2247097c.tar.bz2
librewolf-fedora-ff-bd48d98aca5cc8caa3c46a1f5b98728b2247097c.zip
makefile update to properly grab makefile.common
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 17 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0a54a19..477c3f2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,21 @@
# Makefile for source rpm: firefox
-# $Id$
+# $Id: Makefile,v 1.1 2004/09/09 04:44:44 cvsdist Exp $
NAME := firefox
SPECFILE = $(firstword $(wildcard *.spec))
-include ../common/Makefile.common
+define find-makefile-common
+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
+endef
+
+MAKEFILE_COMMON := $(shell $(find-makefile-common))
+
+ifeq ($(MAKEFILE_COMMON),)
+# attempt a checkout
+define checkout-makefile-common
+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
+endef
+
+MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
+endif
+
+include $(MAKEFILE_COMMON)
bgstack15