summaryrefslogtreecommitdiff
path: root/libc/misc/ctype/Makefile.in
blob: f4705e1d5c427954696d76a605a646b978f90feb (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
40
41
42
# 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/ctype

# multi source ctype.c
COM_SRC := \
	isalnum.c isalpha.c iscntrl.c isdigit.c \
	isgraph.c islower.c isprint.c ispunct.c isspace.c \
	isupper.c isxdigit.c tolower.c toupper.c \
	isblank.c
ifeq ($(UCLIBC_SUSV4_LEGACY),y)
COM_SRC += isascii.c toascii.c
endif
CSRC := $(COM_SRC)

ifeq ($(UCLIBC_HAS_CTYPE_TABLES),y)
CSRC +=	__C_ctype_b.c __C_ctype_tolower.c __C_ctype_toupper.c \
	__ctype_b_loc.c __ctype_tolower_loc.c __ctype_toupper_loc.c \
	__ctype_assert.c isctype.c
endif

ifeq ($(UCLIBC_HAS_XLOCALE),y)
CSRC += $(patsubst %.c,%_l.c,$(COM_SRC))
endif

MISC_CTYPE_DIR := $(top_srcdir)libc/misc/ctype
MISC_CTYPE_OUT := $(top_builddir)libc/misc/ctype

MISC_CTYPE_SRC := $(patsubst %.c,$(MISC_CTYPE_DIR)/%.c,$(CSRC))
MISC_CTYPE_OBJ := $(patsubst %.c,$(MISC_CTYPE_OUT)/%.o,$(CSRC))

libc-y += $(MISC_CTYPE_OBJ)

objclean-y += misc_ctype_clean

misc_ctype_clean:
	$(do_rm) $(addprefix $(MISC_CTYPE_OUT)/*., o os)