mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
68 lines
1.5 KiB
Makefile
68 lines
1.5 KiB
Makefile
# 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 = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
CPPSRCS = \
|
|
maintenanceservice.cpp \
|
|
serviceinstall.cpp \
|
|
workmonitor.cpp \
|
|
certificatecheck.cpp \
|
|
servicebase.cpp \
|
|
registrycertificates.cpp \
|
|
$(NULL)
|
|
|
|
# For debugging purposes only
|
|
#DEFINES += -DDISABLE_UPDATER_AUTHENTICODE_CHECK
|
|
|
|
PROGRAM = maintenanceservice$(BIN_SUFFIX)
|
|
DIST_PROGRAM = maintenanceservice$(BIN_SUFFIX)
|
|
|
|
# Don't link the maintenanceservice against mozglue.dll. See bug 687139 and
|
|
# bug 725876
|
|
MOZ_GLUE_LDFLAGS =
|
|
MOZ_GLUE_PROGRAM_LDFLAGS =
|
|
|
|
LIBS += \
|
|
../../mozapps/update/common/$(LIB_PREFIX)updatecommon.$(LIB_SUFFIX) \
|
|
$(NULL)
|
|
|
|
USE_STATIC_LIBS = 1
|
|
HAVE_PROGRESSUI = 1
|
|
RCINCLUDE = maintenanceservice.rc
|
|
|
|
OS_LIBS += $(call EXPAND_LIBNAME,comctl32 ws2_32 shell32)
|
|
DEFINES += -DUNICODE -D_UNICODE
|
|
ifndef GNU_CC
|
|
RCFLAGS += -I$(srcdir)
|
|
else
|
|
RCFLAGS += --include-dir $(srcdir)
|
|
endif
|
|
|
|
ifndef MOZ_WINCONSOLE
|
|
ifdef MOZ_DEBUG
|
|
MOZ_WINCONSOLE = 1
|
|
else
|
|
MOZ_WINCONSOLE = 0
|
|
endif
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
DEFINES += -DNS_NO_XPCOM
|
|
|
|
ifdef _MSC_VER
|
|
WIN32_EXE_LDFLAGS += -ENTRY:wmainCRTStartup
|
|
endif
|
|
|
|
# Pick up nsWindowsRestart.cpp
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/toolkit/xre \
|
|
-I$(topsrcdir)/toolkit/mozapps/update/common \
|
|
$(NULL)
|