mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
53 lines
1.6 KiB
Makefile
53 lines
1.6 KiB
Makefile
# -*- makefile -*-
|
|
# vim:set ts=8 sw=8 sts=8 noet:
|
|
|
|
# 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/.
|
|
|
|
USE_RCS_MK=1
|
|
include $(topsrcdir)/config/makefiles/makeutils.mk
|
|
|
|
milestone_txt = $(topsrcdir)/config/milestone.txt
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# Should version be optional or required ?
|
|
TOOLKIT_EM_VERSION=$(shell $(PYTHON) $(topsrcdir)/python/mozbuild/mozbuild/milestone.py --topsrcdir=$(topsrcdir))
|
|
$(call warnIfEmpty,TOOLKIT_EM_VERSION)
|
|
|
|
# Valid if null: {warn,error}IfEmpty
|
|
DEFINES += -DTOOLKIT_EM_VERSION='"$(TOOLKIT_EM_VERSION)"'
|
|
|
|
MOZ_SOURCE_STAMP ?= $(firstword $(shell hg -R $(topsrcdir) parent --template='{node}\n' 2>/dev/null))
|
|
ifdef MOZ_SOURCE_STAMP
|
|
|
|
INIARGS = --sourcestamp=$(MOZ_SOURCE_STAMP)
|
|
|
|
ifdef MOZ_INCLUDE_SOURCE_INFO
|
|
source_repo := $(call getSourceRepo)
|
|
|
|
# extra sanity check for old versions of hg, no showconfig support
|
|
ifneq (,$(filter http%,$(source_repo)))
|
|
INIARGS += --sourcerepo=$(source_repo)
|
|
endif
|
|
endif
|
|
|
|
endif # MOZ_SOURCE_STAMP
|
|
|
|
GRE_BUILDID := $(strip $(firstword $(shell cat $(DEPTH)/config/buildid 2>/dev/null)))
|
|
$(call errorIfEmpty,GRE_MILESTONE GRE_BUILDID)
|
|
|
|
DEFINES += -DGRE_BUILDID=$(GRE_BUILDID)
|
|
|
|
$(srcdir)/nsAppRunner.cpp: $(DEPTH)/config/buildid $(milestone_txt)
|
|
|
|
platform.ini: FORCE
|
|
$(PYTHON) $(srcdir)/make-platformini.py --buildid=$(GRE_BUILDID) $(INIARGS) $(milestone_txt) > $@
|
|
|
|
GARBAGE += platform.ini
|
|
|
|
# Moving this out of libs breaks packaging.
|
|
libs:: platform.ini
|
|
$(INSTALL) $^ $(DIST)/bin
|