|
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/. |
|
4 |
|
5 DIST_PROGRAM = maintenanceservice$(BIN_SUFFIX) |
|
6 |
|
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 = |
|
11 |
|
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 |
|
17 |
|
18 OS_LIBS += $(call EXPAND_LIBNAME,comctl32 ws2_32 shell32) |
|
19 |
|
20 ifndef MOZ_WINCONSOLE |
|
21 ifdef MOZ_DEBUG |
|
22 MOZ_WINCONSOLE = 1 |
|
23 else |
|
24 MOZ_WINCONSOLE = 0 |
|
25 endif |
|
26 endif |
|
27 |
|
28 include $(topsrcdir)/config/rules.mk |