2012-04-03 12:53:07 -07:00
|
|
|
# -*- makefile -*-
|
|
|
|
# vim:set ts=8 sw=8 sts=8 noet:
|
|
|
|
|
2012-05-21 04:12:37 -07: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/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-02-15 14:00:12 -08:00
|
|
|
USE_RCS_MK=1
|
|
|
|
include $(topsrcdir)/config/makefiles/makeutils.mk
|
|
|
|
|
2012-04-03 12:53:07 -07:00
|
|
|
milestone_txt = $(topsrcdir)/config/milestone.txt
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2015-08-06 12:39:38 -07:00
|
|
|
MOZ_SOURCE_STAMP ?= $(firstword $(shell hg -R $(topsrcdir) parent --template='{node}\n' 2>/dev/null))
|
2016-02-08 22:16:25 -08:00
|
|
|
ifneq (,$(strip $(MOZ_SOURCE_STAMP)))
|
2009-02-16 05:32:39 -08:00
|
|
|
|
2016-02-08 22:16:25 -08:00
|
|
|
DEFINES += -DMOZ_SOURCE_STAMP=$(MOZ_SOURCE_STAMP)
|
2012-04-03 12:53:07 -07:00
|
|
|
|
2015-02-17 19:10:03 -08:00
|
|
|
ifdef MOZ_INCLUDE_SOURCE_INFO
|
2014-08-07 18:29:39 -07:00
|
|
|
source_repo := $(call getSourceRepo)
|
2012-04-03 12:53:07 -07:00
|
|
|
|
2014-08-07 18:29:39 -07:00
|
|
|
# extra sanity check for old versions of hg, no showconfig support
|
|
|
|
ifneq (,$(filter http%,$(source_repo)))
|
2016-02-08 22:16:25 -08:00
|
|
|
DEFINES += -DMOZ_SOURCE_REPO=$(source_repo)
|
2014-08-07 18:29:39 -07:00
|
|
|
endif
|
2012-04-03 12:53:07 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
endif # MOZ_SOURCE_STAMP
|
|
|
|
|
2016-02-08 23:13:37 -08:00
|
|
|
MOZ_BUILDID := $(strip $(firstword $(shell cat $(DEPTH)/config/buildid 2>/dev/null)))
|
|
|
|
$(call errorIfEmpty,GRE_MILESTONE MOZ_BUILDID)
|
2012-04-03 12:53:07 -07:00
|
|
|
|
2016-02-08 23:13:37 -08:00
|
|
|
DEFINES += -DMOZ_BUILDID=$(MOZ_BUILDID)
|
2011-10-24 13:07:33 -07:00
|
|
|
|
2012-04-03 12:53:07 -07:00
|
|
|
$(srcdir)/nsAppRunner.cpp: $(DEPTH)/config/buildid $(milestone_txt)
|