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
|
2002-08-12 19:16:16 +00:00
|
|
|
LIBRARY_NAME = ucvko_s
|
|
|
|
FORCE_STATIC_LIB=1
|
2001-06-20 20:21:49 +00:00
|
|
|
MODULE_NAME = nsUCvKoModule
|
2001-09-18 13:41:47 +00:00
|
|
|
REQUIRES = xpcom \
|
|
|
|
string \
|
|
|
|
uconv \
|
|
|
|
$(NULL)
|
1999-05-31 16:28:21 +00:00
|
|
|
|
|
|
|
CPPSRCS = \
|
1999-09-11 03:07:11 +00:00
|
|
|
nsEUCKRToUnicode.cpp \
|
|
|
|
nsUnicodeToEUCKR.cpp \
|
|
|
|
nsISO2022KRToUnicode.cpp \
|
|
|
|
nsUnicodeToISO2022KR.cpp \
|
|
|
|
nsCP949ToUnicode.cpp \
|
|
|
|
nsUnicodeToCP949.cpp \
|
2001-03-30 03:07:33 +00:00
|
|
|
nsUnicodeToJohab.cpp \
|
2001-07-18 21:49:21 +00:00
|
|
|
nsJohabToUnicode.cpp \
|
2003-04-22 03:21:12 +00:00
|
|
|
nsUnicodeToJamoTTF.cpp \
|
2003-02-27 23:27:57 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifdef MOZ_EXTRA_X11CONVERTERS
|
|
|
|
CPPSRCS += \
|
|
|
|
nsUnicodeToKSC5601.cpp \
|
|
|
|
nsUnicodeToX11Johab.cpp \
|
2001-07-18 21:49:21 +00:00
|
|
|
nsUnicodeToJohabNoAscii.cpp \
|
1999-09-11 03:07:11 +00:00
|
|
|
$(NULL)
|
2003-02-27 23:27:57 +00:00
|
|
|
endif
|
1999-09-11 03:07:11 +00:00
|
|
|
|
|
|
|
EXPORTS = nsUCvKOCID.h
|
1999-05-31 16:28:21 +00:00
|
|
|
|
2002-08-12 19:16:16 +00:00
|
|
|
LOCAL_INCLUDES = -I$(srcdir)/../util
|
1999-11-16 06:02:31 +00:00
|
|
|
|
1999-05-31 16:28:21 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
1999-09-11 03:07:11 +00:00
|
|
|
|