mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
27 lines
774 B
Makefile
27 lines
774 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}\n' 2>/dev/null)
|
|
ifdef MOZ_SOURCE_STAMP
|
|
DEFINES += -DSOURCE_CHANGESET='$(MOZ_SOURCE_STAMP)'
|
|
endif
|
|
|
|
ifdef MOZ_INCLUDE_SOURCE_INFO
|
|
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
|
|
endif
|