]> git.ipfire.org Git - thirdparty/glibc.git/blame - string/Makefile
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / string / Makefile
CommitLineData
bfff8b1b 1# Copyright (C) 1991-2017 Free Software Foundation, Inc.
28f540f4
RM
2# This file is part of the GNU C Library.
3
4# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
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.
28f540f4
RM
8
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
41bdb6e2 12# Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15# License along with the GNU C Library; if not, see
16# <http://www.gnu.org/licenses/>.
28f540f4
RM
17
18#
19# Sub-makefile for string portion of library.
20#
21subdir := string
22
a5f891ac
JM
23include ../Makeconfig
24
478b92f0 25headers := string.h strings.h memory.h endian.h bits/endian.h \
f8887d0a
L
26 argz.h envz.h byteswap.h bits/byteswap.h bits/byteswap-16.h \
27 bits/string.h bits/string2.h bits/string3.h
28f540f4 28
0501d603
UD
29routines := strcat strchr strcmp strcoll strcpy strcspn \
30 strverscmp strdup strndup \
310b3460 31 strerror _strerror strlen strnlen \
8d71c7b0 32 strncat strncmp strncpy \
28f540f4 33 strrchr strpbrk strsignal strspn strstr strtok \
59dd8641 34 strtok_r strxfrm memchr memcmp memmove memset \
bdd421cc 35 mempcpy bcopy bzero ffs ffsll stpcpy stpncpy \
0501d603 36 strcasecmp strncase strcasecmp_l strncase_l \
f4017d20 37 memccpy memcpy wordcopy strsep strcasestr \
c4563d2d 38 swab strfry memfrob memmem rawmemchr strchrnul \
7a12c6bb 39 $(addprefix argz-,append count create ctsep next \
dbc676d4 40 delete extract insert stringify \
d705269e 41 addsep replace) \
c84142e8 42 envz basename \
61645263 43 strcoll_l strxfrm_l string-inlines memrchr \
ea1bd74d 44 xpg-strerror strerror_l explicit_bzero
28f540f4 45
762011fe 46strop-tests := memchr memcmp memcpy memmove mempcpy memset memccpy \
cd94eda9 47 stpcpy stpncpy strcat strchr strcmp strcpy strcspn \
dbc676d4 48 strlen strncmp strncpy strpbrk strrchr strspn memmem \
6f0eec67 49 strstr strcasestr strnlen strcasecmp strncasecmp \
ea1bd74d
ZW
50 strncat rawmemchr strchrnul bcopy bzero memrchr \
51 explicit_bzero
61eb22d3 52tests := tester inl-tester noinl-tester testcopy test-ffs \
9c3b1ceb 53 tst-strlen stratcliff tst-svc tst-inlcall \
b716cb4e 54 bug-strncat1 bug-strspn1 bug-strpbrk1 tst-bswap \
806bc96a 55 tst-strtok tst-strxfrm bug-strcoll1 tst-strfry \
9009e8f8 56 bug-strtok1 $(addprefix test-,$(strop-tests)) \
67a67b95 57 bug-envz1 tst-strxfrm2 tst-endian tst-svc2 \
ea1bd74d 58 tst-strtok_r bug-strcoll2 tst-cmp tst-xbzero-opt
28f540f4 59
303e567a
SP
60xtests = tst-strcoll-overflow
61
f214606a
JM
62ifeq ($(run-built-tests),yes)
63tests-special += $(objpfx)tst-svc-cmp.out
64endif
65
28f540f4 66include ../Rules
59dd8641 67
359157a5 68CFLAGS-inl-tester.c = -fno-builtin
4547c1a4 69CFLAGS-noinl-tester.c = -fno-builtin
9a0a462c
UD
70CFLAGS-tst-strlen.c = -fno-builtin
71CFLAGS-stratcliff.c = -fno-builtin
b301e2eb 72CFLAGS-test-ffs.c = -fno-builtin
359157a5 73CFLAGS-tst-inlcall.c = -fno-builtin
8d71242e 74CFLAGS-tst-xbzero-opt.c = -O3
1f205a47 75
10c85e76
NA
76# Called during TLS initialization.
77CFLAGS-memcpy.c = $(no-stack-protector)
78CFLAGS-wordcopy.c = $(no-stack-protector)
79
03ac099f 80ifeq ($(run-built-tests),yes)
6e89caf1 81$(objpfx)tst-svc-cmp.out: tst-svc.expect $(objpfx)tst-svc.out
f0881698
JM
82 cmp $^ > $@; \
83 $(evaluate-test)
60cf80f0
MS
84
85LOCALES := de_DE.UTF-8 en_US.ISO-8859-1 en_US.UTF-8 \
02018629
CD
86 tr_TR.ISO-8859-9 tr_TR.UTF-8 cs_CZ.UTF-8 \
87 da_DK.ISO-8859-1
60cf80f0
MS
88include ../gen-locales.mk
89
90$(objpfx)test-strcasecmp.out: $(gen-locales)
91$(objpfx)test-strncasecmp.out: $(gen-locales)
92$(objpfx)tst-strxfrm.out: $(gen-locales)
93$(objpfx)tst-strxfrm2.out: $(gen-locales)
facdd9ea
CD
94# bug-strcoll2 needs cs_CZ.UTF-8 and da_DK.ISO-8859-1.
95$(objpfx)bug-strcoll2.out: $(gen-locales)
60cf80f0 96
e7a95dc6 97endif