2012-05-21 04:12:37 -07:00
|
|
|
# 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/.
|
2012-01-04 20:19:14 -08:00
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2012-01-04 20:19:14 -08:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = libupdatecommon
|
|
|
|
LIBRARY_NAME = updatecommon
|
|
|
|
FORCE_STATIC_LIB =1
|
|
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
USE_STATIC_LIBS = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
CPPSRCS = \
|
|
|
|
updatelogging.cpp \
|
2012-03-05 12:47:46 -08:00
|
|
|
readstrings.cpp \
|
2012-01-04 20:19:14 -08:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
EXPORTS = updatelogging.h \
|
|
|
|
updatedefines.h \
|
2012-03-05 12:47:46 -08:00
|
|
|
readstrings.h \
|
2012-01-04 20:19:14 -08:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
2012-01-04 20:19:15 -08:00
|
|
|
CPPSRCS += updatehelper.cpp \
|
2012-01-04 20:19:14 -08:00
|
|
|
uachelper.cpp \
|
2012-01-04 20:19:16 -08:00
|
|
|
pathhash.cpp \
|
2012-01-04 20:19:14 -08:00
|
|
|
$(NULL)
|
|
|
|
|
2012-01-04 20:19:15 -08:00
|
|
|
EXPORTS = updatehelper.h \
|
2012-05-27 19:40:48 -07:00
|
|
|
updatehelper.cpp \
|
2012-01-04 20:19:14 -08:00
|
|
|
uachelper.h \
|
2012-01-04 20:19:16 -08:00
|
|
|
pathhash.h \
|
2012-01-04 20:19:14 -08:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|