1999-04-13 04:15:34 +00:00
|
|
|
#
|
2012-05-21 11:12:37 +00: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/.
|
1999-04-13 04:15:34 +00:00
|
|
|
|
2013-02-15 22:00:12 +00:00
|
|
|
USE_RCS_MK := 1
|
|
|
|
include $(topsrcdir)/config/makefiles/makeutils.mk
|
1999-04-13 04:15:34 +00:00
|
|
|
|
2011-11-22 07:05:59 +00:00
|
|
|
ifdef MOZ_APP_BASENAME
|
2012-08-07 14:53:17 +00:00
|
|
|
DIST_FILES = $(srcdir)/application.ini
|
2011-11-22 07:05:59 +00:00
|
|
|
|
2012-02-24 21:29:42 +00:00
|
|
|
ifneq (android,$(MOZ_WIDGET_TOOLKIT))
|
2012-03-22 07:01:03 +00:00
|
|
|
ifdef MOZ_UPDATER
|
2012-02-24 21:29:42 +00:00
|
|
|
DIST_FILES += update-settings.ini
|
|
|
|
endif
|
2012-03-22 07:01:03 +00:00
|
|
|
endif
|
2012-02-24 21:29:42 +00:00
|
|
|
|
2011-11-22 07:05:59 +00:00
|
|
|
ifdef LIBXUL_SDK
|
2011-11-22 07:05:59 +00:00
|
|
|
APP_INI_DEPS = $(LIBXUL_DIST)/bin/platform.ini
|
2011-11-22 07:05:59 +00:00
|
|
|
else
|
2011-11-22 07:05:59 +00:00
|
|
|
APP_INI_DEPS = $(topsrcdir)/config/milestone.txt
|
2011-11-22 07:05:59 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
APP_BUILDID := $(shell cat $(DEPTH)/config/buildid)
|
2011-11-22 07:05:59 +00:00
|
|
|
APP_INI_DEPS += $(DEPTH)/config/buildid
|
2011-11-22 07:05:59 +00:00
|
|
|
|
2013-11-27 13:55:07 +00:00
|
|
|
DEFINES += -DAPP_BUILDID=$(APP_BUILDID)
|
2011-11-22 07:05:59 +00:00
|
|
|
|
2011-11-22 07:05:59 +00:00
|
|
|
APP_INI_DEPS += $(DEPTH)/config/autoconf.mk
|
2011-11-22 07:05:59 +00:00
|
|
|
|
2013-12-02 21:34:21 +00:00
|
|
|
MOZ_SOURCE_STAMP := $(firstword $(shell cd $(topsrcdir)/$(MOZ_BUILD_APP)/.. && hg parent --template='{node|short}\n' 2>/dev/null))
|
2011-11-22 07:05:59 +00:00
|
|
|
ifdef MOZ_SOURCE_STAMP
|
2013-12-02 21:34:21 +00:00
|
|
|
DEFINES += -DMOZ_SOURCE_STAMP='$(MOZ_SOURCE_STAMP)'
|
2011-11-22 07:05:59 +00:00
|
|
|
endif
|
|
|
|
|
2014-08-08 01:29:39 +00:00
|
|
|
ifdef MOZILLA_OFFICIAL
|
2013-02-15 22:00:12 +00:00
|
|
|
source_repo ?= $(call getSourceRepo,$(topsrcdir)/$(MOZ_BUILD_APP)/..)
|
|
|
|
ifneq (,$(source_repo))
|
2013-12-02 21:34:21 +00:00
|
|
|
DEFINES += -DMOZ_SOURCE_REPO='$(source_repo)'
|
2011-11-22 07:05:59 +00:00
|
|
|
endif
|
2014-08-08 01:29:39 +00:00
|
|
|
endif
|
2011-11-22 07:05:59 +00:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2012-12-02 05:25:16 +00:00
|
|
|
# Put a useful .gdbinit in the bin directory, to be picked up automatically
|
|
|
|
# by GDB when we debug executables there.
|
2012-12-11 21:05:53 +00:00
|
|
|
# NOTE: Keep .gdbinit in the topsrcdir for people who run gdb from the topsrcdir.
|
|
|
|
GDBINIT_FILES := $(topsrcdir)/.gdbinit
|
2014-03-13 20:37:20 +00:00
|
|
|
GDBINIT_OBJDIR_FILES = $(topsrcdir)/.gdbinit
|
2012-12-02 05:25:16 +00:00
|
|
|
GDBINIT_DEST = $(FINAL_TARGET)
|
2014-03-13 20:37:20 +00:00
|
|
|
|
|
|
|
# needs to be absolute to be distinct from $(topsrcdir)/.gdbinit
|
|
|
|
GDBINIT_OBJDIR_DEST = $(abspath $(DEPTH))
|
|
|
|
INSTALL_TARGETS += GDBINIT GDBINIT_OBJDIR
|
2012-12-02 05:25:16 +00:00
|
|
|
|
2014-01-21 03:47:05 +00:00
|
|
|
# Put a .lldbinit in the bin directory and the objdir, to be picked up
|
|
|
|
# automatically by LLDB when we debug executables using either of those two
|
|
|
|
# directories as the current working directory. The .lldbinit file will
|
|
|
|
# load $(topsrcdir)/.lldbinit, which is where the actual debugging commands are.
|
|
|
|
LLDBINIT_OBJDIR := .lldbinit.in
|
|
|
|
LLDBINIT_OBJDIR_PATH = $(DEPTH)
|
|
|
|
LLDBINIT_OBJDIR_FLAGS += -Dtopsrcdir=$(abspath $(topsrcdir))
|
|
|
|
PP_TARGETS += LLDBINIT_OBJDIR
|
|
|
|
|
|
|
|
LLDBINIT_FINAL_TARGET_FILES := $(DEPTH)/.lldbinit
|
|
|
|
LLDBINIT_FINAL_TARGET_DEST = $(FINAL_TARGET)
|
|
|
|
INSTALL_TARGETS += LLDBINIT_FINAL_TARGET
|
2013-11-22 13:32:54 +00:00
|
|
|
|
1999-04-13 04:15:34 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2012-08-04 08:38:41 +00:00
|
|
|
TARGET_DEPTH = ..
|
2009-02-12 13:49:53 +00:00
|
|
|
include $(srcdir)/automation-build.mk
|
2009-01-12 17:15:12 +00:00
|
|
|
|
2011-11-22 07:05:59 +00:00
|
|
|
ifdef MOZ_APP_BASENAME
|
2012-08-08 16:57:22 +00:00
|
|
|
$(FINAL_TARGET)/application.ini: $(APP_INI_DEPS)
|
|
|
|
|
2011-11-22 07:05:59 +00:00
|
|
|
ifdef MOZ_APP_STATIC_INI
|
2012-08-07 14:53:17 +00:00
|
|
|
application.ini.h: appini_header.py $(FINAL_TARGET)/application.ini
|
2011-11-22 07:05:59 +00:00
|
|
|
$(PYTHON) $^ > $@
|
|
|
|
export:: application.ini.h
|
|
|
|
GARBAGE += application.ini.h
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-05-22 03:29:55 +00:00
|
|
|
libs:: automation.py
|
2008-05-13 21:17:33 +00:00
|
|
|
|
2011-07-23 09:59:19 +00:00
|
|
|
ifdef MOZ_VALGRIND
|
2011-02-08 03:21:52 +00:00
|
|
|
_VALGRIND_DIR = $(DEPTH)/_valgrind
|
|
|
|
GARBAGE_DIRS += $(_VALGRIND_DIR)
|
|
|
|
|
|
|
|
_VALGRIND_FILES = \
|
2012-09-26 08:07:13 +00:00
|
|
|
$(topsrcdir)/build/valgrind/cross-architecture.sup \
|
2012-09-25 14:05:15 +00:00
|
|
|
$(topsrcdir)/build/valgrind/i386-redhat-linux-gnu.sup \
|
2011-02-08 03:21:52 +00:00
|
|
|
$(topsrcdir)/build/valgrind/x86_64-redhat-linux-gnu.sup \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
libs:: $(_VALGRIND_FILES)
|
|
|
|
$(INSTALL) $^ $(_VALGRIND_DIR)
|
2011-07-23 09:59:19 +00:00
|
|
|
endif
|
2011-02-08 03:21:52 +00:00
|
|
|
|
2008-01-10 09:12:44 +00:00
|
|
|
ifdef ENABLE_TESTS
|
2010-06-25 21:47:19 +00:00
|
|
|
libs:: $(topsrcdir)/tools/rb/fix_stack_using_bpsyms.py
|
|
|
|
$(INSTALL) $< $(DIST)/bin
|
|
|
|
|
2009-08-10 22:52:29 +00:00
|
|
|
ifeq ($(OS_ARCH),Darwin)
|
2010-02-21 21:03:20 +00:00
|
|
|
libs:: $(topsrcdir)/tools/rb/fix_macosx_stack.py
|
|
|
|
$(INSTALL) $< $(DIST)/bin
|
2009-08-10 22:52:29 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),Linux)
|
|
|
|
libs:: $(topsrcdir)/tools/rb/fix-linux-stack.pl
|
|
|
|
$(INSTALL) $< $(DIST)/bin
|
|
|
|
endif
|
2010-04-19 08:17:51 +00:00
|
|
|
|
2010-08-18 17:53:18 +00:00
|
|
|
GARBAGE += $(srcdir)/automationutils.pyc
|
2012-08-04 06:47:28 +00:00
|
|
|
|
2009-09-29 12:31:50 +00:00
|
|
|
endif # ENABLE_TESTS
|