toolkit/components/maintenanceservice/Makefile.in

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 # This Source Code Form is subject to the terms of the Mozilla Public
     2 # License, v. 2.0. If a copy of the MPL was not distributed with this
     3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     5 DIST_PROGRAM = maintenanceservice$(BIN_SUFFIX)
     7 # Don't link the maintenanceservice against mozglue.dll. See bug 687139 and
     8 # bug 725876
     9 MOZ_GLUE_LDFLAGS =
    10 MOZ_GLUE_PROGRAM_LDFLAGS =
    12 ifeq ($(OS_ARCH),WINNT)
    13 LIBS += $(call EXPAND_LIBNAME_PATH,updatecommon-standalone,../../mozapps/update/common-standalone)
    14 else
    15 LIBS += $(call EXPAND_LIBNAME_PATH,updatecommon,../../mozapps/update/common)
    16 endif
    18 OS_LIBS += $(call EXPAND_LIBNAME,comctl32 ws2_32 shell32)
    20 ifndef MOZ_WINCONSOLE
    21 ifdef MOZ_DEBUG
    22 MOZ_WINCONSOLE = 1
    23 else
    24 MOZ_WINCONSOLE = 0
    25 endif
    26 endif
    28 include $(topsrcdir)/config/rules.mk

mercurial