# Makefile for uClibc
#
# Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
#
# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
#

# The stdio and time related wide functions are now built in the normal
# directories.
#
# stdio:
#	fwide fgetwc getwchar fgetws fputwc putwchar fputws ungetwc
#	getwc (fgetwc alias) getwc_unlocked (fgetwc_unlocked alias)
#	putwc (fputwc alias) putwc_unlocked (fputwc_unlocked alias)
# time:
# wcsftime
#

klib-y :=

ifeq ($(UCLIBC_HAS_WCHAR),y)

# multi source wchar.o
klib-y += \
	btowc.o wctob.o mbsinit.o mbrlen.o mbrtowc.o wcrtomb.o mbsrtowcs.o \
	wcsrtombs.o _wchar_utf8sntowcs.o _wchar_wcsntoutf8s.o \
	mbsnrtowcs.o wcsnrtombs.o wcwidth.o wcswidth.o

klib-$(UCLIBC_HAS_LOCALE) += iconv.o

endif
