2012-04-02 21:06:06 +04:00
|
|
|
# -*- Makefile -*-
|
1998-08-20 00:42:14 +04:00
|
|
|
#
|
2012-05-21 15:12:37 +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/.
|
1998-08-20 00:42:14 +04:00
|
|
|
|
|
|
|
# IMPORTANT: Disable NSBUILDROOT for this directory only, otherwise we have
|
1999-09-10 13:22:43 +04:00
|
|
|
# a recursive rule for finding nsinstall and the Perl scripts.
|
1998-08-20 00:42:14 +04:00
|
|
|
ifdef NSBUILDROOT
|
|
|
|
override NSBUILDROOT :=
|
|
|
|
endif
|
|
|
|
|
2000-05-15 04:26:47 +04:00
|
|
|
include $(topsrcdir)/config/config.mk
|
2002-04-25 06:52:44 +04:00
|
|
|
|
2014-07-29 04:01:58 +04:00
|
|
|
# L10n jobs are doing make -C config manually before anything else,
|
|
|
|
# and need nsinstall to be built as a consequence.
|
2015-03-10 09:16:51 +03:00
|
|
|
ifdef COMPILE_ENVIRONMENT
|
2014-07-29 04:01:58 +04:00
|
|
|
export:: host
|
|
|
|
|
2012-08-29 10:55:57 +04:00
|
|
|
ifneq (WINNT,$(HOST_OS_ARCH))
|
|
|
|
# Ensure nsinstall is atomically created
|
|
|
|
nsinstall$(HOST_BIN_SUFFIX): $(HOST_PROGRAM)
|
|
|
|
cp $^ $@.tmp
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
2014-01-14 02:38:40 +04:00
|
|
|
NSINSTALL_EXECUTABLES := nsinstall$(HOST_BIN_SUFFIX)
|
2012-08-29 10:55:57 +04:00
|
|
|
NSINSTALL_DEST := $(DIST)/bin
|
2014-07-25 02:14:40 +04:00
|
|
|
NSINSTALL_TARGET := host
|
2012-08-29 10:55:57 +04:00
|
|
|
INSTALL_TARGETS += NSINSTALL
|
|
|
|
endif
|
2013-11-07 05:37:45 +04:00
|
|
|
endif
|
2012-08-29 10:55:57 +04:00
|
|
|
|
1998-08-20 00:42:14 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
FORCE:
|
|
|
|
|
2014-02-11 05:37:47 +04:00
|
|
|
ifndef JS_STANDALONE
|
2014-01-14 02:38:40 +04:00
|
|
|
check-preqs += check-jar-mn
|
|
|
|
endif
|
2008-06-13 18:41:43 +04:00
|
|
|
|
2012-04-04 00:08:16 +04:00
|
|
|
check:: $(check-preqs)
|
|
|
|
|
2008-06-13 18:41:43 +04:00
|
|
|
check-jar-mn::
|
2009-05-26 20:40:26 +04:00
|
|
|
$(MAKE) -C tests/src-simple check-jar
|
|
|
|
$(MAKE) -C tests/src-simple check-flat
|
|
|
|
$(MAKE) -C tests/src-simple check-flat USE_EXTENSION_MANIFEST=1
|
2014-02-11 02:57:01 +04:00
|
|
|
ifneq (,$(filter-out WINNT,$(OS_ARCH)))
|
2009-05-26 20:40:26 +04:00
|
|
|
$(MAKE) -C tests/src-simple check-symlink
|
2008-06-13 21:27:42 +04:00
|
|
|
endif
|