OSDN Git Service

fixup my copyright notice, trim stale remnants of older notices which
[uclinux-h8/uclibc-ng.git] / libc / misc / locale / Makefile.in
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
4 #
5 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
6 #
7
8 # multi source locale.c
9 CSRC := setlocale.c localeconv.c _locale_init.c nl_langinfo.c
10 ifeq ($(UCLIBC_HAS_LOCALE),y)
11 CSRC += newlocale.c __locale_mbrtowc_l.c
12 endif
13 ifeq ($(UCLIBC_HAS_XLOCALE),y)
14 CSRC += nl_langinfo_l.c duplocale.c freelocale.c uselocale.c __curlocale.c
15 endif
16
17 MISC_LOCALE_DIR := $(top_srcdir)libc/misc/locale
18 MISC_LOCALE_OUT := $(top_builddir)libc/misc/locale
19
20 MISC_LOCALE_SRC := $(patsubst %.c,$(MISC_LOCALE_DIR)/%.c,$(CSRC))
21 MISC_LOCALE_OBJ := $(patsubst %.c,$(MISC_LOCALE_OUT)/%.o,$(CSRC))
22
23 libc-y += $(MISC_LOCALE_OBJ)
24
25 objclean-y += misc_locale_objclean
26
27 misc_locale_objclean:
28         $(RM) $(MISC_LOCALE_OUT)/{*.{o,os}}