summaryrefslogtreecommitdiff
path: root/libc/misc/locale/Makefile.in
blob: 56693980470b91d8da55db44555b6a085027a2d5 (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
# Makefile for uClibc
#
# Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
#
# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
#

subdirs += libc/misc/locale

# multi source locale.c
CSRC := setlocale.c localeconv.c _locale_init.c nl_langinfo.c
ifeq ($(UCLIBC_HAS_LOCALE),y)
CSRC += newlocale.c __locale_mbrtowc_l.c
endif
ifeq ($(UCLIBC_HAS_XLOCALE),y)
CSRC += nl_langinfo_l.c duplocale.c freelocale.c uselocale.c __curlocale.c
endif

MISC_LOCALE_DIR := $(top_srcdir)libc/misc/locale
MISC_LOCALE_OUT := $(top_builddir)libc/misc/locale

MISC_LOCALE_SRC := $(patsubst %.c,$(MISC_LOCALE_DIR)/%.c,$(CSRC))
MISC_LOCALE_OBJ := $(patsubst %.c,$(MISC_LOCALE_OUT)/%.o,$(CSRC))

libc-y += $(MISC_LOCALE_OBJ)

objclean-y += misc_locale_clean

misc_locale_clean:
	$(do_rm) $(addprefix $(MISC_LOCALE_OUT)/*., o os)