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
|
|
|
ifdef MOZ_ENABLE_XREMOTE
|
2012-01-03 19:09:29 -08:00
|
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/widget/xremoteclient
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2010-01-12 13:14:38 -08:00
|
|
|
LOCAL_INCLUDES += \
|
2012-05-22 13:45:24 -07:00
|
|
|
-I$(topsrcdir)/testing/gtest/mozilla \
|
2012-09-20 00:55:36 -07:00
|
|
|
-I$(srcdir)/../profile \
|
2010-01-12 13:14:38 -08:00
|
|
|
-I$(topsrcdir)/dom/ipc \
|
|
|
|
-I$(topsrcdir)/toolkit/crashreporter \
|
2010-12-03 00:24:17 -08:00
|
|
|
-I$(topsrcdir)/dom/base \
|
2011-05-21 23:23:20 -07:00
|
|
|
-I$(topsrcdir)/xpcom/build \
|
2011-03-07 19:58:46 -08:00
|
|
|
-I$(topsrcdir)/config \
|
|
|
|
$(NULL)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-28 13:33:14 -07:00
|
|
|
CXXFLAGS += $(TK_CFLAGS) $(MOZ_DBUS_CFLAGS) $(MOZ_DBUS_GLIB_CFLAGS)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-06-10 05:36:26 -07:00
|
|
|
ifdef MOZ_WIDGET_GTK
|
2008-09-26 17:17:28 -07:00
|
|
|
CXXFLAGS += $(MOZ_PANGO_CFLAGS)
|
|
|
|
endif
|
|
|
|
|
2012-04-03 12:53:07 -07:00
|
|
|
# Should version be optional or required ?
|
|
|
|
TOOLKIT_EM_VERSION=$(shell $(PERL) $(topsrcdir)/config/milestone.pl --topsrcdir=$(topsrcdir))
|
|
|
|
$(call warnIfEmpty,TOOLKIT_EM_VERSION)
|
|
|
|
|
|
|
|
# Valid if null: {warn,error}IfEmpty
|
2013-12-02 13:34:21 -08:00
|
|
|
DEFINES += -DTOOLKIT_EM_VERSION='"$(TOOLKIT_EM_VERSION)"'
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-12-02 13:34:21 -08:00
|
|
|
MOZ_SOURCE_STAMP ?= $(firstword $(shell hg -R $(topsrcdir) parent --template='{node|short}\n' 2>/dev/null))
|
2009-12-20 06:25:48 -08:00
|
|
|
ifdef MOZ_SOURCE_STAMP
|
2009-02-16 05:32:39 -08:00
|
|
|
|
2012-04-03 12:53:07 -07:00
|
|
|
INIARGS = --sourcestamp=$(MOZ_SOURCE_STAMP)
|
|
|
|
|
2013-02-15 14:00:12 -08:00
|
|
|
source_repo := $(call getSourceRepo)
|
2012-04-03 12:53:07 -07:00
|
|
|
|
|
|
|
# extra sanity check for old versions of hg, no showconfig support
|
2013-02-15 14:00:12 -08:00
|
|
|
ifneq (,$(filter http%,$(source_repo)))
|
|
|
|
INIARGS += --sourcerepo=$(source_repo)
|
2012-04-03 12:53:07 -07: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 05:55:07 -08:00
|
|
|
DEFINES += -DGRE_BUILDID=$(GRE_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)
|
2010-04-07 12:44:38 -07:00
|
|
|
|
2007-07-02 11:20:24 -07:00
|
|
|
platform.ini: FORCE
|
2012-04-03 12:53:07 -07:00
|
|
|
$(PYTHON) $(srcdir)/make-platformini.py --buildid=$(GRE_BUILDID) $(INIARGS) $(milestone_txt) > $@
|
2007-07-02 11:20:24 -07:00
|
|
|
|
2008-02-09 02:37:42 -08:00
|
|
|
GARBAGE += platform.ini
|
|
|
|
|
2007-07-02 11:20:24 -07:00
|
|
|
libs:: platform.ini
|
|
|
|
$(INSTALL) $^ $(DIST)/bin
|