summaryrefslogtreecommitdiff
path: root/libc/misc/wchar/Makefile.in
blob: db01f97ccef28fda9b137fa1acf02911a6c1c1d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 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
#

# multi source wchar.c
CSRC :=	btowc.c wctob.c mbsinit.c mbrlen.c mbrtowc.c wcrtomb.c mbsrtowcs.c \
	wcsrtombs.c _wchar_utf8sntowcs.c _wchar_wcsntoutf8s.c \
	mbsnrtowcs.c wcsnrtombs.c wcwidth.c wcswidth.c

ifeq ($(UCLIBC_HAS_LOCALE),y)
CSRC += iconv.c
endif

MISC_WCHAR_DIR := $(top_srcdir)libc/misc/wchar
MISC_WCHAR_OUT := $(top_builddir)libc/misc/wchar

MISC_WCHAR_SRC := $(patsubst %.c,$(MISC_WCHAR_DIR)/%.c,$(CSRC))
MISC_WCHAR_OBJ := $(patsubst %.c,$(MISC_WCHAR_OUT)/%.o,$(CSRC))

libc-$(UCLIBC_HAS_WCHAR) += $(MISC_WCHAR_OBJ)

objclean-y += misc_wchar_objclean

misc_wchar_objclean:
	$(RM) $(MISC_WCHAR_OUT)/*.{o,os}