mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
29 lines
786 B
Makefile
29 lines
786 B
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/.
|
|
|
|
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 =
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
LIBS += $(call EXPAND_LIBNAME_PATH,updatecommon-standalone,../../mozapps/update/common-standalone)
|
|
else
|
|
LIBS += $(call EXPAND_LIBNAME_PATH,updatecommon,../../mozapps/update/common)
|
|
endif
|
|
|
|
OS_LIBS += $(call EXPAND_LIBNAME,comctl32 ws2_32 shell32)
|
|
|
|
ifndef MOZ_WINCONSOLE
|
|
ifdef MOZ_DEBUG
|
|
MOZ_WINCONSOLE = 1
|
|
else
|
|
MOZ_WINCONSOLE = 0
|
|
endif
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|