Update copyright notices with scripts/update-copyrights
[glibc.git] / string / Makefile
blobffc02efa002e2468260d2672a26265565f34589e
1 # Copyright (C) 1991-2014 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
19 # Sub-makefile for string portion of library.
21 subdir := string
23 headers := string.h strings.h memory.h endian.h bits/endian.h \
24 argz.h envz.h byteswap.h bits/byteswap.h bits/byteswap-16.h \
25 bits/string.h bits/string2.h bits/string3.h
27 routines := strcat strchr strcmp strcoll strcpy strcspn \
28 strverscmp strdup strndup \
29 strerror _strerror strlen strnlen \
30 strncat strncmp strncpy \
31 strrchr strpbrk strsignal strspn strstr strtok \
32 strtok_r strxfrm memchr memcmp memmove memset \
33 mempcpy bcopy bzero ffs ffsll stpcpy stpncpy \
34 strcasecmp strncase strcasecmp_l strncase_l \
35 memccpy memcpy wordcopy strsep strcasestr \
36 swab strfry memfrob memmem rawmemchr strchrnul \
37 $(addprefix argz-,append count create ctsep next \
38 delete extract insert stringify \
39 addsep replace) \
40 envz basename \
41 strcoll_l strxfrm_l string-inlines memrchr \
42 xpg-strerror strerror_l
44 strop-tests := memchr memcmp memcpy memmove mempcpy memset memccpy \
45 stpcpy stpncpy strcat strchr strcmp strcpy strcspn \
46 strlen strncmp strncpy strpbrk strrchr strspn memmem \
47 strstr strcasestr strnlen strcasecmp strncasecmp \
48 strncat rawmemchr strchrnul bcopy bzero memrchr
49 tests := tester inl-tester noinl-tester testcopy test-ffs \
50 tst-strlen stratcliff tst-svc tst-inlcall \
51 bug-strncat1 bug-strspn1 bug-strpbrk1 tst-bswap \
52 tst-strtok tst-strxfrm bug-strcoll1 tst-strfry \
53 bug-strtok1 $(addprefix test-,$(strop-tests)) \
54 bug-envz1 tst-strxfrm2 tst-endian tst-svc2 \
55 tst-strtok_r
57 xtests = tst-strcoll-overflow
59 include ../Rules
61 tester-ENV = LANGUAGE=C
62 inl-tester-ENV = LANGUAGE=C
63 noinl-tester-ENV = LANGUAGE=C
64 tst-strxfrm-ENV = LOCPATH=$(common-objpfx)localedata
65 tst-strxfrm2-ENV = LOCPATH=$(common-objpfx)localedata
66 bug-strcoll1-ENV = LOCPATH=$(common-objpfx)localedata
67 test-strcasecmp-ENV = LOCPATH=$(common-objpfx)localedata
68 test-strncasecmp-ENV = LOCPATH=$(common-objpfx)localedata
69 CFLAGS-inl-tester.c = -fno-builtin
70 CFLAGS-noinl-tester.c = -fno-builtin
71 CFLAGS-tst-strlen.c = -fno-builtin
72 CFLAGS-stratcliff.c = -fno-builtin
73 CFLAGS-test-ffs.c = -fno-builtin
74 CFLAGS-tst-inlcall.c = -fno-builtin
76 ifeq ($(run-built-tests),yes)
77 tests: $(objpfx)tst-svc.out
78 $(objpfx)tst-svc.out: tst-svc.input $(objpfx)tst-svc
79 GCONV_PATH=$(common-objpfx)iconvdata LC_ALL=C \
80 $(test-program-cmd) < $(word 1,$^) > $@
81 @cmp tst-svc.expect $(objpfx)tst-svc.out
82 endif