1999-01-14 13:28:18 +03:00
|
|
|
#!gmake
|
|
|
|
# The contents of this file are subject to the Netscape Public License
|
|
|
|
# Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
# compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
# http://www.mozilla.org/NPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# NPL.
|
|
|
|
#
|
|
|
|
# The Initial Developer of this code under the NPL is Netscape
|
|
|
|
# Communications Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
# Reserved.
|
|
|
|
|
|
|
|
DEPTH = ../../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = ucvja
|
|
|
|
LIBRARY_NAME = ucvja
|
1999-03-03 04:25:21 +03:00
|
|
|
IS_COMPONENT = 1
|
1999-01-14 13:28:18 +03:00
|
|
|
|
|
|
|
CSRCS = \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
CPPSRCS = \
|
1999-08-09 19:00:22 +04:00
|
|
|
nsJapaneseToUnicode.cpp \
|
1999-01-14 13:28:18 +03:00
|
|
|
nsSJIS2Unicode.cpp \
|
1999-03-11 01:08:00 +03:00
|
|
|
nsUnicodeToSJIS.cpp \
|
1999-06-11 01:21:08 +04:00
|
|
|
nsCP932ToUnicode.cpp \
|
|
|
|
nsUnicodeToCP932.cpp \
|
1999-03-11 01:08:00 +03:00
|
|
|
nsUCvJaSupport.cpp \
|
1999-01-14 13:28:18 +03:00
|
|
|
nsUCVJADll.cpp \
|
1999-08-03 22:10:02 +04:00
|
|
|
nsEUCJPToUnicode.cpp \
|
|
|
|
nsISO2022JPToUnicode.cpp \
|
|
|
|
nsUnicodeToEUCJP.cpp \
|
|
|
|
nsUnicodeToISO2022JP.cpp \
|
|
|
|
nsUnicodeToJISx0201.cpp \
|
|
|
|
nsUnicodeToJISx0208.cpp \
|
|
|
|
nsUnicodeToJISx0212.cpp \
|
1999-01-14 13:28:18 +03:00
|
|
|
$(NULL)
|
|
|
|
|
1999-01-29 21:11:00 +03:00
|
|
|
EXPORTS = \
|
|
|
|
nsUCVJACID.h \
|
1999-08-03 22:10:02 +04:00
|
|
|
nsUCVJA2CID.h \
|
1999-01-29 21:11:00 +03:00
|
|
|
$(NULL)
|
1999-05-26 05:38:36 +04:00
|
|
|
|
1999-01-14 13:28:18 +03:00
|
|
|
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
|
|
|
|
|
|
|
|
CFLAGS += -DUSE_NSREG -D__STDC__
|
|
|
|
|
1999-05-26 05:38:36 +04:00
|
|
|
REQUIRES = $(MODULE) libxpcom
|
1999-01-14 13:28:18 +03:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|