https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2269d75248359d66d5bcd3b4e3b775f46ca599c6 authored by Ryan VanderMeulen on 28 April 2014, 16:15:22 UTC
Backed out 2 changesets (bug 843265, bug 969392) because they're disabled on b2g28 anyway.
Tip revision: 2269d75
Makefile.in
#
# 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/.

# IMPORTANT: Disable NSBUILDROOT for this directory only, otherwise we have
# a recursive rule for finding nsinstall and the Perl scripts.
ifdef NSBUILDROOT
override NSBUILDROOT :=
endif

ifdef GNU_CC
MODULE_OPTIMIZE_FLAGS = -O3
endif

include $(topsrcdir)/config/config.mk

ifneq (WINNT,$(HOST_OS_ARCH))
# Ensure nsinstall is atomically created
nsinstall$(HOST_BIN_SUFFIX): $(HOST_PROGRAM)
	cp $^ $@.tmp
	mv $@.tmp $@

NSINSTALL_FILES := nsinstall$(HOST_BIN_SUFFIX)
NSINSTALL_DEST := $(DIST)/bin
NSINSTALL_TARGET := export
INSTALL_TARGETS += NSINSTALL
endif

include $(topsrcdir)/config/rules.mk

HOST_CFLAGS += -DUNICODE -D_UNICODE

ifdef WRAP_SYSTEM_INCLUDES
export:: \
  $(call mkdir_deps,system_wrappers_js) \
  $(NULL)
	$(PYTHON) -m mozbuild.action.preprocessor $(DEFINES) $(ACDEFINES) \
		-DMOZ_NATIVE_ICU=$(MOZ_NATIVE_ICU) \
		$(srcdir)/system-headers | $(PERL) $(srcdir)/make-system-wrappers.pl system_wrappers_js
	$(INSTALL) system_wrappers_js $(DIST)

GARBAGE_DIRS += system_wrappers_js
endif

GARBAGE += $(srcdir)/*.pyc *.pyc

FORCE:
back to top