mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
28 lines
843 B
Makefile
28 lines
843 B
Makefile
#
|
|
# 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
|
|
|
|
DEFINES += \
|
|
-DCXXFLAGS='$(CXXFLAGS)' \
|
|
-DCPPFLAGS='$(CPPFLAGS)' \
|
|
$(NULL)
|
|
|
|
MOZ_SOURCE_STAMP ?= $(shell hg -R $(topsrcdir) parent --template='{node|short}\n' 2>/dev/null)
|
|
ifdef MOZ_SOURCE_STAMP
|
|
DEFINES += -DSOURCE_CHANGESET='$(MOZ_SOURCE_STAMP)'
|
|
endif
|
|
|
|
source_repo ?= $(call getSourceRepo)
|
|
ifneq (,$(filter http%,$(source_repo)))
|
|
DEFINES += -DSOURCE_REPO='$(source_repo)'
|
|
else ifneq (,$(strip $(source_repo)))
|
|
DEFINES += -DSOURCE_GIT_COMMIT='$(source_repo)'
|
|
endif
|
|
|
|
BUILD_HOSTNAME = $(shell hostname -s || hostname)
|
|
DEFINES += -DBUILD_HOSTNAME='$(BUILD_HOSTNAME)'
|