1*4882a593Smuzhiyun# SPDX-License-Identifier: GPL-2.0 2*4882a593Smuzhiyun# 3*4882a593Smuzhiyun# Makefile for native language support 4*4882a593Smuzhiyun# 5*4882a593Smuzhiyun 6*4882a593Smuzhiyunobj-$(CONFIG_NLS) += nls_base.o 7*4882a593Smuzhiyun 8*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_437) += nls_cp437.o 9*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_737) += nls_cp737.o 10*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_775) += nls_cp775.o 11*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_850) += nls_cp850.o 12*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_852) += nls_cp852.o 13*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_855) += nls_cp855.o 14*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_857) += nls_cp857.o 15*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_860) += nls_cp860.o 16*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_861) += nls_cp861.o 17*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_862) += nls_cp862.o 18*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_863) += nls_cp863.o 19*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_864) += nls_cp864.o 20*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_865) += nls_cp865.o 21*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_866) += nls_cp866.o 22*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_869) += nls_cp869.o 23*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_874) += nls_cp874.o 24*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_932) += nls_cp932.o nls_euc-jp.o 25*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_936) += nls_cp936.o 26*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_949) += nls_cp949.o 27*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_950) += nls_cp950.o 28*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_1250) += nls_cp1250.o 29*4882a593Smuzhiyunobj-$(CONFIG_NLS_CODEPAGE_1251) += nls_cp1251.o 30*4882a593Smuzhiyunobj-$(CONFIG_NLS_ASCII) += nls_ascii.o 31*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_1) += nls_iso8859-1.o 32*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_2) += nls_iso8859-2.o 33*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_3) += nls_iso8859-3.o 34*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_4) += nls_iso8859-4.o 35*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_5) += nls_iso8859-5.o 36*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_6) += nls_iso8859-6.o 37*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_7) += nls_iso8859-7.o 38*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_8) += nls_cp1255.o 39*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_9) += nls_iso8859-9.o 40*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_13) += nls_iso8859-13.o 41*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_14) += nls_iso8859-14.o 42*4882a593Smuzhiyunobj-$(CONFIG_NLS_ISO8859_15) += nls_iso8859-15.o 43*4882a593Smuzhiyunobj-$(CONFIG_NLS_KOI8_R) += nls_koi8-r.o 44*4882a593Smuzhiyunobj-$(CONFIG_NLS_KOI8_U) += nls_koi8-u.o nls_koi8-ru.o 45*4882a593Smuzhiyunobj-$(CONFIG_NLS_UTF8) += nls_utf8.o 46*4882a593Smuzhiyunobj-$(CONFIG_NLS_MAC_CELTIC) += mac-celtic.o 47*4882a593Smuzhiyunobj-$(CONFIG_NLS_MAC_CENTEURO) += mac-centeuro.o 48*4882a593Smuzhiyunobj-$(CONFIG_NLS_MAC_CROATIAN) += mac-croatian.o 49*4882a593Smuzhiyunobj-$(CONFIG_NLS_MAC_CYRILLIC) += mac-cyrillic.o 50*4882a593Smuzhiyunobj-$(CONFIG_NLS_MAC_GAELIC) += mac-gaelic.o 51*4882a593Smuzhiyunobj-$(CONFIG_NLS_MAC_GREEK) += mac-greek.o 52*4882a593Smuzhiyunobj-$(CONFIG_NLS_MAC_ICELAND) += mac-iceland.o 53*4882a593Smuzhiyunobj-$(CONFIG_NLS_MAC_INUIT) += mac-inuit.o 54*4882a593Smuzhiyunobj-$(CONFIG_NLS_MAC_ROMANIAN) += mac-romanian.o 55*4882a593Smuzhiyunobj-$(CONFIG_NLS_MAC_ROMAN) += mac-roman.o 56*4882a593Smuzhiyunobj-$(CONFIG_NLS_MAC_TURKISH) += mac-turkish.o 57