mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
47 lines
1.1 KiB
Makefile
47 lines
1.1 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/.
|
|
|
|
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 =
|
|
STL_FLAGS=
|
|
|
|
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
|
|
|
|
USE_STATIC_LIBS = 1
|
|
RCINCLUDE = maintenanceservice.rc
|
|
|
|
OS_LIBS += $(call EXPAND_LIBNAME,comctl32 ws2_32 shell32)
|
|
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
|
|
|
|
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)
|