xulrunner/stub/Makefile.in

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xulrunner/stub/Makefile.in	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,33 @@
     1.4 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.6 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.7 +
     1.8 +# Don't create a dependency on mozglue
     1.9 +MOZ_GLUE_LDFLAGS =
    1.10 +
    1.11 +LIBS = \
    1.12 +  $(XPCOM_STANDALONE_STATICRUNTIME_GLUE_LDOPTS) \
    1.13 +  $(NULL)
    1.14 +
    1.15 +# Need to link with CoreFoundation on Mac
    1.16 +ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
    1.17 +LIBS            += \
    1.18 +		$(TK_LIBS) \
    1.19 +		$(NULL)
    1.20 +endif
    1.21 +
    1.22 +ifndef MOZ_WINCONSOLE
    1.23 +ifdef MOZ_DEBUG
    1.24 +MOZ_WINCONSOLE = 1
    1.25 +else
    1.26 +MOZ_WINCONSOLE = 0
    1.27 +endif
    1.28 +endif
    1.29 +
    1.30 +include $(topsrcdir)/config/config.mk
    1.31 +
    1.32 +include $(topsrcdir)/config/rules.mk
    1.33 +
    1.34 +ifeq ($(OS_ARCH),WINNT)
    1.35 +OS_LIBS += $(call EXPAND_LIBNAME,shell32)
    1.36 +endif

mercurial