2012-04-02 13:06:06 -04:00
|
|
|
# -*- Makefile -*-
|
1998-08-19 20:42:14 +00:00
|
|
|
#
|
2012-05-21 12:12:37 +01: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-19 20:42:14 +00:00
|
|
|
|
|
|
|
# IMPORTANT: Disable NSBUILDROOT for this directory only, otherwise we have
|
1999-09-10 09:22:43 +00:00
|
|
|
# a recursive rule for finding nsinstall and the Perl scripts.
|
1998-08-19 20:42:14 +00:00
|
|
|
ifdef NSBUILDROOT
|
|
|
|
override NSBUILDROOT :=
|
|
|
|
endif
|
|
|
|
|
2000-05-15 00:26:47 +00:00
|
|
|
include $(topsrcdir)/config/config.mk
|
2002-04-25 02:52:44 +00:00
|
|
|
|
2014-07-29 09:01:58 +09:00
|
|
|
# L10n jobs are doing make -C config manually before anything else,
|
|
|
|
# and need nsinstall to be built as a consequence.
|
2015-03-10 15:16:51 +09:00
|
|
|
ifdef COMPILE_ENVIRONMENT
|
2014-07-29 09:01:58 +09:00
|
|
|
export:: host
|
|
|
|
|
2012-08-29 08:55:57 +02:00
|
|
|
ifneq (WINNT,$(HOST_OS_ARCH))
|
|
|
|
# Ensure nsinstall is atomically created
|
|
|
|
nsinstall$(HOST_BIN_SUFFIX): $(HOST_PROGRAM)
|
|
|
|
cp $^ $@.tmp
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
2014-01-14 07:38:40 +09:00
|
|
|
NSINSTALL_EXECUTABLES := nsinstall$(HOST_BIN_SUFFIX)
|
2012-08-29 08:55:57 +02:00
|
|
|
NSINSTALL_DEST := $(DIST)/bin
|
2014-07-25 07:14:40 +09:00
|
|
|
NSINSTALL_TARGET := host
|
2012-08-29 08:55:57 +02:00
|
|
|
INSTALL_TARGETS += NSINSTALL
|
|
|
|
endif
|
2013-11-07 10:37:45 +09:00
|
|
|
endif
|
2012-08-29 08:55:57 +02:00
|
|
|
|
1998-08-19 20:42:14 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2004-12-16 05:13:46 +00:00
|
|
|
ifdef WRAP_SYSTEM_INCLUDES
|
2013-03-10 20:03:28 -07:00
|
|
|
export-preqs = \
|
|
|
|
$(call mkdir_deps,system_wrappers) \
|
|
|
|
$(NULL)
|
2012-04-03 16:08:16 -04:00
|
|
|
|
2013-03-10 20:03:28 -07:00
|
|
|
export:: $(export-preqs)
|
2013-11-09 10:35:44 +09:00
|
|
|
$(PYTHON) -m mozbuild.action.preprocessor $(DEFINES) $(ACDEFINES) \
|
2006-11-07 03:21:20 +00:00
|
|
|
-DMOZ_TREE_CAIRO=$(MOZ_TREE_CAIRO) \
|
2010-11-30 14:38:02 +08:00
|
|
|
-DMOZ_TREE_PIXMAN=$(MOZ_TREE_PIXMAN) \
|
2016-02-01 10:49:34 -05:00
|
|
|
-DMOZ_SYSTEM_HUNSPELL=$(MOZ_SYSTEM_HUNSPELL) \
|
|
|
|
-DMOZ_SYSTEM_BZ2=$(MOZ_SYSTEM_BZ2) \
|
|
|
|
-DMOZ_SYSTEM_ZLIB=$(MOZ_SYSTEM_ZLIB) \
|
|
|
|
-DMOZ_SYSTEM_PNG=$(MOZ_SYSTEM_PNG) \
|
|
|
|
-DMOZ_SYSTEM_JPEG=$(MOZ_SYSTEM_JPEG) \
|
|
|
|
-DMOZ_SYSTEM_LIBEVENT=$(MOZ_SYSTEM_LIBEVENT) \
|
|
|
|
-DMOZ_SYSTEM_LIBVPX=$(MOZ_SYSTEM_LIBVPX) \
|
|
|
|
-DMOZ_SYSTEM_ICU=$(MOZ_SYSTEM_ICU) \
|
2016-06-15 14:44:33 +09:00
|
|
|
$(srcdir)/system-headers $(srcdir)/stl-headers | $(PERL) $(topsrcdir)/nsprpub/config/make-system-wrappers.pl system_wrappers
|
2009-06-24 23:31:27 +02:00
|
|
|
$(INSTALL) system_wrappers $(DIST)
|
2008-02-09 02:37:42 -08:00
|
|
|
|
|
|
|
GARBAGE_DIRS += system_wrappers
|
2004-12-16 05:13:46 +00:00
|
|
|
endif
|
|
|
|
|
2010-04-02 12:58:11 -05:00
|
|
|
ifdef WRAP_STL_INCLUDES
|
2010-05-01 11:46:25 +02:00
|
|
|
ifdef GNU_CXX
|
2010-04-02 12:58:11 -05:00
|
|
|
stl_compiler = gcc
|
|
|
|
else
|
2010-05-01 11:46:25 +02:00
|
|
|
ifdef _MSC_VER
|
2010-04-02 12:58:11 -05:00
|
|
|
stl_compiler = msvc
|
|
|
|
endif
|
|
|
|
endif
|
2010-05-01 11:46:25 +02:00
|
|
|
endif
|
2010-04-02 12:58:11 -05:00
|
|
|
|
|
|
|
ifdef stl_compiler
|
2010-06-02 12:56:35 -05:00
|
|
|
STL_WRAPPERS_SENTINEL = $(DIST)/stl_wrappers/sentinel
|
|
|
|
|
|
|
|
$(STL_WRAPPERS_SENTINEL): $(srcdir)/make-stl-wrappers.py $(srcdir)/$(stl_compiler)-stl-wrapper.template.h $(srcdir)/stl-headers $(GLOBAL_DEPS)
|
2010-04-02 12:58:11 -05:00
|
|
|
$(PYTHON) $(srcdir)/make-stl-wrappers.py stl_wrappers $(stl_compiler) $(srcdir)/$(stl_compiler)-stl-wrapper.template.h $(srcdir)/stl-headers
|
2013-09-06 09:22:39 +09:00
|
|
|
$(PYTHON) $(srcdir)/nsinstall.py -t stl_wrappers $(DIST)
|
2010-06-02 12:56:35 -05:00
|
|
|
touch $(STL_WRAPPERS_SENTINEL)
|
2010-04-02 12:58:11 -05:00
|
|
|
|
2010-06-02 12:56:35 -05:00
|
|
|
export:: $(STL_WRAPPERS_SENTINEL)
|
2010-04-02 12:58:11 -05:00
|
|
|
|
2010-06-02 12:56:35 -05:00
|
|
|
GARBAGE += $(STL_WRAPPERS_SENTINEL)
|
2010-04-02 12:58:11 -05:00
|
|
|
GARBAGE_DIRS += stl_wrappers
|
|
|
|
endif
|
|
|
|
|
2007-07-02 11:20:24 -07:00
|
|
|
GARBAGE += \
|
2014-11-07 10:16:42 +09:00
|
|
|
$(FINAL_LINK_COMPS) $(FINAL_LINK_LIBS) $(FINAL_LINK_COMP_NAMES) $(srcdir)/*.pyc *.pyc
|
2000-10-20 05:21:40 +00:00
|
|
|
|
1998-08-19 20:42:14 +00:00
|
|
|
FORCE:
|
|
|
|
|
2014-02-11 10:37:47 +09:00
|
|
|
ifndef JS_STANDALONE
|
2014-01-14 07:38:40 +09:00
|
|
|
check-preqs += check-jar-mn
|
|
|
|
endif
|
|
|
|
check-preqs += check-makefiles
|
2008-06-13 16:41:43 +02:00
|
|
|
|
2012-04-03 16:08:16 -04:00
|
|
|
check:: $(check-preqs)
|
|
|
|
|
2008-06-13 16:41:43 +02:00
|
|
|
check-jar-mn::
|
2009-05-26 18:40:26 +02: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-10 17:57:01 -05:00
|
|
|
ifneq (,$(filter-out WINNT,$(OS_ARCH)))
|
2009-05-26 18:40:26 +02:00
|
|
|
$(MAKE) -C tests/src-simple check-symlink
|
2008-06-13 19:27:42 +02:00
|
|
|
endif
|
2012-04-02 13:06:06 -04:00
|
|
|
|
|
|
|
check-makefiles:
|
|
|
|
$(MAKE) -C tests/makefiles/autodeps check
|