1999-09-11 03:07:11 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# The contents of this file are subject to the Netscape Public
|
|
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.mozilla.org/NPL/
|
1999-05-31 16:28:21 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# Software distributed under the License is distributed on an "AS
|
|
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
# implied. See the License for the specific language governing
|
|
|
|
# rights and limitations under the License.
|
1999-05-31 16:28:21 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
1999-05-31 16:28:21 +00:00
|
|
|
# Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-09-11 03:07:11 +00:00
|
|
|
#
|
1999-05-31 16:28:21 +00:00
|
|
|
|
|
|
|
DEPTH = ../../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = ucvko
|
|
|
|
LIBRARY_NAME = ucvko
|
|
|
|
IS_COMPONENT = 1
|
2001-02-22 09:35:51 +00:00
|
|
|
REQUIRES = xpcom string uconv
|
1999-05-31 16:28:21 +00:00
|
|
|
|
|
|
|
CPPSRCS = \
|
1999-09-11 03:07:11 +00:00
|
|
|
nsEUCKRToUnicode.cpp \
|
|
|
|
nsUnicodeToEUCKR.cpp \
|
|
|
|
nsUnicodeToKSC5601.cpp \
|
|
|
|
nsISO2022KRToUnicode.cpp \
|
|
|
|
nsUnicodeToISO2022KR.cpp \
|
|
|
|
nsCP949ToUnicode.cpp \
|
|
|
|
nsUnicodeToCP949.cpp \
|
|
|
|
nsUnicodeToX11Johab.cpp \
|
2001-03-30 03:07:33 +00:00
|
|
|
nsUnicodeToJohab.cpp \
|
1999-09-11 03:07:11 +00:00
|
|
|
nsUCvKOSupport.cpp \
|
1999-10-05 23:54:18 +00:00
|
|
|
nsUCvKoModule.cpp \
|
1999-09-11 03:07:11 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
EXPORTS = nsUCvKOCID.h
|
1999-05-31 16:28:21 +00:00
|
|
|
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
|
|
|
|
|
1999-11-16 06:02:31 +00:00
|
|
|
EXTRA_DSO_LDOPTS += $(MOZ_COMPONENT_LIBS)
|
|
|
|
|
1999-05-31 16:28:21 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
1999-09-11 03:07:11 +00:00
|
|
|
|