2012-05-30 20:48:24 +04: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/.
|
2008-07-22 16:27:55 +04:00
|
|
|
|
2012-08-17 11:56:10 +04:00
|
|
|
DEPTH = @DEPTH@
|
2008-07-22 16:27:55 +04:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
2010-02-17 02:54:41 +03:00
|
|
|
ifndef .PYMAKE
|
|
|
|
ifeq (,$(MAKE_VERSION))
|
|
|
|
$(error GNU Make is required)
|
|
|
|
endif
|
|
|
|
ifeq (,$(filter-out 3.78 3.79,$(MAKE_VERSION)))
|
|
|
|
$(error GNU Make 3.80 or higher is required)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2009-01-30 16:03:36 +03:00
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
default::
|
|
|
|
|
2010-02-15 06:44:41 +03:00
|
|
|
ifdef COMPILE_ENVIRONMENT
|
2009-01-30 16:03:36 +03:00
|
|
|
include $(topsrcdir)/$(MOZ_BUILD_APP)/build.mk
|
2010-02-15 06:44:41 +03:00
|
|
|
endif
|
2009-01-30 16:03:36 +03:00
|
|
|
|
2008-07-22 16:27:55 +04:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
2010-01-25 06:34:40 +03:00
|
|
|
default alldep all:: $(topsrcdir)/configure config.status
|
|
|
|
|
|
|
|
$(topsrcdir)/configure: $(topsrcdir)/configure.in
|
|
|
|
@echo "STOP! configure.in has changed, and your configure is out of date."
|
|
|
|
@echo "Please rerun autoconf and configure."
|
|
|
|
@echo "To ignore this message, touch 'configure' in the source directory."
|
|
|
|
@exit 1
|
|
|
|
|
|
|
|
config.status: $(topsrcdir)/configure
|
|
|
|
@echo "STOP! configure has changed and needs to be run in this build directory."
|
|
|
|
@echo "Please rerun configure."
|
|
|
|
@echo "To ignore this message, touch 'config.status' in the build directory."
|
|
|
|
@exit 1
|
|
|
|
|
2010-09-29 06:24:57 +04:00
|
|
|
default export libs clean realclean distclean alldep \
|
|
|
|
maybe_clobber_profiledbuild uploadsymbols all:: $(SUBMAKEFILES)
|
2008-07-22 16:27:55 +04:00
|
|
|
$(MAKE) -C mozilla $@
|
|
|
|
|
2009-05-04 03:06:15 +04:00
|
|
|
ifdef ENABLE_TESTS
|
2010-09-29 06:24:57 +04:00
|
|
|
check mochitest reftest crashtest xpcshell-tests:: $(SUBMAKEFILES)
|
2010-09-26 05:57:00 +04:00
|
|
|
$(MAKE) -C mozilla $@
|
|
|
|
|
2010-09-29 06:24:57 +04:00
|
|
|
mochitest-% :: $(SUBMAKEFILES)
|
2010-03-04 15:46:16 +03:00
|
|
|
$(MAKE) -C mozilla $@
|
2010-08-10 23:59:18 +04:00
|
|
|
|
2012-04-26 13:35:53 +04:00
|
|
|
check-sync-dirs::
|
2011-08-30 06:26:00 +04:00
|
|
|
@$(PYTHON) $(topsrcdir)/mozilla/js/src/config/check-sync-dirs.py \
|
|
|
|
$(topsrcdir)/build $(topsrcdir)/mozilla/build
|
|
|
|
|
2012-04-26 13:35:53 +04:00
|
|
|
check:: check-sync-dirs
|
|
|
|
|
2010-08-10 23:59:18 +04:00
|
|
|
ifndef MOZ_THUNDERBIRD
|
2010-09-29 06:24:57 +04:00
|
|
|
package-tests:: $(SUBMAKEFILES)
|
2009-05-04 03:06:15 +04:00
|
|
|
$(MAKE) -C mozilla $@
|
|
|
|
endif
|
2010-10-04 08:45:28 +04:00
|
|
|
endif
|
2009-05-04 03:06:15 +04:00
|
|
|
|
2008-08-18 23:27:39 +04:00
|
|
|
# http://bugzilla.mozilla.org/show_bug.cgi?id=450485
|
2009-03-18 22:28:14 +03:00
|
|
|
MAKE_SYM_STORE_PATH=dist/bin
|
2008-10-30 03:50:32 +03:00
|
|
|
ifeq ($(OS_ARCH),Darwin)
|
|
|
|
ifdef UNIVERSAL_BINARY
|
|
|
|
MAKE_SYM_STORE_PATH=dist/universal
|
|
|
|
endif
|
|
|
|
endif
|
2010-03-03 22:08:27 +03:00
|
|
|
|
|
|
|
include $(topsrcdir)/mozilla/toolkit/mozapps/installer/package-name.mk
|
|
|
|
|
2009-03-18 22:28:14 +03:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
# PDB files don't get moved to dist, so we need to scan the whole objdir
|
|
|
|
MAKE_SYM_STORE_PATH=..
|
|
|
|
endif
|
2008-10-30 03:50:32 +03:00
|
|
|
|
2010-09-29 06:24:57 +04:00
|
|
|
buildsymbols :: $(SUBMAKEFILES)
|
2011-01-06 11:06:46 +03:00
|
|
|
$(MAKE) -C mozilla MAKE_SYM_STORE_PATH=$(MAKE_SYM_STORE_PATH) SYM_STORE_SOURCE_DIRS="$(topsrcdir)/mozilla/extensions/inspector $(topsrcdir)/ldap/sdks $(topsrcdir)/mozilla $(topsrcdir)" $@
|
2008-08-18 23:27:39 +04:00
|
|
|
|
2008-07-22 16:27:55 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2010-01-03 14:37:30 +03:00
|
|
|
|
2010-03-03 22:13:22 +03:00
|
|
|
# defined in (mozilla/.../)package-name.mk
|
2010-01-03 14:37:30 +03:00
|
|
|
export MOZ_SOURCE_STAMP
|
2010-01-20 06:10:55 +03:00
|
|
|
|
2013-01-12 02:12:44 +04:00
|
|
|
DIST_GARBAGE = config.cache config.log config.status* config-defs.h \
|
2012-11-11 04:34:20 +04:00
|
|
|
config/autoconf.mk \
|
2010-04-19 12:51:51 +04:00
|
|
|
unallmakefiles comm-config.h \
|
2010-01-20 06:10:55 +03:00
|
|
|
$(topsrcdir)/.mozconfig.mk $(topsrcdir)/.mozconfig.out
|
|
|
|
|
|
|
|
distclean::
|
|
|
|
cat unallmakefiles | $(XARGS) rm -f
|
|
|
|
rm -f $(DIST_GARBAGE)
|