2012-04-03 23:53:07 +04:00
|
|
|
# -*- makefile -*-
|
|
|
|
# vim:set ts=8 sw=8 sts=8 noet:
|
|
|
|
|
2012-05-21 15:12:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2002-08-21 14:25:54 +04:00
|
|
|
|
2013-02-16 02:00:12 +04:00
|
|
|
USE_RCS_MK=1
|
|
|
|
include $(topsrcdir)/config/makefiles/makeutils.mk
|
|
|
|
|
2012-04-03 23:53:07 +04:00
|
|
|
milestone_txt = $(topsrcdir)/config/milestone.txt
|
|
|
|
|
2002-08-21 14:25:54 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2012-04-03 23:53:07 +04:00
|
|
|
# Should version be optional or required ?
|
2015-01-09 12:24:45 +03:00
|
|
|
TOOLKIT_EM_VERSION=$(shell $(PYTHON) $(topsrcdir)/python/mozbuild/mozbuild/milestone.py --topsrcdir=$(topsrcdir))
|
2012-04-03 23:53:07 +04:00
|
|
|
$(call warnIfEmpty,TOOLKIT_EM_VERSION)
|
|
|
|
|
|
|
|
# Valid if null: {warn,error}IfEmpty
|
2013-12-03 01:34:21 +04:00
|
|
|
DEFINES += -DTOOLKIT_EM_VERSION='"$(TOOLKIT_EM_VERSION)"'
|
2005-07-15 00:29:06 +04:00
|
|
|
|
2015-08-06 22:39:38 +03:00
|
|
|
MOZ_SOURCE_STAMP ?= $(firstword $(shell hg -R $(topsrcdir) parent --template='{node}\n' 2>/dev/null))
|
2009-12-20 17:25:48 +03:00
|
|
|
ifdef MOZ_SOURCE_STAMP
|
2009-02-16 16:32:39 +03:00
|
|
|
|
2012-04-03 23:53:07 +04:00
|
|
|
INIARGS = --sourcestamp=$(MOZ_SOURCE_STAMP)
|
|
|
|
|
2015-02-18 06:10:03 +03:00
|
|
|
ifdef MOZ_INCLUDE_SOURCE_INFO
|
2014-08-08 05:29:39 +04:00
|
|
|
source_repo := $(call getSourceRepo)
|
2012-04-03 23:53:07 +04:00
|
|
|
|
2014-08-08 05:29:39 +04:00
|
|
|
# extra sanity check for old versions of hg, no showconfig support
|
|
|
|
ifneq (,$(filter http%,$(source_repo)))
|
|
|
|
INIARGS += --sourcerepo=$(source_repo)
|
|
|
|
endif
|
2012-04-03 23:53:07 +04:00
|
|
|
endif
|
|
|
|
|
|
|
|
endif # MOZ_SOURCE_STAMP
|
|
|
|
|
|
|
|
GRE_BUILDID := $(strip $(firstword $(shell cat $(DEPTH)/config/buildid 2>/dev/null)))
|
|
|
|
$(call errorIfEmpty,GRE_MILESTONE GRE_BUILDID)
|
|
|
|
|
2013-11-27 17:55:07 +04:00
|
|
|
DEFINES += -DGRE_BUILDID=$(GRE_BUILDID)
|
2011-10-25 00:07:33 +04:00
|
|
|
|
2012-04-03 23:53:07 +04:00
|
|
|
$(srcdir)/nsAppRunner.cpp: $(DEPTH)/config/buildid $(milestone_txt)
|
2010-04-07 23:44:38 +04:00
|
|
|
|
2007-07-02 22:20:24 +04:00
|
|
|
platform.ini: FORCE
|
2012-04-03 23:53:07 +04:00
|
|
|
$(PYTHON) $(srcdir)/make-platformini.py --buildid=$(GRE_BUILDID) $(INIARGS) $(milestone_txt) > $@
|
2007-07-02 22:20:24 +04:00
|
|
|
|
2008-02-09 13:37:42 +03:00
|
|
|
GARBAGE += platform.ini
|
|
|
|
|
2014-11-24 07:36:57 +03:00
|
|
|
# Moving this out of libs breaks packaging.
|
2007-07-02 22:20:24 +04:00
|
|
|
libs:: platform.ini
|
|
|
|
$(INSTALL) $^ $(DIST)/bin
|