2012-05-21 04:12:37 -07: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/.
|
2009-07-10 12:58:14 -07:00
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2009-07-10 12:58:14 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
2012-04-10 10:45:15 -07:00
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
2009-07-10 12:58:14 -07:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2012-05-03 03:22:33 -07:00
|
|
|
ifneq ($(dir $(PROGRAM)),./)
|
|
|
|
GENERATED_DIRS = $(dir $(PROGRAM))
|
|
|
|
endif
|
2011-10-27 05:53:20 -07:00
|
|
|
|
2012-05-08 14:36:07 -07:00
|
|
|
ifeq (android,$(MOZ_WIDGET_TOOLKIT))
|
2011-08-29 10:21:22 -07:00
|
|
|
WRAP_LDFLAGS =
|
2010-10-15 11:28:07 -07:00
|
|
|
else
|
2009-07-10 12:58:14 -07:00
|
|
|
LIBS += \
|
|
|
|
$(XPCOM_LIBS) \
|
|
|
|
$(NSPR_LIBS) \
|
|
|
|
$(NULL)
|
2010-10-15 11:28:07 -07:00
|
|
|
endif
|
2009-07-10 12:58:14 -07:00
|
|
|
|
2013-03-08 11:43:32 -08:00
|
|
|
ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
|
|
|
|
LIBS += \
|
|
|
|
-lbinder \
|
|
|
|
-lutils \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2009-07-10 12:58:14 -07:00
|
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/toolkit/xre
|
2010-11-09 18:02:09 -08:00
|
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/xpcom/base
|
2009-07-10 12:58:14 -07:00
|
|
|
|
|
|
|
ifndef MOZ_WINCONSOLE
|
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
MOZ_WINCONSOLE = 1
|
|
|
|
else
|
|
|
|
MOZ_WINCONSOLE = 0
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# This switches $(INSTALL) to copy mode, like $(SYSINSTALL), so things that
|
|
|
|
# shouldn't get 755 perms need $(IFLAGS1) for either way of calling nsinstall.
|
|
|
|
NSDISTMODE = copy
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
|
|
|
2012-05-08 14:36:07 -07:00
|
|
|
ifeq (android,$(MOZ_WIDGET_TOOLKIT))
|
2011-10-27 05:53:20 -07:00
|
|
|
FINAL_TARGET = $(DIST)/bin/lib
|
|
|
|
endif
|
|
|
|
|
2009-07-10 12:58:14 -07:00
|
|
|
ifdef _MSC_VER
|
|
|
|
# Always enter a Windows program through wmain, whether or not we're
|
|
|
|
# a console application.
|
|
|
|
WIN32_EXE_LDFLAGS += -ENTRY:wmainCRTStartup
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2012-05-24 12:13:18 -07:00
|
|
|
LDFLAGS += $(MOZ_ALLOW_HEAP_EXECUTE_FLAGS)
|
|
|
|
|
2012-04-10 10:45:15 -07:00
|
|
|
ifeq ($(OS_ARCH),WINNT) #{
|
2013-05-07 01:16:43 -07:00
|
|
|
EXTRA_DEPS += $(PROGRAM).manifest
|
2009-07-10 12:58:14 -07:00
|
|
|
#
|
|
|
|
# Control the default heap size.
|
|
|
|
# This is the heap returned by GetProcessHeap().
|
|
|
|
# As we use the CRT heap, the default size is too large and wastes VM.
|
|
|
|
#
|
|
|
|
# The default heap size is 1MB on Win32.
|
|
|
|
# The heap will grow if need be.
|
|
|
|
#
|
|
|
|
# Set it to 256k. See bug 127069.
|
|
|
|
#
|
2012-04-10 10:45:15 -07:00
|
|
|
ifndef GNU_CC #{
|
2009-07-10 12:58:14 -07:00
|
|
|
LDFLAGS += /HEAP:0x40000
|
2012-04-10 10:45:15 -07:00
|
|
|
endif #}
|
|
|
|
endif #}
|
2010-06-11 05:28:03 -07:00
|
|
|
|
2012-04-10 10:45:15 -07:00
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) #{
|
2010-06-11 05:28:03 -07:00
|
|
|
|
|
|
|
libs::
|
|
|
|
$(NSINSTALL) -D $(DIST)/bin/$(PROGRAM).app
|
|
|
|
rsync -a -C --exclude "*.in" $(srcdir)/macbuild/Contents $(DIST)/bin/$(PROGRAM).app
|
|
|
|
sed -e "s/%PROGRAM%/$(PROGRAM)/" $(srcdir)/macbuild/Contents/Info.plist.in > $(DIST)/bin/$(PROGRAM).app/Contents/Info.plist
|
|
|
|
sed -e "s/%APP_NAME%/$(MOZ_APP_DISPLAYNAME)/" $(srcdir)/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in | \
|
|
|
|
iconv -f UTF-8 -t UTF-16 > $(DIST)/bin/$(PROGRAM).app/Contents/Resources/English.lproj/InfoPlist.strings
|
|
|
|
$(NSINSTALL) -D $(DIST)/bin/$(PROGRAM).app/Contents/MacOS
|
|
|
|
$(NSINSTALL) $(PROGRAM) $(DIST)/bin/$(PROGRAM).app/Contents/MacOS
|
2012-04-10 10:45:15 -07:00
|
|
|
$(RM) $(DIST)/bin/$(PROGRAM)
|
|
|
|
endif #}
|