mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
55 lines
1.4 KiB
Makefile
55 lines
1.4 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
|
|
|
|
MODULE = i18n
|
|
LIBRARY_NAME = i18n
|
|
EXPORT_LIBRARY = 1
|
|
IS_COMPONENT = 1
|
|
MODULE_NAME = nsI18nModule
|
|
GRE_MODULE = 1
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
|
|
CPPSRCS = \
|
|
nsI18nModule.cpp \
|
|
$(NULL)
|
|
|
|
# see also intl/locale/src/Makefile.in
|
|
ifneq (,$(filter os2 windows, $(MOZ_WIDGET_TOOLKIT)))
|
|
LOCALE_DIR = $(MOZ_WIDGET_TOOLKIT)
|
|
else
|
|
ifeq ($(OS_ARCH), Darwin)
|
|
LOCALE_DIR = mac
|
|
else
|
|
LOCALE_DIR = unix
|
|
endif
|
|
endif
|
|
|
|
LOCAL_INCLUDES = \
|
|
-I$(srcdir)/../lwbrk/src \
|
|
-I$(srcdir)/../unicharutil/src \
|
|
-I$(srcdir)/../strres/src \
|
|
-I$(srcdir)/../locale/src \
|
|
-I$(srcdir)/../locale/src/$(LOCALE_DIR) \
|
|
-I$(srcdir)/../uconv/src \
|
|
$(NULL)
|
|
|
|
SHARED_LIBRARY_LIBS = \
|
|
../lwbrk/src/$(LIB_PREFIX)lwbrk_s.$(LIB_SUFFIX) \
|
|
../unicharutil/src/$(LIB_PREFIX)ucharucomp_s.$(LIB_SUFFIX) \
|
|
../strres/src/$(LIB_PREFIX)strres_s.$(LIB_SUFFIX) \
|
|
../locale/src/$(LIB_PREFIX)nslocale_s.$(LIB_SUFFIX) \
|
|
../locale/src/$(LOCALE_DIR)/$(LIB_PREFIX)platlocale_s.$(LIB_SUFFIX) \
|
|
../hyphenation/src/$(HYPHENATION_DIR)/$(LIB_PREFIX)hyphenation_s.$(LIB_SUFFIX) \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|