https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 34685fe573b509ae0df0073f31d3d38a0e2a6eb6 authored by seabld on 02 August 2012, 05:34:34 UTC
Added tag SEAMONKEY_2_12b3_RELEASE for changeset FIREFOX_15_0b3_BUILD1. CLOSED TREE a=release
Tip revision: 34685fe
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/.

DEPTH		= ..
topsrcdir	= @top_srcdir@
srcdir		= @srcdir@
VPATH		= @srcdir@

include $(DEPTH)/config/autoconf.mk

# For sanity's sake, we compile nsinstall without the wrapped system
# headers, so that we can use it to set up the wrapped system headers.
VISIBILITY_FLAGS =

HOST_PROGRAM	= nsinstall$(HOST_BIN_SUFFIX)

ifeq (WINNT,$(HOST_OS_ARCH))
HOST_CSRCS      = nsinstall_win.c
else
HOST_CSRCS	= nsinstall.c pathsub.c
endif

TARGETS		= $(HOST_PROGRAM) $(SIMPLE_PROGRAMS)

# 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

ifndef COMPILER_DEPEND
ifndef MOZ_NATIVE_MAKEDEPEND
DIRS		+= mkdepend
endif
endif

include $(topsrcdir)/config/config.mk

# Do not install util programs
NO_INSTALL=1

include $(topsrcdir)/config/rules.mk

HOST_CFLAGS += -DUNICODE -D_UNICODE

export:: $(TARGETS)
ifdef HOST_PROGRAM
	$(INSTALL) $(HOST_PROGRAM) $(DIST)/bin
endif

ifdef WRAP_SYSTEM_INCLUDES
export:: \
  $(call mkdir_deps,system_wrappers_js) \
  $(NULL)
	$(PYTHON) $(srcdir)/Preprocessor.py $(DEFINES) $(ACDEFINES) \
		$(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:

ifndef COMPILER_DEPEND
ifdef MKDEPEND_DIR
clean clobber realclean clobber_all::
	cd $(MKDEPEND_DIR); $(MAKE) $@
endif
endif
back to top